From f29bdc7fdf5e131ec66f329fcaf126354b73984d Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Wed, 30 Dec 2015 10:48:58 +0100 Subject: [PATCH] add Fortran support --- hermit/usr/Makefile | 2 +- hermit/usr/tests/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hermit/usr/Makefile b/hermit/usr/Makefile index f2a4579e4..c76804f17 100644 --- a/hermit/usr/Makefile +++ b/hermit/usr/Makefile @@ -65,7 +65,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++,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 --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 diff --git a/hermit/usr/tests/Makefile b/hermit/usr/tests/Makefile index 2317a527c..5dc839095 100644 --- a/hermit/usr/tests/Makefile +++ b/hermit/usr/tests/Makefile @@ -48,7 +48,7 @@ endif default: all -all: hello.bin hello++.bin thr_hello.bin jacobi.bin #hellof.bin RCCE_minimum +all: hello.bin hello++.bin thr_hello.bin jacobi.bin hellof.bin #RCCE_minimum hello++: hello++.o @echo [LD] $@