From 21039ce16eb794bf250fcd5484c784b2f7c4f2b1 Mon Sep 17 00:00:00 2001 From: John Koleszar Date: Thu, 2 Sep 2010 11:17:05 -0400 Subject: [PATCH] Use -fno-common for mingw Fixes http://code.google.com/p/webm/issues/detail?id=112 Thanks to Ramiro Polla for the issue/fix. Change-Id: I7f7b547a4ea3270e183f59280510066cc29a619e --- build/make/configure.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/make/configure.sh b/build/make/configure.sh index cebdd57ba..4b732e63f 100755 --- a/build/make/configure.sh +++ b/build/make/configure.sh @@ -781,6 +781,9 @@ process_common_toolchain() { soft_enable ssse3 case ${tgt_os} in + win*) + enabled gcc && add_cflags -fno-common + ;; solaris*) CC=${CC:-${CROSS}gcc} LD=${LD:-${CROSS}gcc} -- 2.40.0