summaryrefslogtreecommitdiff
path: root/libs/ardour/wscript
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-08-12 07:39:12 +0200
committerRobin Gareus <robin@gareus.org>2015-08-12 07:39:12 +0200
commit864b557a3dc45165d24e913615943b1e86ba46ff (patch)
tree4a07b6f8a13122555650ac74d297721005ed0307 /libs/ardour/wscript
parent46667116397121a35598e3a62c683ebffa78046f (diff)
another waf/regexp issue (amend 4666711)
Diffstat (limited to 'libs/ardour/wscript')
-rw-r--r--libs/ardour/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index e5082bf5a9..c732161ec8 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -420,7 +420,7 @@ def build(bld):
# usability of the 64 bit windows assembler depends on the compiler target,
# not the build host, which in turn can only be inferred from the name
# of the compiler.
- if re.search ('/^x86_64/', str(bld.env['CC'])):
+ if re.search ('x86_64-w64', str(bld.env['CC'])):
obj.source += [ 'sse_functions_xmm.cc' ]
obj.source += [ 'sse_functions_64bit_win.s', 'sse_avx_functions_64bit_win.s' ]
avx_sources = [ 'sse_functions_avx.cc' ]