summaryrefslogtreecommitdiff
path: root/scons
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2011-09-12 17:23:47 +0100
committerJosé Fonseca <jfonseca@vmware.com>2011-09-12 17:23:47 +0100
commitfb5995cf53000af3bd32ca6effb4b08c4aaffe17 (patch)
tree4d2403d085f6e61a1d792f5618040c3a12124e20 /scons
parentf37a5081b229b020553c45e32e9888af77cfd3d6 (diff)
scons: Don't use gstabs on mingw-64.
Diffstat (limited to 'scons')
-rw-r--r--scons/crossmingw.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/scons/crossmingw.py b/scons/crossmingw.py
index 893002f64a9..23c56c0a2da 100644
--- a/scons/crossmingw.py
+++ b/scons/crossmingw.py
@@ -221,9 +221,11 @@ def generate(env):
env['LIBPREFIXES'] = [ 'lib', '' ]
env['LIBSUFFIXES'] = [ '.a', '.lib' ]
- # MinGW port of gdb does not handle well dwarf debug info which is the
- # default in recent gcc versions
- env.AppendUnique(CCFLAGS = ['-gstabs'])
+ # MinGW x86 port of gdb does not handle well dwarf debug info which is the
+ # default in recent gcc versions. The x64 port gdb from mingw-w64 seems to
+ # handle it fine though, so stick with the default there.
+ if env['machine'] != 'x86_64':
+ env.AppendUnique(CCFLAGS = ['-gstabs'])
env.AddMethod(compile_without_gstabs, 'compile_without_gstabs')