Remove duplicated configure options from Makefile

This removes "--disable-libquadmath --disable-decimal-float" from GCC0_CONFIG since it is already specified in GCC_CONFIG.
This commit is contained in:
Andrew Wilcox 2015-11-07 00:23:36 -06:00
parent 3fb6709806
commit 2504347b66

View File

@ -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)