Update on previous thread: LD_LIBRARY_PATH isn't needed at all. I was compiling GPM\MPFR as shared libraries, whereas the method Greg proposed of embedding in the GCC framework does a static compile only. Either the embedding or the following work fine (although if used, embedding is required for both GCC pass 1 and 2)
1. Move GMP to after binutils 2. configure GMP with normal + --disable-shared 3. Move MPFR to after GMP 4. configure MPFR with normal + --disable-shared --with-gmp=/tools 5. configure gcc pass 1 with normal + --with-gmp=/tools (gcc pass 2 needs no changes, the ld LIB_PATH takes care of the location of gmp\mpfr) whether or not this is "better" is up to the editors, although it might simplify jhalfs building to have the libraries as seperate apps currently up to gawk install in Chapter 5, no new issues to report that are not already noted. -- -- - Steve Crosby -- http://linuxfromscratch.org/mailman/listinfo/lfs-dev FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page
