Hi Carl, Carl Banzhof wrote: > Hi > > I think I’ve built the tool chain successfully. However, when trying > to compile my project, it doesn’t seem know where to find the common > header files <stdlib.h> <stdio.h> etc. > > Is there a configuration change that needs to be made to my make file > or do the header files need to be moved to a specific directory? > > Sorry if this is an obvious newbie question but I work primarily with > windows dev tools and am new to gcc etc. > > See verbose output below. > > Thanks > > > Using built-in specs. > Target: arm-wince-cegcc > Configured with: /cegcc/cegcc/src/gcc/configure --prefix=/usr/ppc > --enable-languages=c --disable-interwork --disable-threads > --disable-nls --enable-checking --disable-multilib --without-headers > --target=arm-wince-cegcc i686-pc-cygwin > Thread model: single > gcc version 4.1.0 Looks like you only built the bootstrap compiler. (--disable-threads, and --enable-languages=c gives the hint.) This compiler is bare-bones, no libs or headers, used to be able to build the runtime (cegcc.dll). After the runtime is built, gcc is rebuilt with all the bells and whistles. The headers you are missing come from newlib, so you need to install it. The scripts should have taken care of it for you. Did you try using the build option 'all', or did you type the build steps manually? The 'all' option should take of making the exact steps for building the full cegcc toolchain.
Note that if you don't want the newlib dependency, you really want mingw32ce, not cegcc. Cheers, Pedro Alves ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Cegcc-devel mailing list Cegcc-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/cegcc-devel