From 68045e8845d3ace06b80c12bf85c18beac711b4a Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Mon, 15 Feb 2016 18:29:33 +0100 Subject: [PATCH] add option --with-tune=generic for the gcc configuration --- hermit/usr/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hermit/usr/Makefile b/hermit/usr/Makefile index 66dddbb42..7d0346c0c 100644 --- a/hermit/usr/Makefile +++ b/hermit/usr/Makefile @@ -75,7 +75,7 @@ $(TMP)/gcc: $Q$(CD) $(TMP)/gcc; $(TOPDIR)/gcc/configure --target=$(TARGET) --prefix=$(TOPDIR)/$(ARCH) --without-headers --with-newlib --enable-languages=c --disable-nls --disable-shared --disable-libssp --enable-threads=posix --disable-libgomp --enable-tls --enable-lto --disable-symvers && $(MAKE) $(NJOBS) && $(MAKE) install $Q$(RM) $(TMP)/gcc $Q$(MKDIR) $(TMP)/gcc - $Q$(CD) $(TMP)/gcc; $(TOPDIR)/gcc/configure --target=$(TARGET) --prefix=$(TOPDIR)/$(ARCH) --without-headers --with-newlib --enable-languages=c,c++,fortran,lto --disable-nls --disable-shared --disable-libssp --enable-threads=posix --disable-libgomp --enable-tls --enable-lto --disable-symvers && $(MAKE) $(NJOBS) && $(MAKE) install + $Q$(CD) $(TMP)/gcc; $(TOPDIR)/gcc/configure --target=$(TARGET) --prefix=$(TOPDIR)/$(ARCH) --without-headers --with-newlib --with-tune=generic --enable-languages=c,c++,fortran,lto --disable-nls --disable-shared --disable-libssp --enable-threads=posix --disable-libgomp --enable-tls --enable-lto --disable-symvers && $(MAKE) $(NJOBS) && $(MAKE) install clean: @echo Cleaning toolchain