# HG changeset patch # User John W. Eaton # Date 1375752257 14400 # Node ID e028df4c0e316eafd124dca170f00aad7587127b # Parent 15520bf542ffbbf461ccdb80a87d4e33945dfe7b omit some configure args for native build-gcc builds diff -r 15520bf542ff -r e028df4c0e31 src/build-gcc.mk --- a/src/build-gcc.mk Mon Aug 05 15:14:40 2013 -0400 +++ b/src/build-gcc.mk Mon Aug 05 21:24:17 2013 -0400 @@ -20,6 +20,13 @@ ifeq ($(MXE_SYSTEM),mingw) $(PKG)_SYSDEP_CONFIGURE_OPTIONS := \ + --libdir='$(BUILD_TOOLS_PREFIX)/lib' \ + --enable-version-specific-runtime-libs \ + --with-gcc \ + --with-gnu-ld \ + --with-gnu-as \ + --disable-nls \ + --without-x \ --disable-sjlj-exceptions \ --disable-win32-registry \ --enable-threads=win32 @@ -40,15 +47,8 @@ --target='$(TARGET)' \ --build='$(BUILD_SYSTEM)' \ --prefix='$(BUILD_TOOLS_PREFIX)' \ - --libdir='$(BUILD_TOOLS_PREFIX)/lib' \ --enable-languages='c,c++,fortran' \ - --enable-version-specific-runtime-libs \ - --with-gcc \ - --with-gnu-ld \ - --with-gnu-as \ - --disable-nls \ $(ENABLE_SHARED_OR_STATIC) \ - --without-x \ $($(PKG)_SYSDEP_CONFIGURE_OPTIONS) \ --disable-libgomp \ --disable-libmudflap \