mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-16 02:16:09 +01:00
force 32-bit comilation if VST=1
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4638 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
7885988df9
commit
a42e9393a1
1 changed files with 8 additions and 0 deletions
|
|
@ -715,6 +715,14 @@ elif ((re.search ("i[0-9]86", config[config_cpu]) != None) or (re.search ("x86_6
|
|||
if ((env['DIST_TARGET'] == 'i686') or (env['DIST_TARGET'] == 'x86_64')) and build_host_supports_sse:
|
||||
opt_flags.extend (["-msse", "-mfpmath=sse", "-DUSE_XMMINTRIN"])
|
||||
debug_flags.extend (["-msse", "-mfpmath=sse", "-DUSE_XMMINTRIN"])
|
||||
|
||||
if (env['VST']):
|
||||
#
|
||||
# everything must be 32 bit for VST (we're not replicating Cakewalk's hack, yet ...)
|
||||
#
|
||||
opt_flags.extend(["-m32"])
|
||||
debug_flags.extend(["-m32"])
|
||||
|
||||
# end of processor-specific section
|
||||
|
||||
# optimization section
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue