summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-12-02 20:38:31 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-12-02 20:38:31 +0000
commit639bb7dc5d61054615fee8e4da272ad5ce9140ee (patch)
tree1636527d2f0c2482e8f1c53d32cbddfda23294a8 /wscript
parent14d601a0ffe1ceb452aba103eb35ce03320acd21 (diff)
use compiler-generated _LP64 macro to detect x86_64 rather than USE_X86_64_ASM
git-svn-id: svn://localhost/ardour2/branches/3.0@10871 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 2 insertions, 4 deletions
diff --git a/wscript b/wscript
index 6ec0fd7258..f7fc6a882c 100644
--- a/wscript
+++ b/wscript
@@ -182,7 +182,8 @@ def set_compiler_flags (conf,opt):
#
# ARCH_X86 means anything in the x86 family from i386 to x86_64
- # USE_X86_64_ASM is used to distingush 32 and 64 bit assembler
+ # the compile-time presence of the macro _LP64 is used to
+ # distingush 32 and 64 bit assembler
#
if (re.search ("(i[0-9]86|x86_64)", config[config_cpu]) != None):
@@ -227,9 +228,6 @@ def set_compiler_flags (conf,opt):
elif conf.env['build_target'] == 'i686' or conf.env['build_target'] == 'x86_64':
optimization_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
debug_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
- elif conf.env['build_target'] == 'x86_64':
- optimization_flags.append ("-DUSE_X86_64_ASM")
- debug_flags.append ("-DUSE_X86_64_ASM")
if not build_host_supports_sse:
print("\nWarning: you are building Ardour with SSE support even though your system does not support these instructions. (This may not be an error, especially if you are a package maintainer)")