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