summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorLuis Lavena <luislavena@gmail.com>2011-12-05 14:55:05 (GMT)
committerLuis Lavena <luislavena@gmail.com>2011-12-05 14:55:05 (GMT)
commit7e3e51f60711d73731f50fc31808f90234613ad8 (patch)
tree3daa0fdd48c1814f3c71dcc57078ed426c5f51ac /configure.py
parent94b48447792a2908305c56db5e0f293df069e474 (diff)
downloadNinja-7e3e51f60711d73731f50fc31808f90234613ad8.zip
Ninja-7e3e51f60711d73731f50fc31808f90234613ad8.tar.gz
Ninja-7e3e51f60711d73731f50fc31808f90234613ad8.tar.bz2
Use g++'s -static option instead of specific libs
MinGW g++ recognizes -static as option to avoid the need to specify individual libraries to be statically linked into the executable. It also solves the warning of -static-libstdc++ not being recorgnized by GCC 4.5.2 (TDM build)
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 97caec0..f9c7077 100755
--- a/configure.py
+++ b/configure.py
@@ -84,7 +84,7 @@ libs = []
if platform == 'mingw':
cflags.append('-Igtest-1.6.0/include')
ldflags.append('-Lgtest-1.6.0/lib/.libs')
- ldflags.extend(['-static-libgcc', '-static-libstdc++'])
+ ldflags.extend(['-static'])
else:
if options.profile == 'gmon':
cflags.append('-pg')