mardy wrote:Since you are building from source, which I am attempting to do also, could you share how you are configuring the various components?
-Mardy
Some advises on how to get the "toolchain" properly compiled would also be very helpful for me too
for example: how has to folderstructure to be?
What parameters are necessary for ./configure?
http://sourceware.org/newlib/faq.html#q1
here I found a word on compiling newlib, what causes the most trouble to me at the moment.
my current folderstructure looks like this:
- Code: Select all
/usr/local/build/binutils-2.18
/usr/local/build/newlib-1.16.0
/usr/local/build/gcc-4.3.2
I did ./configure --with-float=soft in binutils, make, and sudo make install. That went fine.
The same in newlib: ./configure --with-float=soft, but make gives me the following error:
- Code: Select all
WARNING: `makeinfo' is missing on your system. You should only need it if
you modified a `.texi' or `.texinfo' file, or any other file
indirectly affecting the aspect of the manual. The spurious
call might also be the consequence of using a buggy `make' (AIX,
DU, IRIX). You might want to install the `Texinfo' package or
the `GNU make' package. Grab either from any GNU archive site.
make[3]: *** [standards.info] Error 1
make[3]: Leaving directory `/usr/local/build/newlib-1.16.0/etc'
make[2]: *** [info] Error 1
make[2]: Leaving directory `/usr/local/build/newlib-1.16.0/etc'
make[1]: *** [all-etc] Error 2
make[1]: Leaving directory `/usr/local/build/newlib-1.16.0'
make: *** [all] Error 2
Has newlib to be a subfolder of gcc, so that configure of gcc also configures newlib.
I hope I do get this compiling stuff work properly soon, because my time is running out with this project.
