add --generic flag to wscript to trigger -mtune=generic builds; stop using old GNU...
[ardour.git] / wscript
1 #!/usr/bin/env python
2 from waflib.extras import autowaf as autowaf
3 from waflib import Options
4 import os
5 import re
6 import string
7 import subprocess
8 import sys
9
10 # Variables for 'waf dist'
11 VERSION = '3.0beta3'
12 APPNAME = 'Ardour3'
13
14 # Mandatory variables
15 top = '.'
16 out = 'build'
17
18 children = [
19         'libs/pbd',
20         'libs/midi++2',
21         'libs/evoral',
22         'libs/vamp-sdk',
23         'libs/qm-dsp',
24         'libs/vamp-plugins',
25         'libs/taglib',
26         'libs/rubberband',
27         'libs/surfaces',
28         'libs/panners',
29         'libs/timecode',
30         'libs/ardour',
31         'libs/gtkmm2ext',
32         'libs/clearlooks-newer',
33         'libs/audiographer',
34         'gtk2_ardour',
35         'templates',
36         'export',
37         'midi_maps',
38         'manual'
39 ]
40
41 i18n_children = [
42         'gtk2_ardour',
43         'libs/ardour',
44         'libs/gtkmm2ext',
45 ]
46
47 if sys.platform != 'darwin':
48     children += [ 'tools/sanity_check' ]
49     lxvst_default = True
50 else:
51     children += [ 'libs/appleutility' ]
52     lxvst_default = False
53
54 # Version stuff
55
56 def fetch_svn_revision (path):
57     cmd = "LANG= svn info " + path + " | awk '/^Revision:/ { print $2}'"
58     return subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
59
60 def fetch_gcc_version (CC):
61     cmd = "LANG= %s --version" % CC
62     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
63     o = output[0].decode('utf-8')
64     version = o.split(' ')[2].split('.')
65     return version
66
67 def fetch_git_revision (path):
68     cmd = "LANG= git log --abbrev HEAD^..HEAD " + path
69     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
70     o = output[0].decode('utf-8')
71     rev = o.replace ("commit", "git")[0:10]
72     for line in output:
73         try:
74             if "git-svn-id" in line:
75                 line = line.split('@')[1].split(' ')
76                 rev = line[0]
77         except:
78             pass
79     return rev
80
81 def fetch_bzr_revision (path):
82     cmd = subprocess.Popen("LANG= bzr log -l 1 " + path, stdout=subprocess.PIPE, shell=True)
83     out = cmd.communicate()[0]
84     svn = re.search('^svn revno: [0-9]*', out, re.MULTILINE)
85     str = svn.group(0)
86     chars = 'svnreio: '
87     return string.lstrip(str, chars)
88
89 def create_stored_revision():
90     rev = ""
91     if os.path.exists('.svn'):
92         rev = fetch_svn_revision('.');
93     elif os.path.exists('.git'):
94         rev = fetch_git_revision('.');
95     elif os.path.exists('.bzr'):
96         rev = fetch_bzr_revision('.');
97         print("Revision: %s", rev)
98     elif os.path.exists('libs/ardour/svn_revision.cc'):
99         print("Using packaged svn revision")
100         return
101     else:
102         print("Missing libs/ardour/svn_revision.cc.  Blame the packager.")
103         sys.exit(-1)
104
105     try:
106         text =  '#include "ardour/svn_revision.h"\n'
107         text += 'namespace ARDOUR { const char* svn_revision = \"%s\"; }\n' % rev
108         print('Writing svn revision info to libs/ardour/svn_revision.cc')
109         o = open('libs/ardour/svn_revision.cc', 'w')
110         o.write(text)
111         o.close()
112     except IOError:
113         print('Could not open libs/ardour/svn_revision.cc for writing\n')
114         sys.exit(-1)
115
116 def set_compiler_flags (conf,opt):
117     #
118     # Compiler flags and other system-dependent stuff
119     #
120
121     build_host_supports_sse = False
122     optimization_flags = []
123     debug_flags = []
124
125     u = os.uname ()
126     cpu = u[4]
127     platform = u[0].lower()
128     version = u[2]
129
130     if opt.gprofile:
131         debug_flags = [ '-pg' ]
132     else:
133         if platform != 'darwin':
134             debug_flags = [ '-rdynamic' ] # waf adds -O0 -g itself. thanks waf!
135
136     # Autodetect
137     if opt.dist_target == 'auto':
138         if platform == 'darwin':
139             # The [.] matches to the dot after the major version, "." would match any character
140             if re.search ("^[0-7][.]", version) != None:
141                 conf.env['build_target'] = 'panther'
142             elif re.search ("^8[.]", version) != None:
143                 conf.env['build_target'] = 'tiger'
144             elif re.search ("^9[.]", version) != None:
145                 conf.env['build_target'] = 'leopard'
146             elif re.search ("^10[.]", version) != None:
147                 conf.env['build_target'] = 'snowleopard'
148             else:
149                 conf.env['build_target'] = 'lion'
150         else:
151             if re.search ("x86_64", cpu) != None:
152                 conf.env['build_target'] = 'x86_64'
153             elif re.search("i[0-5]86", cpu) != None:
154                 conf.env['build_target'] = 'i386'
155             elif re.search("powerpc", config_cpu) != None:
156                 conf.env['build_target'] = 'powerpc'
157             else:
158                 conf.env['build_target'] = 'i686'
159     else:
160         conf.env['build_target'] = opt.dist_target
161
162     if cpu == 'powerpc' and conf.env['build_target'] != 'none':
163         #
164         # Apple/PowerPC optimization options
165         #
166         # -mcpu=7450 does not reliably work with gcc 3.*
167         #
168         if opt.dist_target == 'panther' or opt.dist_target == 'tiger':
169             if platform == 'darwin':
170                 # optimization_flags.extend ([ "-mcpu=7450", "-faltivec"])
171                 # to support g3s but still have some optimization for above
172                 optimization_flags.extend ([ "-mcpu=G3", "-mtune=7450"])
173             else:
174                 optimization_flags.extend ([ "-mcpu=7400", "-maltivec", "-mabi=altivec"])
175         else:
176             optimization_flags.extend([ "-mcpu=750", "-mmultiple" ])
177         optimization_flags.extend (["-mhard-float", "-mpowerpc-gfxopt"])
178         optimization_flags.extend (["-Os"])
179
180     elif ((re.search ("i[0-9]86", cpu) != None) or (re.search ("x86_64", cpu) != None)) and conf.env['build_target'] != 'none':
181
182
183         #
184         # ARCH_X86 means anything in the x86 family from i386 to x86_64
185         # the compile-time presence of the macro _LP64 is used to 
186         # distingush 32 and 64 bit assembler
187         #
188
189         if (re.search ("(i[0-9]86|x86_64)", cpu) != None):
190             debug_flags.append ("-DARCH_X86")
191             optimization_flags.append ("-DARCH_X86")
192
193         if platform == 'linux' :
194
195             #
196             # determine processor flags via /proc/cpuinfo
197             #
198
199             if conf.env['build_target'] != 'i386':
200
201                 flag_line = os.popen ("cat /proc/cpuinfo | grep '^flags'").read()[:-1]
202                 x86_flags = flag_line.split (": ")[1:][0].split ()
203
204                 if "mmx" in x86_flags:
205                     optimization_flags.append ("-mmmx")
206                 if "sse" in x86_flags:
207                     build_host_supports_sse = True
208                 if "3dnow" in x86_flags:
209                     optimization_flags.append ("-m3dnow")
210
211             if cpu == "i586":
212                 optimization_flags.append ("-march=i586")
213             elif cpu == "i686":
214                 optimization_flags.append ("-march=i686")
215
216         if ((conf.env['build_target'] == 'i686') or (conf.env['build_target'] == 'x86_64')) and build_host_supports_sse:
217             optimization_flags.extend (["-msse", "-mfpmath=sse", "-DUSE_XMMINTRIN"])
218             debug_flags.extend (["-msse", "-mfpmath=sse", "-DUSE_XMMINTRIN"])
219
220     # end of processor-specific section
221
222     # optimization section
223     if conf.env['FPU_OPTIMIZATION']:
224         if sys.platform == 'darwin':
225             optimization_flags.append ("-DBUILD_VECLIB_OPTIMIZATIONS");
226             debug_flags.append ("-DBUILD_VECLIB_OPTIMIZATIONS");
227             conf.env.append_value('LINKFLAGS', "-framework Accelerate")
228         elif conf.env['build_target'] == 'i686' or conf.env['build_target'] == 'x86_64':
229             optimization_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
230             debug_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
231         if not build_host_supports_sse:
232             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)")
233
234     # check this even if we aren't using FPU optimization
235     if not conf.is_defined('HAVE_POSIX_MEMALIGN'):
236         optimization_flags.append("-DNO_POSIX_MEMALIGN")
237         debug_flags.append("-DNO_POSIX_MEMALIGN")
238
239     # end optimization section
240
241     #
242     # no VST on x86_64
243     #
244
245     if conf.env['build_target'] == 'x86_64' and opt.windows_vst:
246         print("\n\n==================================================")
247         print("You cannot use VST plugins with a 64 bit host. Please run waf with --windows-vst=0")
248         print("\nIt is theoretically possible to build a 32 bit host on a 64 bit system.")
249         print("However, this is tricky and not recommended for beginners.")
250         sys.exit (-1)
251
252     if opt.lxvst:
253         if conf.env['build_target'] == 'x86_64':
254             conf.env.append_value('CXXFLAGS', "-DLXVST_64BIT")
255         else:
256             conf.env.append_value('CXXFLAGS', "-DLXVST_32BIT")
257
258     #
259     # a single way to test if we're on OS X
260     #
261
262     if conf.env['build_target'] in ['panther', 'tiger', 'leopard' ]:
263         conf.define ('IS_OSX', 1)
264         # force tiger or later, to avoid issues on PPC which defaults
265         # back to 10.1 if we don't tell it otherwise.
266         conf.env.append_value('CFLAGS', "-DMAC_OS_X_VERSION_MIN_REQUIRED=1040")
267
268     else:
269         conf.define ('IS_OSX', 0)
270
271     #
272     # save off CPU element in an env
273     #
274     conf.define ('CONFIG_ARCH', cpu)
275
276     #
277     # ARCH="..." overrides all
278     #
279
280     if opt.arch != None:
281         optimization_flags = opt.arch.split()
282
283     #
284     # prepend boiler plate optimization flags that work on all architectures
285     #
286
287     optimization_flags[:0] = [
288             "-O3",
289             "-fomit-frame-pointer",
290             "-ffast-math",
291             "-fstrength-reduce",
292             "-pipe"
293             ]
294
295     if opt.debug:
296         conf.env.append_value('CFLAGS', debug_flags)
297         conf.env.append_value('CXXFLAGS', debug_flags)
298         conf.env.append_value('LINKFLAGS', debug_flags)
299     else:
300         conf.env.append_value('CFLAGS', optimization_flags)
301         conf.env.append_value('CXXFLAGS', optimization_flags)
302         conf.env.append_value('LINKFLAGS', optimization_flags)
303
304     if opt.stl_debug:
305         conf.env.append_value('CXXFLAGS', "-D_GLIBCXX_DEBUG")
306
307     if conf.env['DEBUG_RT_ALLOC']:
308         conf.env.append_value('CFLAGS', '-DDEBUG_RT_ALLOC')
309         conf.env.append_value('CXXFLAGS', '-DDEBUG_RT_ALLOC')
310         conf.env.append_value('LINKFLAGS', '-ldl')
311
312     if conf.env['DEBUG_DENORMAL_EXCEPTION']:
313         conf.env.append_value('CFLAGS', '-DDEBUG_DENORMAL_EXCEPTION')
314         conf.env.append_value('CXXFLAGS', '-DDEBUG_DENORMAL_EXCEPTION')
315
316     if opt.universal:
317         if opt.generic:
318             print ('Specifying Universal and Generic builds at the same time is not supported')
319             sys.exit (1)
320         else:
321             if not Options.options.nocarbon:
322                 conf.env.append_value('CFLAGS', ["-arch", "i386", "-arch", "ppc"])
323                 conf.env.append_value('CXXFLAGS', ["-arch", "i386", "-arch", "ppc"])
324                 conf.env.append_value('LINKFLAGS', ["-arch", "i386", "-arch", "ppc"])
325             else:
326                 conf.env.append_value('CFLAGS', ["-arch", "x86_64", "-arch", "i386", "-arch", "ppc"])
327                 conf.env.append_value('CXXFLAGS', ["-arch", "x86_64", "-arch", "i386", "-arch", "ppc"])
328                 conf.env.append_value('LINKFLAGS', ["-arch", "x86_64", "-arch", "i386", "-arch", "ppc"])
329     else:
330         if opt.generic:
331             conf.env.append_value('CFLAGS', ['-mtune=generic'])
332             conf.env.append_value('CXXFLAGS', ['-mtune=generic'])
333             conf.env.append_value('LINKFLAGS', ['-mtune=generic'])
334
335     #
336     # warnings flags
337     #
338
339     conf.env.append_value('CFLAGS', "-Wall")
340     conf.env.append_value('CXXFLAGS', [ '-Wall', '-Woverloaded-virtual'])
341
342
343     #
344     # more boilerplate
345     #
346
347     conf.env.append_value('CFLAGS', '-D_LARGEFILE64_SOURCE')
348     conf.env.append_value('CFLAGS', '-D_FILE_OFFSET_BITS=64')
349     conf.env.append_value('CXXFLAGS', '-D_LARGEFILE64_SOURCE')
350     conf.env.append_value('CXXFLAGS', '-D_FILE_OFFSET_BITS=64')
351
352     conf.env.append_value('CXXFLAGS', '-D__STDC_LIMIT_MACROS')
353     conf.env.append_value('CXXFLAGS', '-D__STDC_FORMAT_MACROS')
354
355     if opt.nls:
356         conf.env.append_value('CXXFLAGS', '-DENABLE_NLS')
357         conf.env.append_value('CFLAGS', '-DENABLE_NLS')
358
359 #----------------------------------------------------------------
360
361 # Waf stages
362
363 def options(opt):
364     opt.load('compiler_c')
365     opt.load('compiler_cxx')
366     autowaf.set_options(opt, debug_by_default=True)
367     opt.add_option('--program-name', type='string', action='store', default='Ardour', dest='program_name',
368                     help='The user-visible name of the program being built')
369     opt.add_option('--arch', type='string', action='store', dest='arch',
370                     help='Architecture-specific compiler flags')
371     opt.add_option('--no-carbon', action='store_true', default=False, dest='nocarbon',
372                     help='Compile without support for AU Plugins with only CARBON UI (needed for 64bit)')
373     opt.add_option('--boost-sp-debug', action='store_true', default=False, dest='boost_sp_debug',
374                     help='Compile with Boost shared pointer debugging')
375     opt.add_option('--dist-target', type='string', default='auto', dest='dist_target',
376                     help='Specify the target for cross-compiling [auto,none,x86,i386,i686,x86_64,powerpc,tiger,leopard]')
377     opt.add_option('--fpu-optimization', action='store_true', default=True, dest='fpu_optimization',
378                     help='Build runtime checked assembler code (default)')
379     opt.add_option('--no-fpu-optimization', action='store_false', dest='fpu_optimization')
380     opt.add_option('--freedesktop', action='store_true', default=False, dest='freedesktop',
381                     help='Install MIME type, icons and .desktop file as per freedesktop.org standards')
382     opt.add_option('--freebie', action='store_true', default=False, dest='freebie',
383                     help='Build a version suitable for distribution as a zero-cost binary')
384     opt.add_option('--no-freesound', action='store_false', default=True, dest='freesound',
385                     help='Do not build with Freesound database support')
386     opt.add_option('--gprofile', action='store_true', default=False, dest='gprofile',
387                     help='Compile for use with gprofile')
388     opt.add_option('--lv2', action='store_true', default=True, dest='lv2',
389                     help='Compile with support for LV2 (if Lilv+Suil is available)')
390     opt.add_option('--no-lv2', action='store_false', dest='lv2',
391                     help='Do not compile with support for LV2')
392     opt.add_option('--lxvst', action='store_true', default=lxvst_default, dest='lxvst',
393                     help='Compile with support for linuxVST plugins')
394     opt.add_option('--nls', action='store_true', default=True, dest='nls',
395                     help='Enable i18n (native language support) (default)')
396     opt.add_option('--no-nls', action='store_false', dest='nls')
397     opt.add_option('--phone-home', action='store_false', default=False, dest='phone_home')
398     opt.add_option('--stl-debug', action='store_true', default=False, dest='stl_debug',
399                     help='Build with debugging for the STL')
400     opt.add_option('--rt-alloc-debug', action='store_true', default=False, dest='rt_alloc_debug',
401                     help='Build with debugging for memory allocation in the real-time thread')
402     opt.add_option('--pt-timing', action='store_true', default=False, dest='pt_timing',
403                     help='Build with logging of timing in the process thread(s)')
404     opt.add_option('--denormal-exception', action='store_true', default=False, dest='denormal_exception',
405                     help='Raise a floating point exception if a denormal is detected')
406     opt.add_option('--test', action='store_true', default=False, dest='build_tests',
407                     help="Build unit tests")
408     opt.add_option('--tranzport', action='store_true', default=False, dest='tranzport',
409                     help='Compile with support for Frontier Designs Tranzport (if libusb is available)')
410     opt.add_option('--universal', action='store_true', default=False, dest='universal',
411                     help='Compile as universal binary (OS X ONLY, requires that external libraries are universal)')
412     opt.add_option('--generic', action='store_true', default=False, dest='generic',
413                     help='Compile with -march=generic')
414     opt.add_option('--versioned', action='store_true', default=False, dest='versioned',
415                     help='Add revision information to executable name inside the build directory')
416     opt.add_option('--windows-vst', action='store_true', default=False, dest='windows_vst',
417                     help='Compile with support for Windows VST')
418     opt.add_option('--wiimote', action='store_true', default=False, dest='wiimote',
419                     help='Build the wiimote control surface')
420     opt.add_option('--windows-key', type='string', action='store', dest='windows_key', default='Mod4><Super',
421                     help='X Modifier(s) (Mod1,Mod2, etc) for the Windows key (X11 builds only). ' +
422                     'Multiple modifiers must be separated by \'><\'')
423     opt.add_option('--boost-include', type='string', action='store', dest='boost_include', default='',
424                     help='directory where Boost header files can be found')
425     opt.add_option('--also-include', type='string', action='store', dest='also_include', default='',
426                     help='additional include directory where header files can be found (split multiples with commas)')
427     opt.add_option('--also-libdir', type='string', action='store', dest='also_libdir', default='',
428                     help='additional include directory where shared libraries can be found (split multiples with commas)')
429     opt.add_option('--wine-include', type='string', action='store', dest='wine_include', default='/usr/include/wine/windows',
430                     help='directory where Wine\'s Windows header files can be found')
431     opt.add_option('--noconfirm', action='store_true', default=False, dest='noconfirm',
432                     help='Do not ask questions that require confirmation during the build')
433     for i in children:
434         opt.recurse(i)
435
436 def sub_config_and_use(conf, name, has_objects = True):
437     conf.recurse(name)
438     autowaf.set_local_lib(conf, name, has_objects)
439
440 def configure(conf):
441     conf.load('compiler_c')
442     conf.load('compiler_cxx')
443     if not Options.options.noconfirm:
444         print ('\n\nThis is a beta version of Ardour 3.0.\n\n' +
445                'You are respectfully requested NOT to ask for assistance with build issues\n' +
446                'and not to report issues with Ardour 3.0 on the forums at ardour.org.\n\n' +
447                'Please use IRC, the bug tracker and/or the ardour mailing lists (-dev or -user)\n\n' +
448                'Thanks for your co-operation with our development process.\n\n' +
449                'Press Enter to continue.\n')
450         sys.stdin.readline()
451     conf.env['VERSION'] = VERSION
452     conf.line_just = 52
453     autowaf.set_recursive()
454     autowaf.configure(conf)
455     autowaf.display_header('Ardour Configuration')
456
457     gcc_versions = fetch_gcc_version(str(conf.env['CC']))
458     if not Options.options.debug and gcc_versions[0] == '4' and gcc_versions[1] > '4':
459         print('Version 4.5 of gcc is not ready for use when compiling Ardour with optimization.')
460         print('Please use a different version or re-configure with --debug')
461         exit (1)
462
463     if sys.platform == 'darwin':
464
465         # libintl may or may not be trivially locatable
466         if not os.path.isfile ('/usr/include/libintl.h'):
467             # XXXX hack hack hack
468             prefinclude = ''.join ([ '-I', os.path.expanduser ('~/gtk/inst/include') ])
469             preflib = ''.join ([ '-L', os.path.expanduser ('~/gtk/inst/lib') ])
470             conf.env.append_value('CFLAGS', [ prefinclude ])
471             conf.env.append_value('CXXFLAGS',  [prefinclude ])
472             conf.env.append_value('LINKFLAGS', [ preflib ])
473
474         # this is required, potentially, for anything we link and then relocate into a bundle
475         conf.env.append_value('LINKFLAGS', [ '-Xlinker', '-headerpad_max_install_names' ])
476
477         conf.define ('HAVE_COREAUDIO', 1)
478         conf.define ('AUDIOUNIT_SUPPORT', 1)
479
480         if not Options.options.freebie:
481             conf.define ('AU_STATE_SUPPORT', 1)
482
483         conf.define ('GTKOSX', 1)
484         conf.define ('TOP_MENUBAR',1)
485         conf.define ('GTKOSX',1)
486
487         #
488         # need this on OS X to pick up long long variants of several math functions
489         #
490
491         conf.env.append_value('CXXFLAGS_APPLEUTILITY', '-I../libs')
492         #
493         #       Define OSX as a uselib to use when compiling
494         #       on Darwin to add all applicable flags at once
495         #
496         conf.env.append_value('CXXFLAGS_OSX', '-DMAC_OS_X_VERSION_MIN_REQUIRED=1040')
497         conf.env.append_value('CFLAGS_OSX', '-DMAC_OS_X_VERSION_MIN_REQUIRED=1040')
498         conf.env.append_value('CXXFLAGS_OSX', '-mmacosx-version-min=10.4')
499         conf.env.append_value('CFLAGS_OSX', '-mmacosx-version-min=10.4')
500
501         #conf.env.append_value('CXXFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
502         #conf.env.append_value('CFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
503         #conf.env.append_value('LINKFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
504
505         #conf.env.append_value('LINKFLAGS_OSX', "-sysroot /Developer/SDKs/MacOSX10.4u.sdk")
506
507         conf.env.append_value('CXXFLAGS_OSX', "-msse")
508         conf.env.append_value('CFLAGS_OSX', "-msse")
509         conf.env.append_value('CXXFLAGS_OSX', "-msse2")
510         conf.env.append_value('CFLAGS_OSX', "-msse2")
511         #
512         #       TODO: The previous sse flags NEED to be based
513         #       off processor type.  Need to add in a check
514         #       for that.
515         #
516         conf.env.append_value('CXXFLAGS_OSX', '-F/System/Library/Frameworks')
517         conf.env.append_value('CXXFLAGS_OSX', '-F/Library/Frameworks')
518
519         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'AppKit'])
520         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreAudio'])
521         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreAudioKit'])
522         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreFoundation'])
523         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreServices'])
524
525         conf.env.append_value('LINKFLAGS_OSX', ['-undefined', 'dynamic_lookup' ])
526         conf.env.append_value('LINKFLAGS_OSX', ['-flat_namespace'])
527
528         conf.env.append_value('CXXFLAGS_AUDIOUNITS', "-DAUDIOUNIT_SUPPORT")
529         conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'AudioToolbox', '-framework', 'AudioUnit'])
530         conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'Cocoa'])
531
532         if not Options.options.freebie:
533             conf.env.append_value('CXXFLAGS_AUDIOUNITS', "-DAU_STATE_SUPPORT")
534
535         if re.search ("^[1-9][0-9]\.", os.uname()[2]) == None and not Options.options.nocarbon:
536             conf.env.append_value('CXXFLAGS_AUDIOUNITS', "-DWITH_CARBON")
537             conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'Carbon'])
538         else:
539             print ('No Carbon support available for this build\n')
540
541     if Options.options.boost_include != '':
542         conf.env.append_value('CXXFLAGS', '-I' + Options.options.boost_include)
543
544     if Options.options.also_include != '':
545         conf.env.append_value('CXXFLAGS', '-I' + Options.options.also_include)
546         conf.env.append_value('CFLAGS', '-I' + Options.options.also_include)
547
548     if Options.options.also_libdir != '':
549         conf.env.append_value('LDFLAGS', '-L' + Options.options.also_libdir)
550
551     if Options.options.boost_sp_debug:
552         conf.env.append_value('CXXFLAGS', '-DBOOST_SP_ENABLE_DEBUG_HOOKS')
553
554     autowaf.check_header(conf, 'cxx', 'jack/session.h', define="JACK_SESSION", mandatory = False)
555
556     conf.check_cxx(fragment = "#include <boost/version.hpp>\nint main(void) { return (BOOST_VERSION >= 103900 ? 0 : 1); }\n",
557                   execute = "1",
558                   mandatory = True,
559                   msg = 'Checking for boost library >= 1.39',
560                   okmsg = 'ok',
561                   errmsg = 'too old\nPlease install boost version 1.39 or higher.')
562
563     autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT', atleast_version='1.12.0', mandatory=False)
564     autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.2')
565     autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.2')
566     autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.14.0')
567     autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18')
568     autowaf.check_pkg(conf, 'giomm-2.4', uselib_store='GIOMM', atleast_version='2.2')
569     autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL', atleast_version='7.0.0')
570
571     for i in children:
572         sub_config_and_use(conf, i)
573
574     # Fix utterly braindead FLAC include path to not smash assert.h
575     conf.env['INCLUDES_FLAC'] = []
576
577     conf.check_cc(function_name='dlopen', header_name='dlfcn.h', linkflags='-ldl', uselib_store='DL')
578
579     # Tell everyone that this is a waf build
580
581     conf.env.append_value('CFLAGS', '-DWAF_BUILD')
582     conf.env.append_value('CXXFLAGS', '-DWAF_BUILD')
583
584     # Set up waf environment and C defines
585     opts = Options.options
586     if opts.debug:
587         opts.phone_home = False;   # debug builds should not call home
588     if opts.phone_home:
589         conf.env['PHONE_HOME'] = opts.phone_home
590     if opts.fpu_optimization:
591         conf.env['FPU_OPTIMIZATION'] = True
592     if opts.freesound:
593         conf.define('FREESOUND',1)
594         conf.env['FREESOUND'] = True
595     if opts.nls:
596         conf.define('ENABLE_NLS', 1)
597         conf.env['ENABLE_NLS'] = True
598     if opts.build_tests:
599         conf.env['BUILD_TESTS'] = opts.build_tests
600     if opts.tranzport:
601         conf.env['TRANZPORT'] = 1
602     if opts.windows_vst:
603         conf.define('WINDOWS_VST_SUPPORT', 1)
604         conf.env['WINDOWS_VST_SUPPORT'] = True
605         conf.env.append_value('CFLAGS', '-I' + Options.options.wine_include)
606         conf.env.append_value('CXXFLAGS', '-I' + Options.options.wine_include)
607         autowaf.check_header(conf, 'cxx', 'windows.h', mandatory = True)
608     if opts.lxvst:
609         conf.define('LXVST_SUPPORT', 1)
610         conf.env['LXVST_SUPPORT'] = True
611     if bool(conf.env['JACK_SESSION']):
612         conf.define('HAVE_JACK_SESSION', 1)
613     if opts.wiimote:
614         conf.define('WIIMOTE', 1)
615         conf.env['WIIMOTE'] = True
616     conf.define('WINDOWS_KEY', opts.windows_key)
617     conf.env['PROGRAM_NAME'] = opts.program_name
618     if opts.rt_alloc_debug:
619         conf.define('DEBUG_RT_ALLOC', 1)
620         conf.env['DEBUG_RT_ALLOC'] = True
621     if opts.pt_timing:
622         conf.define('PT_TIMING', 1)
623         conf.env['PT_TIMING'] = True
624     if opts.denormal_exception:
625         conf.define('DEBUG_DENORMAL_EXCEPTION', 1)
626         conf.env['DEBUG_DENORMAL_EXCEPTION'] = True
627     if not conf.is_defined('HAVE_CPPUNIT'):
628         conf.env['BUILD_TESTS'] = False
629
630     set_compiler_flags (conf, Options.options)
631
632     config_text = open('libs/ardour/config_text.cc', "w")
633     config_text.write('''#include "ardour/ardour.h"
634 namespace ARDOUR {
635 const char* const ardour_config_info = "\\n\\
636 ''')
637
638     def write_config_text(title, val):
639         autowaf.display_msg(conf, title, val)
640         config_text.write(title + ': ')
641         config_text.write(str(val))
642         config_text.write("\\n\\\n")
643
644     write_config_text('Build documentation',   conf.env['DOCS'])
645     write_config_text('Debuggable build',      conf.env['DEBUG'])
646     write_config_text('Install prefix',        conf.env['PREFIX'])
647     write_config_text('Strict compiler flags', conf.env['STRICT'])
648
649     write_config_text('Architecture flags',    opts.arch)
650     write_config_text('Aubio',                 conf.is_defined('HAVE_AUBIO'))
651     write_config_text('AudioUnits',            conf.is_defined('AUDIOUNIT_SUPPORT'))
652     write_config_text('AU state support',      conf.is_defined('AU_STATE_SUPPORT'))
653     write_config_text('Build target',          conf.env['build_target'])
654     write_config_text('CoreAudio',             conf.is_defined('HAVE_COREAUDIO'))
655     write_config_text('Debug RT allocations',  conf.is_defined('DEBUG_RT_ALLOC'))
656     write_config_text('Process thread timing', conf.is_defined('PT_TIMING'))
657     write_config_text('Denormal exceptions',   conf.is_defined('DEBUG_DENORMAL_EXCEPTION'))
658     write_config_text('FLAC',                  conf.is_defined('HAVE_FLAC'))
659     write_config_text('FPU optimization',      opts.fpu_optimization)
660     write_config_text('Freedesktop files',     opts.freedesktop)
661     write_config_text('Freesound',             opts.freesound)
662     write_config_text('JACK session support',  conf.is_defined('JACK_SESSION'))
663     write_config_text('LV2 UI embedding',      conf.is_defined('HAVE_SUIL'))
664     write_config_text('LV2 support',           conf.is_defined('LV2_SUPPORT'))
665     write_config_text('LXVST support',         conf.is_defined('LXVST_SUPPORT'))
666     write_config_text('OGG',                   conf.is_defined('HAVE_OGG'))
667     write_config_text('Phone home',            conf.is_defined('PHONE_HOME'))
668     write_config_text('Program name',          opts.program_name)
669     write_config_text('Rubberband',            conf.is_defined('HAVE_RUBBERBAND'))
670     write_config_text('Samplerate',            conf.is_defined('HAVE_SAMPLERATE'))
671 #    write_config_text('Soundtouch',            conf.is_defined('HAVE_SOUNDTOUCH'))
672     write_config_text('Translation',           opts.nls)
673     write_config_text('Tranzport',             opts.tranzport)
674     write_config_text('Unit tests',            conf.env['BUILD_TESTS'])
675     write_config_text('Universal binary',      opts.universal)
676     write_config_text('Generic x86 CPU',       opts.generic)
677     write_config_text('Windows VST support',   opts.windows_vst)
678     write_config_text('Wiimote support',       opts.wiimote)
679     write_config_text('Windows key',           opts.windows_key)
680
681     write_config_text('C compiler flags',      conf.env['CFLAGS'])
682     write_config_text('C++ compiler flags',    conf.env['CXXFLAGS'])
683
684     config_text.write ('";\n}\n')
685     config_text.close ()
686     print('')
687
688 def build(bld):
689     create_stored_revision()
690
691     # add directories that contain only headers, to workaround an issue with waf
692
693     bld.path.find_dir ('libs/evoral/evoral')
694     bld.path.find_dir ('libs/vamp-sdk/vamp-sdk')
695     bld.path.find_dir ('libs/surfaces/control_protocol/control_protocol')
696     bld.path.find_dir ('libs/timecode/timecode')
697     bld.path.find_dir ('libs/rubberband/rubberband')
698     bld.path.find_dir ('libs/gtkmm2ext/gtkmm2ext')
699     bld.path.find_dir ('libs/ardour/ardour')
700     bld.path.find_dir ('libs/taglib/taglib')
701     bld.path.find_dir ('libs/pbd/pbd')
702
703     autowaf.set_recursive()
704
705     for i in children:
706         bld.recurse(i)
707
708     # ideally, we'd like to use the OS-provided MIDI API
709     # for default ports. that doesn't work on at least
710     # Fedora (Nov 9th, 2009) so use JACK MIDI on linux.
711
712     if sys.platform == 'darwin':
713         rc_subst_dict = {
714                 'MIDITAG'    : 'control',
715                 'MIDITYPE'   : 'coremidi',
716                 'JACK_INPUT' : 'auditioner'
717                 }
718     else:
719         rc_subst_dict = {
720                 'MIDITAG'    : 'control',
721                 'MIDITYPE'   : 'jack',
722                 'JACK_INPUT' : 'auditioner'
723                 }
724
725     obj              = bld(features = 'subst')
726     obj.source       = 'ardour.rc.in'
727     obj.target       = 'ardour_system.rc'
728     obj.dict         = rc_subst_dict
729     obj.install_path = '${SYSCONFDIR}/ardour3'
730
731 def i18n(bld):
732     bld.recurse (i18n_children)
733
734 def i18n_pot(bld):
735     bld.recurse (i18n_children)
736
737 def i18n_po(bld):
738     bld.recurse (i18n_children)
739
740 def i18n_mo(bld):
741     bld.recurse (i18n_children)
742
743 def install_not_supported(bld):
744     print ('Installing Ardour 3 is currently unsupported. Run it via the command ./ardev from within the gtk2_ardour directory.')
745     sys.exit (1)
746
747 from waflib import Build
748 class install(Build.InstallContext):
749     cmd = 'install'
750     fun = 'install_not_supported'