remove -static-libstdc++ -static-libgcc from bootimage-generator-lflags

MinGW-w64's GCC doesn't understand those flags, and we shouldn't be
linking statically or dynamically with either of those libraries.
This commit is contained in:
Joel Dice 2013-03-15 13:57:44 -06:00
parent c80ffa041d
commit 651145bd61

View File

@ -656,7 +656,6 @@ ifeq ($(platform),windows)
rpath =
lflags = -L$(lib) $(common-lflags) -lws2_32 -liphlpapi -mconsole
bootimage-generator-lflags = -static-libstdc++ -static-libgcc
cflags = -I$(inc) $(common-cflags) -DWINVER=0x0500
ifeq (,$(filter mingw32 cygwin,$(build-platform)))