Re: [arm-gnu] compiler not finding header files during build
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [arm-gnu] compiler not finding header files during build
- To: arm-gnu@xxxxxxxxxxxxxxxx
- Subject: Re: [arm-gnu] compiler not finding header files during build
- From: Paul Brook <paul@xxxxxxxxxxxxxxxx>
- Date: Tue, 20 Sep 2005 16:53:49 +0100
On Tuesday 20 September 2005 16:33, Wood, Bryan wrote:
> 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/..
The CodeSourcey compilers are native windows executables, not cygwin binaries.
This means they don't understand cygwin paths/pseudo-mounts. You need to use
proper windows path names. You can use `cygpath -w` to convert from cygwin to
windows paths.
Paul