Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

‘strcmp’ was not declared in this scope

I'm working on building the ios toolchain with this tutorial. When I run the command make ENABLE_OPTIMIZED=1 I get this output.

llvm[0]: Reconfiguring with /home/connor/llvm-svn/configure
config.status: creating Makefile.config
config.status: creating llvm.spec
config.status: creating docs/doxygen.cfg
config.status: creating tools/llvm-config/llvm-config.in
config.status: creating include/llvm/Config/config.h
config.status: creating include/llvm/Support/DataTypes.h
config.status: include/llvm/Support/DataTypes.h is unchanged
config.status: creating include/llvm/ADT/hash_map
config.status: include/llvm/ADT/hash_map is unchanged
config.status: creating include/llvm/ADT/hash_set
config.status: include/llvm/ADT/hash_set is unchanged
config.status: creating include/llvm/ADT/iterator
config.status: include/llvm/ADT/iterator is unchanged
config.status: executing setup commands
config.status: executing Makefile commands
config.status: executing Makefile.common commands
config.status: executing examples/Makefile commands
config.status: executing lib/Makefile commands
config.status: executing runtime/Makefile commands
config.status: executing test/Makefile commands
config.status: executing test/Makefile.tests commands
config.status: executing tools/Makefile commands
config.status: executing utils/Makefile commands
config.status: executing projects/Makefile commands
config.status: executing bindings/Makefile commands
config.status: executing bindings/ocaml/Makefile.ocaml commands
make[1]: Entering directory `/home/connor/llvm-svn/lib/System'
llvm[1]: Compiling Alarm.cpp for Release build 
llvm[1]: Compiling Disassembler.cpp for Release build 
Disassembler.cpp: In function ‘std::string llvm::sys::disassembleBuffer(uint8_t*, size_t, uint64_t)’:
Disassembler.cpp:44:12: warning: variable ‘bits’ set but not used [-Wunused-but-set-variable]
llvm[1]: Compiling DynamicLibrary.cpp for Release build 
DynamicLibrary.cpp: In static member function ‘static void* llvm::sys::DynamicLibrary::SearchForAddressOfSymbol(const char*)’:
DynamicLibrary.cpp:178:5: error: ‘strcmp’ was not declared in this scope
DynamicLibrary.cpp:178:5: error: ‘stderr’ was not declared in this scope
DynamicLibrary.cpp:179:5: error: ‘strcmp’ was not declared in this scope
DynamicLibrary.cpp:179:5: error: ‘stdout’ was not declared in this scope
DynamicLibrary.cpp:180:5: error: ‘strcmp’ was not declared in this scope
DynamicLibrary.cpp:180:5: error: ‘stdin’ was not declared in this scope
make[1]: *** [/home/connor/llvm-svn/lib/System/Release/DynamicLibrary.o] Error 1
make[1]: Leaving directory `/home/connor/llvm-svn/lib/System'
make: *** [all] Error 1

I'm not sure what to make of this and my googling hasn't helped very much.

like image 397
Connor Avatar asked Feb 22 '12 22:02

Connor


2 Answers

strcmp function is declared in string.h try to put

#include <string.h> 

in DynamicLibrary.cpp and stderr is defained in stdio.h so put that too

#include <stdio.h>

From time to time I found open source code with missing header files as well.

UPDATE:

If you have different name, you can search include directory,

in real GNU/Linux bash (should work with Windows 10 WSL as well) you can use this to search for function:

find /usr/include -type f | xargs grep ' strcmp\s*\('

and this for variable:

find /usr/include -type f | xargs grep '[\s*]stdin\s*;'

on Git Bash on Windows there is /include and /mingw64/include directories but on my installation there were only ImageMagick header files and /mingw64/include/gnumake.h

like image 52
jcubic Avatar answered Sep 22 '22 09:09

jcubic


The same error can happen when coding in C++ . In that case include the cstring library to resolve the error.

#include<cstring>
like image 41
Vyshak Puthusseri Avatar answered Sep 21 '22 09:09

Vyshak Puthusseri