13
0

more hot wine.

This commit is contained in:
Robin Gareus 2015-12-17 20:22:02 +01:00
parent fa9c410b5c
commit bdfddec6fc
3 changed files with 5 additions and 4 deletions

View File

@ -436,6 +436,7 @@ def build(bld):
obj.includes = [ '../libs/fst', '.' ] obj.includes = [ '../libs/fst', '.' ]
obj.name = 'libgtk2_ardour' obj.name = 'libgtk2_ardour'
obj.target = 'gtk2_ardour' obj.target = 'gtk2_ardour'
obj.cflags = [ '-fPIC' ]
else: else:
# just the normal executable version of the GTK GUI # just the normal executable version of the GTK GUI

View File

@ -66,6 +66,7 @@ def build(bld):
obj.target = 'ardour-vst-scanner.exe.so' obj.target = 'ardour-vst-scanner.exe.so'
obj.uselib = ['GIOMM', 'DL'] obj.uselib = ['GIOMM', 'DL']
obj.use = [ 'libpbd' ] obj.use = [ 'libpbd' ]
obj.cxxflags = [ '-fPIC' ]
else: else:
obj = bld (features = 'cxx c cxxprogram') obj = bld (features = 'cxx c cxxprogram')
obj.source = ( 'scanner.cc' ) obj.source = ( 'scanner.cc' )

View File

@ -490,10 +490,9 @@ int main() { return 0; }''',
if conf.env['build_target'] == 'x86_64' and opt.windows_vst: if conf.env['build_target'] == 'x86_64' and opt.windows_vst:
print("\n\n==================================================") print("\n\n==================================================")
print("You cannot use VST plugins with a 64 bit host. Please run waf with --windows-vst=0") print("64bit Windows VST support on 64bit Linux is experimental."
print("\nIt is theoretically possible to build a 32 bit host on a 64 bit system.") print("(This version of ardour will not load 32bit VSTs)"
print("However, this is tricky and not recommended for beginners.") print("==================================================\n\n")
sys.exit (-1)
if conf.env['LXVST_SUPPORT'] == True: if conf.env['LXVST_SUPPORT'] == True:
if conf.env['build_target'] == 'x86_64': if conf.env['build_target'] == 'x86_64':