summarylogtreecommitdiffstats
path: root/mingw-configure.sh
diff options
context:
space:
mode:
Diffstat (limited to 'mingw-configure.sh')
-rw-r--r--mingw-configure.sh20
1 files changed, 12 insertions, 8 deletions
diff --git a/mingw-configure.sh b/mingw-configure.sh
index e3b6e6b9dff9..dbfee4ba652d 100644
--- a/mingw-configure.sh
+++ b/mingw-configure.sh
@@ -2,18 +2,22 @@
# check if last arg is a path to configure, else use parent
for last; do true; done
-if test -x "${last}/configure"
-then
+if test -x "${last}/configure"; then
config_path="$last"
else
config_path=".."
fi
-mingw_c_flags="-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4"
-LDFLAGS=""
-export CFLAGS="$mingw_c_flags $CFLAGS"
-export CXXFLAGS="$mingw_c_flags $CXXFLAGS"
-${config_path}/configure --host=@TRIPLE@ --target=@TRIPLE@ --build="$CHOST" \
+default_mingw_pp_flags="-D_FORTIFY_SOURCE=2"
+default_mingw_compiler_flags="-O2 -pipe -fno-plt -fexceptions --param=ssp-buffer-size=4"
+default_mingw_linker_flags="-Wl,-O1,--sort-common,--as-needed"
+
+export CPPFLAGS="${MINGW_CPPFLAGS:-$default_mingw_pp_flags $CPPFLAGS}"
+export CFLAGS="${MINGW_CFLAGS:-$default_mingw_compiler_flags $CFLAGS}"
+export CXXFLAGS="${MINGW_CXXFLAGS:-$default_mingw_compiler_flags $CXXFLAGS}"
+export LDFLAGS="${MINGW_LDFLAGS:-$default_mingw_linker_flags $LDFLAGS}"
+
+${config_path}/configure \
+ --host=@TRIPLE@ --target=@TRIPLE@ --build="$CHOST" \
--prefix=/usr/@TRIPLE@ --libdir=/usr/@TRIPLE@/lib --includedir=/usr/@TRIPLE@/include \
--enable-shared --enable-static "$@"
-