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