compiler not finding header files during build
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
compiler not finding header files during build
- To: <arm-gnu@xxxxxxxxxxxxxxxx>
- Subject: compiler not finding header files during build
- From: "Wood, Bryan" <bryanw@xxxxxx>
- Date: Tue, 20 Sep 2005 10:33:06 -0500
I'm trying to build the open source library xmlrpc-c version 1.03 using
your arm toolchain. I'm build in windows xp pro sp2. I'm using the
cygwin environment for the gnu make utility. The problem is that
whenever I try to build this library using your compiler header files
that are definitely there aren't being found.
Here is the command that's being run
arm-none-eabi-gcc -c -I/cygdrive/c/code/nucleus/xmlrpc-c-1.03/src/..
-I/cygdrive/c/code/nucleus/xmlrpc-c-1.03/src/..
-I/cygdrive/c/code/nucleus/xmlrpc-c-1.03/src/../include
-I/cygdrive/c/code/nucleus/xmlrpc-c-1.03/src/../lib/util/include
-I/cygdrive/c/code/nucleus/xmlrpc-c-1.03/src/../lib/abyss/src
-I/cygdrive/c/code/nucleus/xmlrpc-c-1.03/src/../lib/wininet_transport
-I/cygdrive/c/code/nucleus/xmlrpc-c-1.03/src/../lib/curl_transport
-I/cygdrive/c/code/nucleus/xmlrpc-c-1.03/src/../lib/libwww_transport
-I/cygdrive/c/code/nucleus/xmlrpc-c-1.03/src/../lib/expat/xmlparse
-I/cygdrive/c/code/nucleus/xmlrpc-c-1.03/src/../lib/abyss/src -Wall
-Wundef -Wimplicit -W -Winline -Wmissing-declarations
-Wstrict-prototypes -Wmissing-prototypes -fno-common -g
xmlrpc_server_abyss.c -o xmlrpc_server_abyss.o
xmlrpc_server_abyss.c:3:27: xmlrpc_config.h: No such file or directory
xmlrpc_server_abyss.c:9:23: mallocvar.h: No such file or directory
xmlrpc_server_abyss.c:10:28: xmlrpc-c/abyss.h: No such file or directory
xmlrpc_server_abyss.c:12:27: xmlrpc-c/base.h: No such file or directory
xmlrpc_server_abyss.c:13:29: xmlrpc-c/server.h: No such file or
directory
xmlrpc_server_abyss.c:14:31: xmlrpc-c/base_int.h: No such file or
directory
xmlrpc_server_abyss.c:15:35: xmlrpc-c/server_abyss.h: No such file or
directory
xmlrpc_config.h is in /cygdrive/c/code/nucleus/xmlrpc-c-1.03
xmlrpc-c/* are in /cygdrive/c/code/nucleus/xmlrpc-c-1.03/include
The compile works fine using the cygwin or mingw gcc. The problem is
only happening when I attempt to use the arm cross compiler. I've tried
using the include pathnames for the cygwin environment as shown above as
well as normal -IC:\code\nuc... with the same results.
Any suggestions?