From: Jose V Beneyto Date: Tue, 30 Mar 2010 10:51:58 +0000 (+0200) Subject: Fixed toolchain-noeabi issues (we need --with-sysroot at gcc-static's stage) X-Git-Url: http://gitweb/?a=commitdiff_plain;h=d153f31415e0c22a57b2e8f112a748cef618c4da;p=attic%2Ftoolchain-noeabi.git Fixed toolchain-noeabi issues (we need --with-sysroot at gcc-static's stage) This option was removed with the first changeset for the eabi stuff, just see: http://crux-arm.nu/gitweb/?p=toolchain.git;a=commitdiff;h=904576609f86da57ecc4ef20718728ed031bc5ff I'm not sure about the eabi version, but the toolchain-noeabi requires this option to work. --- diff --git a/Makefile b/Makefile index 88d423f..6338a8a 100644 --- a/Makefile +++ b/Makefile @@ -148,8 +148,9 @@ $(CROSSTOOLS)/lib/gcc: $(WORK)/build-gcc-static $(WORK)/gcc-$(GCC_VERSION) AR=ar LDFLAGS="-Wl,-rpath,$(CROSSTOOLS)/lib" \ $(WORK)/gcc-$(GCC_VERSION)/configure --prefix=$(CROSSTOOLS) \ --build=$(HOST) --host=$(HOST) --target=$(TARGET) \ - --disable-multilib --disable-nls \ - --without-headers --enable-__cxa_atexit --enable-symvers=gnu --disable-decimal-float \ + --disable-multilib --with-sysroot=$(CLFS) --disable-nls \ + --without-headers --with-newlib --disable-decimal-float \ + --enable-__cxa_atexit --enable-symvers=gnu \ --disable-libgomp --disable-libmudflap --disable-libssp \ --with-mpfr=$(CROSSTOOLS) --with-gmp=$(CROSSTOOLS) \ --disable-shared --disable-threads --enable-languages=c && \