summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-02-23 16:44:57 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-02-23 16:44:57 +0000
commitc8dce93a7bcd9f05cbf6939eacaf95675bd83ee7 (patch)
tree8ac5691a491f13631a048f9bc91cac2f038f179b /SConstruct
parent2fdfe62deee93d005f707576e5539ef9132e392d (diff)
add x86_64/32bit VST build fix from torben
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4650 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 4c0fc753bd..6be0fdc3c3 100644
--- a/SConstruct
+++ b/SConstruct
@@ -734,7 +734,7 @@ if env['FPU_OPTIMIZATION']:
elif env['DIST_TARGET'] == 'i686' or env['DIST_TARGET'] == 'x86_64':
opt_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
debug_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
- if env['DIST_TARGET'] == 'x86_64':
+ if env['DIST_TARGET'] == 'x86_64' and not env['VST']:
opt_flags.append ("-DUSE_X86_64_ASM")
debug_flags.append ("-DUSE_X86_64_ASM")
if build_host_supports_sse != 1: