I am cross compiling openssl for arm but having the following error :
making all in crypto...
make[1]: Entering directory `/home/quipment/Documents/openssl-1.0.0e/crypto'
( echo "#ifndef MK1MF_BUILD"; \
echo ' /* auto-generated by crypto/Makefile for crypto/cversion.c */'; \
echo ' #define CFLAGS "arm-linux-gcc -fPIC -Wa,--noexecstack "'; \
echo ' #define PLATFORM "os/compiler"'; \
echo " #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \
echo '#endif' ) >buildinf.h
arm-linux-gcc -I. -I.. -I../include -fPIC -Wa,--noexecstack -c -o cryptlib.o cryptlib.c
In file included from cryptlib.c:117:
cryptlib.h:62:20: error: stdlib.h: No such file or directory
cryptlib.h:63:20: error: string.h: No such file or directory
In file included from cryptlib.h:65,
from cryptlib.c:117:
../e_os.h:447:30: error: unistd.h: No such file or directory
../e_os.h:452:29: error: sys/types.h: No such file or directory
In file included from cryptlib.h:72,
from cryptlib.c:117:
../include/openssl/crypto.h:125:19: error: stdio.h: No such file or directory
In file included from cryptlib.h:72,
from cryptlib.c:117:
../include/openssl/crypto.h:175: error: expected specifier-qualifier-list before 'size_t'
../include/openssl/crypto.h:465: warning: parameter names (without types) in function declaration
../include/openssl/crypto.h:465: error: expected declaration specifiers or '...' before 'size_t'
../include/openssl/crypto.h:466: warning: parameter names (without types) in function declaration
../include/openssl/crypto.h:467: error: expected ')' before 'const'
../include/openssl/crypto.h:468: error: expected ';', ',' or ')' before 'void'
../include/openssl/crypto.h:470: error: expected ')' before 'const'
../include/openssl/crypto.h:471: error: expected ';', ',' or ')' before 'void'
../include/openssl/crypto.h:477: warning: parameter names (without types) in function declaration
../include/openssl/crypto.h:477: error: expected declaration specifiers or '...' before 'size_t'
../include/openssl/crypto.h:478: warning: parameter names (without types) in function declaration
../include/openssl/crypto.h:479: error: expected ')' before 'const'
../include/openssl/crypto.h:480: error: expected ';', ',' or ')' before 'void'
../include/openssl/crypto.h:482: error: expected ')' before 'const'
../include/openssl/crypto.h:483: error: expected ';', ',' or ')' before 'void'
../include/openssl/crypto.h:500: error: expected declaration specifiers or '...' before 'size_t'
../include/openssl/crypto.h:535: error: expected ')' before '*' token
In file included from cryptlib.h:74,
from cryptlib.c:117:
../include/openssl/bio.h:570: error: expected ')' before '*' token
../include/openssl/bio.h:639: error: expected ')' before '*' token
../include/openssl/bio.h:640: error: expected ')' before '*' token
In file included from ../include/openssl/err.h:127,
from cryptlib.h:75,
from cryptlib.c:117:
../include/openssl/lhash.h:186: error: expected declaration specifiers or '...' before 'FILE'
../include/openssl/lhash.h:187: error: expected declaration specifiers or '...' before 'FILE'
../include/openssl/lhash.h:188: error: expected declaration specifiers or '...' before 'FILE'
In file included from cryptlib.h:75,
from cryptlib.c:117:
../include/openssl/err.h:140:19: error: errno.h: No such file or directory
In file included from cryptlib.h:75,
from cryptlib.c:117:
../include/openssl/err.h:343: error: expected ')' before '*' token
cryptlib.c: In function 'CRYPTO_THREADID_set_numeric':
cryptlib.c:426: warning: incompatible implicit declaration of built-in function 'memset'
cryptlib.c: In function 'CRYPTO_THREADID_set_pointer':
cryptlib.c:437: warning: incompatible implicit declaration of built-in function 'memset'
cryptlib.c: In function 'CRYPTO_THREADID_current':
cryptlib.c:503: error: 'errno' undeclared (first use in this function)
cryptlib.c:503: error: (Each undeclared identifier is reported only once
cryptlib.c:503: error: for each function it appears in.)
cryptlib.c: In function 'CRYPTO_THREADID_cpy':
cryptlib.c:514: warning: incompatible implicit declaration of built-in function 'memcpy'
cryptlib.c: In function 'OPENSSL_showfatal':
cryptlib.c:878: error: 'stderr' undeclared (first use in this function)
cryptlib.c: In function 'OpenSSLDie':
cryptlib.c:890: warning: incompatible implicit declaration of built-in function 'abort'
cryptlib.c: In function 'OPENSSL_stderr':
cryptlib.c:898: error: 'stderr' undeclared (first use in this function)
make[1]: *** [cryptlib.o] Error 1
make[1]: Leaving directory `/home/quipment/Documents/openssl-1.0.0e/crypto'
make: *** [build_crypto] Error 1
my config parameters are :
./config no-threads -fPIC os/compiler:arm-linux-gcc
but when I config for native machine, everything works fine. Am I missing something, Please help..
-isystemwith the path to the system headers inCFLAGS. – Matthew Iselin Nov 22 '11 at 7:02CFLAGS = -isystem /home/pawan/toolchain/usr/libbut no luck. – Pawan Nov 22 '11 at 7:18-isystem /home/pawan/toolchain/usr/include- looking for header files, not libraries. – Matthew Iselin Nov 22 '11 at 7:22