From 2504347b660f197e10bdd564efb9c85515ba59d9 Mon Sep 17 00:00:00 2001 From: Andrew Wilcox Date: Sat, 7 Nov 2015 00:23:36 -0600 Subject: [PATCH] Remove duplicated configure options from Makefile This removes "--disable-libquadmath --disable-decimal-float" from GCC0_CONFIG since it is already specified in GCC_CONFIG. --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 00a6bc3..c750ac9 100644 --- a/Makefile +++ b/Makefile @@ -23,8 +23,7 @@ GCC0_VARS = CFLAGS="-O0 -g0" CXXFLAGS="-O0 -g0" GCC0_CONFIG = $(GCC_CONFIG) \ --with-newlib --disable-libssp --disable-threads \ --disable-shared --disable-libgomp --disable-libatomic \ - --disable-libquadmath --disable-decimal-float --disable-nls \ - --enable-languages=c + --disable-nls --enable-languages=c GCC0_BDIR = $(PWD)/gcc-$(GCC_VER)/build0/gcc GCC0_CC = $(GCC0_BDIR)/xgcc -B $(GCC0_BDIR)