allow linking unbundled version of qm-dsp
[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 import platform as PLATFORM
10 from waflib.Tools import winres
11 from waflib.Build import Context
12 from waflib.Build import BuildContext
13
14 class i18n(BuildContext):
15         cmd = 'i18n'
16         fun = 'i18n'
17
18 class i18n_pot(BuildContext):
19         cmd = 'i18n_pot'
20         fun = 'i18n_pot'
21
22 class i18n_po(BuildContext):
23         cmd = 'i18n_po'
24         fun = 'i18n_po'
25
26 class i18n_mo(BuildContext):
27         cmd = 'i18n_mo'
28         fun = 'i18n_mo'
29
30 def is_tracks_build(self, *k, **kw):
31         return self.env['PROGRAM_NAME'] == 'Tracks Live'
32
33 Context.Context.is_tracks_build = is_tracks_build
34
35 compiler_flags_dictionaries= {
36     'gcc' : {
37         # Flags required when building a debug build
38         'debuggable' : [ '-g' ],
39         # Flags required for the linker (if any) when building a debug build
40         'linker-debuggable' : '',
41         # Flags required when building a non-debug optimized build
42         'nondebuggable' : '-DNDEBUG',
43         # Flags required to enable profiling at runtime with optimized builds
44         'profile' : [ '-fno-omit-frame-pointer' ],
45         # Flags required to enable gprofile profiling
46         'gprofile' : '-pg',
47         # Flags required to disable warnings about unused arguments to function calls
48         'silence-unused-arguments' : '',
49         # Flags required to use SSE unit for general math
50         'sse' : '-msse',
51         # Flags required to use SSE unit for floating point math
52         'fpmath-sse' : '-mfpmath=sse',
53         # Flags required to use XMM Intrinsics
54         'xmmintrinsics' : '-DUSE_XMMINTRIN',
55         # Flags to use posix pipes between compiler stages
56         'pipe' : '-pipe',
57         # Flags for maximally optimized build
58         'full-optimization' : [ '-O3', '-fomit-frame-pointer', '-ffast-math', '-fstrength-reduce', ],
59         # Flag to ensure that compiler error output includes column/line numbers
60         'show-column' : '-fshow-column',
61         # Flags required to build for x86 only (OS X feature)
62         'generic-x86' : '',
63         # Flags required to build for PowerPC only (OS X feature)
64         'generic-ppc' : '',
65         # All flags required to get basic warnings to be generated by the compiler
66         'basic-warnings' : [ '-Wall', '-Wpointer-arith', '-Wcast-qual', '-Wcast-align', '-Wno-unused-parameter' ],
67         # Any additional flags for warnings that are specific to C (not C++)
68         'extra-c-warnings' : [ '-Wstrict-prototypes', '-Wmissing-prototypes' ],
69         # Any additional flags for warnings that are specific to C++ (not C)
70         'extra-cxx-warnings' : [ '-Woverloaded-virtual', '-Wno-unused-local-typedefs' ],
71         # Flags used for "strict" compilation, C and C++ (i.e. compiler will warn about language issues)
72         'strict' : ['-Wall', '-Wcast-align', '-Wextra', '-Wwrite-strings', '-Wunsafe-loop-optimizations', '-Wlogical-op' ],
73         # Flags used for "strict" compilation, C only (i.e. compiler will warn about language issues)
74         'c-strict' : ['-std=c99', '-pedantic', '-Wshadow'],
75         # Flags used for "strict" compilation, C++ only (i.e. compiler will warn about language issues)
76         'cxx-strict' : [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual', '-fstrict-overflow' ],
77         # Flags required for whatever consider the strictest possible compilation
78         'ultra-strict' : ['-Wredundant-decls', '-Wstrict-prototypes', '-Wmissing-prototypes'],
79         # Flag to turn on C99 compliance by itself
80         'c99': '-std=c99',
81         # Flag to enable AT&T assembler syntax
82         'attasm': '-masm=att',
83         # Flags to make AVX instructions/intrinsics available
84         'avx': '-mavx',
85         # Flags to generate position independent code, when needed to build a shared object
86         'pic': '-fPIC',
87         # Flags required to compile C code with anonymous unions (only part of C11)
88         'c-anonymous-union': '-fms-extensions',
89     },
90     'msvc' : {
91         'debuggable' : ['/DDEBUG', '/Od', '/Zi', '/MDd', '/Gd', '/EHsc'],
92         'linker-debuggable' : ['/DEBUG', '/INCREMENTAL' ],
93         'nondebuggable' : ['/DNDEBUG', '/Ob1', '/MD', '/Gd', '/EHsc'],
94         'profile' : '/Oy-',
95         'sse' : '/arch:SSE',
96         'silence-unused-arguments' : '',
97         'sse' : '',
98         'fpmath-sse' : '',
99         'xmmintrinsics' : '',
100         'pipe' : '',
101         'full-optimization' : '/O2',
102         'no-frame-pointer' : '',
103         'fast-math' : '',
104         'strength-reduce' : '',
105         'show-column' : '',
106         'generic-x86' : '',
107         'generic-ppc' : '',
108         'basic-warnings' : '',
109         'extra-c-warnings' : '',
110         'extra-cxx-warnings' : '',
111         'ultra-strict' : '',
112         'c-strict' : '',
113         'cxx-strict' : '',
114         'strict' : '',
115         'c99': '/TP',
116         'attasm': '',
117         'avx': '',
118         'pic': '',
119         'c-anonymous-union': '',
120     },
121 }
122
123 # Copy, edit and insert variants on gcc dict for gcc-darwin and clang
124
125 gcc_darwin_dict = compiler_flags_dictionaries['gcc'].copy()
126 gcc_darwin_dict['extra-cxx-warnings'] = [ '-Woverloaded-virtual' ]
127 gcc_darwin_dict['cxx-strict'] = [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual' ]
128 gcc_darwin_dict['strict'] = ['-Wall', '-Wcast-align', '-Wextra', '-Wwrite-strings' ]
129 gcc_darwin_dict['generic-x86'] = [ '-arch', 'i386' ]
130 gcc_darwin_dict['generic-ppc'] = [ '-arch', 'ppc' ]
131 compiler_flags_dictionaries['gcc-darwin'] = gcc_darwin_dict;
132
133 clang_dict = compiler_flags_dictionaries['gcc'].copy();
134 clang_dict['sse'] = ''
135 clang_dict['fpmath-sse'] = ''
136 clang_dict['xmmintrinsics'] = ''
137 clang_dict['silence-unused-arguments'] = '-Qunused-arguments'
138 clang_dict['extra-cxx-warnings'] = [ '-Woverloaded-virtual', '-Wno-mismatched-tags', '-Wno-cast-align', '-Wno-unused-local-typedefs' ]
139 clang_dict['cxx-strict'] = [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual', '-fstrict-overflow' ]
140 clang_dict['strict'] = ['-Wall', '-Wcast-align', '-Wextra', '-Wwrite-strings' ]
141 clang_dict['generic-x86'] = [ '-arch', 'i386' ]
142 clang_dict['full-optimization'] = [ '-O3', '-fomit-frame-pointer', '-ffast-math', ]
143 compiler_flags_dictionaries['clang'] = clang_dict;
144
145 clang_darwin_dict = compiler_flags_dictionaries['clang'].copy();
146 clang_darwin_dict['cxx-strict'] = [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual', ]
147 clang_darwin_dict['full-optimization'] = [ '-O3', '-ffast-math']
148 compiler_flags_dictionaries['clang-darwin'] = clang_darwin_dict;
149
150 def fetch_git_revision ():
151     cmd = "git describe HEAD | sed 's/^[A-Za-z0-9]*+//'"
152     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
153     rev = output[0].decode ('utf-8')
154     return rev
155
156 def fetch_tarball_revision ():
157     if not os.path.exists ('libs/ardour/revision.cc'):
158         print ('This tarball was not created correctly - it is missing libs/ardour/revision.cc')
159         sys.exit (1)
160     with open('libs/ardour/revision.cc') as f:
161         content = f.readlines()
162         remove_punctuation_map = dict((ord(char), None) for char in '";')
163         return content[1].decode('utf-8').strip().split(' ')[7].translate (remove_punctuation_map)
164
165 if os.path.isdir (os.path.join(os.getcwd(), '.git')):
166     rev = fetch_git_revision ()
167 else:
168     rev = fetch_tarball_revision ()
169
170 #
171 # rev is now of the form MAJOR.MINOR[-rcX]-rev-commit
172 # or, if right at the same rev as a release, MAJOR.MINOR[-rcX]
173 #
174
175 parts = rev.split ('.', 1)
176 MAJOR = parts[0]
177 other = parts[1].split('-', 1)
178 MINOR = other[0]
179 if len(other) > 1:
180     MICRO = other[1].rsplit('-',1)[0].replace('-','.')
181 else:
182     MICRO = '0'
183
184 V = MAJOR + '.' + MINOR + '.' + MICRO
185 # Ensure that these are not unicode, which
186 # can cause odd problems elsewhere. Note that
187 # in python3, encode and decode do not return
188 # strings, so we have to force the type.
189 VERSION = V.encode ('ascii', 'ignore').decode ("utf-8")
190 PROGRAM_VERSION = MAJOR.encode ('ascii', 'ignore').decode ("utf-8")
191
192 if len (sys.argv) > 1 and sys.argv[1] == 'dist':
193         if not 'APPNAME' in os.environ:
194                 print ("You must define APPNAME in the environment when running ./waf dist")
195                 sys.exit (1)
196         APPNAME = os.environ['APPNAME'];
197
198 # Mandatory variables
199 top = '.'
200 out = 'build'
201
202 children = [
203         # optionally external libraries
204         'libs/qm-dsp',
205         'libs/vamp-plugins',
206         'libs/libltc',
207         'libs/fluidsynth',
208         'libs/lua',
209         'libs/ptformat',
210         # core ardour libraries
211         'libs/pbd',
212         'libs/midi++2',
213         'libs/evoral',
214         'libs/surfaces',
215         'libs/panners',
216         'libs/backends',
217         'libs/timecode',
218         'libs/ardour',
219         'libs/gtkmm2ext',
220         'libs/audiographer',
221         'libs/canvas',
222         'libs/plugins/reasonablesynth.lv2',
223         'libs/plugins/a-comp.lv2',
224         'libs/plugins/a-delay.lv2',
225         'libs/plugins/a-eq.lv2',
226         'libs/plugins/a-reverb.lv2',
227         'libs/plugins/a-fluidsynth.lv2',
228         'gtk2_ardour',
229         'export',
230         'midi_maps',
231         'mcp',
232         'osc',
233         'patchfiles',
234         'scripts',
235         'headless',
236         'session_utils',
237         # shared helper binaries (plugin-scanner, exec-wrapper)
238         'libs/fst',
239         'libs/vfork',
240         'libs/ardouralsautil',
241         'cfgtool',
242         'tools/luadevel',
243 ]
244
245 i18n_children = [
246         'gtk2_ardour',
247         'libs/ardour',
248         'libs/gtkmm2ext',
249 ]
250
251 # Version stuff
252
253 def fetch_gcc_version (CC):
254     cmd = "%s --version" % CC
255     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
256     o = output[0].decode('utf-8')
257     version = o.split(' ')[2].split('.')
258     return version
259
260 def create_stored_revision():
261     rev = ""
262     if os.path.exists('.git'):
263         rev = fetch_git_revision();
264         print("Git version: " + rev + "\n")
265     elif os.path.exists('libs/ardour/revision.cc'):
266         print("Using packaged revision")
267         return
268     else:
269         print("Missing libs/ardour/revision.cc.  Blame the packager.")
270         sys.exit(-1)
271
272     try:
273         #
274         # if you change the format of this, be sure to fix fetch_tarball_revision() above
275         # so that  it still works.
276         #
277         text =  '#include "ardour/revision.h"\n'
278         text += 'namespace ARDOUR { const char* revision = \"%s\"; }\n' % rev
279         print('Writing revision info to libs/ardour/revision.cc using ' + rev)
280         o = open('libs/ardour/revision.cc', 'w')
281         o.write(text)
282         o.close()
283     except IOError:
284         print('Could not open libs/ardour/revision.cc for writing\n')
285         sys.exit(-1)
286
287 def set_compiler_flags (conf,opt):
288     #
289     # Compiler flags and other system-dependent stuff
290     #
291     build_host_supports_sse = False
292
293     # Flags necessary for building
294     compiler_flags = []     # generic
295     c_flags = []            # C-specific
296     cxx_flags = []          # C++-specific
297     linker_flags = []
298
299     # Optimization flags (overridable)
300     optimization_flags = []
301
302     # Debugging flags
303     debug_flags = []
304
305     u = PLATFORM.uname ()
306     cpu = u[4]
307     platform = u[0].lower()
308     version = u[2]
309
310     # waf adds -O0 -g itself. thanks waf!
311     is_clang = conf.check_cxx(fragment = '''
312 #ifndef __clang__
313 #error
314 #endif
315 int main() { return 0; }''',
316                          features  = 'cxx',
317                          mandatory = False,
318                          execute   = False,
319                          msg       = 'Checking for clang')
320
321     if is_clang:
322         if platform == 'darwin':
323             compiler_name = 'clang-darwin'
324         else:
325             compiler_name = 'clang'
326     elif conf.env['MSVC_COMPILER']:
327             compiler_name = 'msvc'
328     else:
329         if platform == 'darwin':
330             compiler_name = 'gcc-darwin'
331         else:
332             compiler_name = 'gcc'
333
334     flags_dict = compiler_flags_dictionaries[compiler_name]
335     # Save the compiler flags because we need them at build time
336     # when we need to add compiler specific flags in certain
337     # libraries
338     conf.env['compiler_flags_dict'] = flags_dict;
339
340     autowaf.set_basic_compiler_flags (conf,flags_dict)
341
342     if conf.options.asan:
343         conf.check_cxx(cxxflags=["-fsanitize=address", "-fno-omit-frame-pointer"], linkflags=["-fsanitize=address"])
344         cxx_flags.append('-fsanitize=address')
345         cxx_flags.append('-fno-omit-frame-pointer')
346         linker_flags.append('-fsanitize=address')
347
348     if opt.gprofile:
349         debug_flags = [ flags_dict['gprofile'] ]
350
351     # OSX
352     if platform == 'darwin':
353         if re.search ("^13[.]", version) != None:
354             conf.env['build_host'] = 'mavericks'
355         elif re.search ("^14[.]", version) != None:
356             conf.env['build_host'] = 'yosemite'
357         elif re.search ("^15[.]", version) != None:
358             conf.env['build_host'] = 'el_capitan'
359         else:
360             conf.env['build_host'] = 'irrelevant'
361
362     # Autodetect
363     if opt.dist_target == 'auto':
364         if platform == 'darwin':
365             # The [.] matches to the dot after the major version, "." would match any character
366             if re.search ("^[0-7][.]", version) != None:
367                 conf.env['build_target'] = 'panther'
368             elif re.search ("^8[.]", version) != None:
369                 conf.env['build_target'] = 'tiger'
370             elif re.search ("^9[.]", version) != None:
371                 conf.env['build_target'] = 'leopard'
372             elif re.search ("^10[.]", version) != None:
373                 conf.env['build_target'] = 'snowleopard'
374             elif re.search ("^11[.]", version) != None:
375                 conf.env['build_target'] = 'lion'
376             elif re.search ("^12[.]", version) != None:
377                 conf.env['build_target'] = 'mountainlion'
378             elif re.search ("^13[.]", version) != None:
379                 conf.env['build_target'] = 'mavericks'
380             elif re.search ("^14[.]", version) != None:
381                 conf.env['build_target'] = 'yosemite'
382             else:
383                 conf.env['build_target'] = 'el_capitan'
384         else:
385             match = re.search(
386                     "(?P<cpu>i[0-6]86|x86_64|powerpc|ppc|ppc64|arm|s390x?)",
387                     cpu)
388             if (match):
389                 conf.env['build_target'] = match.group("cpu")
390                 if re.search("i[0-5]86", conf.env['build_target']):
391                     conf.env['build_target'] = "i386"
392             else:
393                 conf.env['build_target'] = 'none'
394     else:
395         conf.env['build_target'] = opt.dist_target
396
397     if conf.env['build_target'] == 'snowleopard':
398         #
399         # stupid OS X 10.6 has a bug in math.h that prevents llrint and friends
400         # from being visible.
401         #
402         compiler_flags.append ('-U__STRICT_ANSI__')
403
404     if opt.use_libcpp or conf.env['build_host'] in [ 'el_capitan' ]:
405        cxx_flags.append('--stdlib=libc++')
406        linker_flags.append('--stdlib=libc++')
407
408     if conf.options.cxx11 or conf.env['build_host'] in [ 'mavericks', 'yosemite', 'el_capitan' ]:
409         conf.check_cxx(cxxflags=["-std=c++11"])
410         cxx_flags.append('-std=c++11')
411         if platform == "darwin":
412             # Mavericks and later changed the syntax to be used when including Carbon headers,
413             # from requiring a full path to requiring just the header name.
414             cxx_flags.append('-DCARBON_FLAT_HEADERS')
415
416             if not opt.use_libcpp and not conf.env['build_host'] in [ 'el_capitan' ]:
417                 cxx_flags.append('--stdlib=libstdc++')
418                 linker_flags.append('--stdlib=libstdc++')
419             # Prevents visibility issues in standard headers
420             conf.define("_DARWIN_C_SOURCE", 1)
421         else:
422             cxx_flags.append('-DBOOST_NO_AUTO_PTR')
423
424
425     if (is_clang and platform == "darwin") or conf.env['build_host'] in ['mavericks', 'yosemite', 'el_capitan']:
426         # Silence warnings about the non-existing osx clang compiler flags
427         # -compatibility_version and -current_version.  These are Waf
428         # generated and not needed with clang
429         c_flags.append("-Qunused-arguments")
430         cxx_flags.append("-Qunused-arguments")
431
432     if (re.search ("(i[0-9]86|x86_64|AMD64)", cpu) != None) and conf.env['build_target'] != 'none':
433
434         #
435         # ARCH_X86 means anything in the x86 family from i386 to x86_64
436         # the compile-time presence of the macro _LP64 is used to
437         # distingush 32 and 64 bit assembler
438         #
439
440         compiler_flags.append ("-DARCH_X86")
441
442         if platform == 'linux' :
443
444             #
445             # determine processor flags via /proc/cpuinfo
446             #
447
448             if conf.env['build_target'] != 'i386':
449
450                 flag_line = os.popen ("cat /proc/cpuinfo | grep '^flags'").read()[:-1]
451                 x86_flags = flag_line.split (": ")[1:][0].split ()
452
453                 if "mmx" in x86_flags:
454                     compiler_flags.append ("-mmmx")
455                 if "sse" in x86_flags:
456                     build_host_supports_sse = True
457                 if "3dnow" in x86_flags:
458                     compiler_flags.append ("-m3dnow")
459
460             if cpu == "i586":
461                 compiler_flags.append ("-march=i586")
462             elif cpu == "i686":
463                 compiler_flags.append ("-march=i686")
464
465         if not is_clang and ((conf.env['build_target'] == 'i686') or (conf.env['build_target'] == 'x86_64')) and build_host_supports_sse:
466             compiler_flags.extend ([ flags_dict['sse'], flags_dict['fpmath-sse'], flags_dict['xmmintrinsics'] ])
467
468         if (conf.env['build_target'] == 'mingw'):
469             if (re.search ("(x86_64|AMD64)", cpu) != None):
470                 # on Windows sse is supported by 64 bit platforms only
471                 build_host_supports_sse = True
472
473                 # mingw GCC compiler to uses at&t (Unix specific) assembler dialect by default
474                 # compiler_flags.append (["--mmnemonic=att", "msyntax=att")
475
476                 compiler_flags.extend ([ flags_dict['sse'], flags_dict['fpmath-sse'], flags_dict['xmmintrinsics'], flags_dict['attasm'] ])
477
478     # end of processor-specific section
479
480     # optimization section
481     if conf.env['FPU_OPTIMIZATION']:
482         if sys.platform == 'darwin':
483             compiler_flags.append("-DBUILD_VECLIB_OPTIMIZATIONS");
484             conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'Accelerate'])
485         elif conf.env['build_target'] == 'i686' or conf.env['build_target'] == 'x86_64':
486                 compiler_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
487         elif conf.env['build_target'] == 'mingw':
488                 # usability of the 64 bit windows assembler depends on the compiler target,
489                 # not the build host, which in turn can only be inferred from the name
490                 # of the compiler.
491                 if re.search ('x86_64-w64', str(conf.env['CC'])) != None:
492                         compiler_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
493         if not build_host_supports_sse:
494             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)")
495
496     # end optimization section
497
498     #
499     # no VST on x86_64
500     #
501
502     if conf.env['build_target'] == 'x86_64' and opt.windows_vst:
503         print("\n\n==================================================")
504         print("64bit Windows VST support on 64bit Linux is experimental.")
505         print("(This version of ardour will not load 32bit VSTs)")
506         print("==================================================\n\n")
507
508     if conf.env['LXVST_SUPPORT'] == True:
509         if conf.env['build_target'] == 'x86_64':
510             compiler_flags.append("-DLXVST_64BIT")
511         else:
512             compiler_flags.append("-DLXVST_32BIT")
513
514     #
515     # a single way to test if we're on OS X
516     #
517
518     if conf.env['build_target'] in ['panther', 'tiger', 'leopard' ]:
519         # force tiger or later, to avoid issues on PPC which defaults
520         # back to 10.1 if we don't tell it otherwise.
521
522         compiler_flags.extend(
523                 ("-DMAC_OS_X_VERSION_MIN_REQUIRED=1040",
524                  '-mmacosx-version-min=10.4'))
525
526     elif conf.env['build_target'] in [ 'snowleopard' ]:
527         compiler_flags.extend(
528                 ("-DMAC_OS_X_VERSION_MIN_REQUIRED=1060",
529                  '-mmacosx-version-min=10.6'))
530
531     elif conf.env['build_target'] in [ 'lion', 'mountainlion' ]:
532         compiler_flags.extend(
533                 ("-DMAC_OS_X_VERSION_MIN_REQUIRED=1070",
534                  '-mmacosx-version-min=10.7'))
535
536     elif conf.env['build_target'] in [ 'mavericks', 'yosemite', 'el_capitan' ]:
537         compiler_flags.extend(
538                 ("-DMAC_OS_X_VERSION_MAX_ALLOWED=1090",
539                  "-mmacosx-version-min=10.8"))
540
541     #
542     # save off CPU element in an env
543     #
544     conf.define ('CONFIG_ARCH', cpu)
545
546     #
547     # ARCH="..." overrides all
548     #
549
550     if opt.arch != None:
551         optimization_flags = opt.arch.split()
552
553     #
554     # prepend boiler plate optimization flags that work on all architectures
555     #
556
557     optimization_flags[:0] = [flags_dict['pipe']]
558
559     # don't prepend optimization flags if "-O<something>" is present
560     prepend_opt_flags = True
561     for flag in optimization_flags:
562         if flag.startswith("-O"):
563             prepend_opt_flags = False
564             break
565
566     if prepend_opt_flags:
567         optimization_flags[:0] = flags_dict['full-optimization']
568
569     if opt.debug_symbols:
570         optimization_flags += flags_dict['debuggable']
571
572     if opt.profile:
573         optimization_flags += flags_dict['profile']
574
575     if opt.stl_debug:
576         cxx_flags.append("-D_GLIBCXX_DEBUG")
577
578     if re.search ("freebsd", sys.platform) != None:
579         linker_flags.append('-lexecinfo')
580
581     if conf.env['DEBUG_RT_ALLOC']:
582         compiler_flags.append('-DDEBUG_RT_ALLOC')
583         linker_flags.append('-ldl')
584
585     if conf.env['DEBUG_DENORMAL_EXCEPTION']:
586         compiler_flags.append('-DDEBUG_DENORMAL_EXCEPTION')
587
588     if opt.generic:
589         compiler_flags.extend(flags_dict['generic-x86'])
590         linker_flags.extend(flags_dict['generic-x86'])
591
592     if opt.ppc:
593         compiler_flags.extend(flags_dict['generic-ppc'])
594         linker_flags.extend(flags_dict['generic-ppc'])
595
596     #
597     # warnings flags
598     #
599
600     compiler_flags.extend(flags_dict['basic-warnings'])
601
602     c_flags.extend(flags_dict['extra-c-warnings'])
603     cxx_flags.extend (flags_dict['extra-cxx-warnings'])
604
605     #
606     # more boilerplate
607     #
608
609     # need ISOC9X for llabs()
610     compiler_flags.extend(
611         ('-DBOOST_SYSTEM_NO_DEPRECATED', '-D_ISOC9X_SOURCE',
612          '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64'))
613     cxx_flags.extend(
614         ('-D__STDC_LIMIT_MACROS', '-D__STDC_FORMAT_MACROS',
615          '-DCANVAS_COMPATIBILITY', '-DCANVAS_DEBUG'))
616
617     if opt.nls:
618         compiler_flags.append('-DENABLE_NLS')
619
620     # use sparingly, prefer runtime profile
621     if Options.options.program_name.lower() == "mixbus":
622         compiler_flags.append ('-DMIXBUS')
623
624     if Options.options.program_name.lower() == "mixbus32c":
625         compiler_flags.append ('-DMIXBUS')
626         compiler_flags.append ('-DMIXBUS32C')
627
628     compiler_flags.append ('-DPROGRAM_NAME="' + Options.options.program_name + '"')
629     compiler_flags.append ('-DPROGRAM_VERSION="' + PROGRAM_VERSION + '"')
630
631     conf.env['PROGRAM_NAME'] = Options.options.program_name
632
633     if opt.debug:
634         conf.env.append_value('CFLAGS', debug_flags)
635         conf.env.append_value('CXXFLAGS', debug_flags)
636     else:
637         conf.env.append_value('CFLAGS', optimization_flags)
638         conf.env.append_value('CXXFLAGS', optimization_flags)
639
640     if opt.backtrace:
641         if platform != 'darwin' and not is_clang and not Options.options.dist_target == 'mingw':
642             linker_flags += [ '-rdynamic' ]
643
644     conf.env.append_value('CFLAGS', compiler_flags)
645     conf.env.append_value('CFLAGS', c_flags)
646     conf.env.append_value('CXXFLAGS', compiler_flags)
647     conf.env.append_value('CXXFLAGS', cxx_flags)
648     conf.env.append_value('LINKFLAGS', linker_flags)
649
650 def create_resource_file(icon):
651     try:
652         text = 'IDI_ICON1 ICON DISCARDABLE "icons/' + icon + '.ico"\n'
653         o = open('gtk2_ardour/windows_icon.rc', 'w')
654         o.write(text)
655         o.close()
656     except IOError:
657         print('Could not open gtk2_ardour/windows_icon.rc for writing\n')
658         sys.exit(-1)
659
660 def is_tracks_build (conf):
661         return conf.env['PROGRAM_NAME'] == 'Tracks Live'
662
663 #----------------------------------------------------------------
664
665 # Waf stages
666
667 def options(opt):
668     opt.load('compiler_c')
669     opt.load('compiler_cxx')
670     autowaf.set_options(opt, debug_by_default=True)
671     opt.add_option('--program-name', type='string', action='store', default='Ardour', dest='program_name',
672                     help='The user-visible name of the program being built')
673     opt.add_option('--arch', type='string', action='store', dest='arch',
674                     help='Architecture-specific compiler FLAGS')
675     opt.add_option('--with-backends', type='string', action='store', default='jack', dest='with_backends',
676                     help='Specify which backend modules are to be included(jack,alsa,dummy,portaudio,coreaudio)')
677     opt.add_option('--backtrace', action='store_true', default=False, dest='backtrace',
678                     help='Compile with -rdynamic -- allow obtaining backtraces from within Ardour')
679     opt.add_option('--no-carbon', action='store_true', default=False, dest='nocarbon',
680                     help='Compile without support for AU Plugins with only CARBON UI (needed for 64bit)')
681     opt.add_option('--boost-sp-debug', action='store_true', default=False, dest='boost_sp_debug',
682                     help='Compile with Boost shared pointer debugging')
683     opt.add_option('--debug-symbols', action='store_true', default=False, dest='debug_symbols',
684                     help='Add debug-symbols to optimized builds')
685     opt.add_option('--depstack-root', type='string', default='~', dest='depstack_root',
686                     help='Directory/folder where dependency stack trees (gtk, a3) can be found (defaults to ~)')
687     opt.add_option('--dist-target', type='string', default='auto', dest='dist_target',
688                     help='Specify the target for cross-compiling [auto,none,x86,i386,i686,x86_64,tiger,leopard,mingw,msvc]')
689     opt.add_option('--fpu-optimization', action='store_true', default=True, dest='fpu_optimization',
690                     help='Build runtime checked assembler code (default)')
691     opt.add_option('--no-fpu-optimization', action='store_false', dest='fpu_optimization')
692     opt.add_option('--exports-hidden', action='store_true', default=False, dest='exports_hidden')
693     opt.add_option('--freedesktop', action='store_true', default=False, dest='freedesktop',
694                     help='Build MIME type and .desktop files as per freedesktop.org standards (will be placed in build/gtk2_ardour)')
695     opt.add_option('--freebie', action='store_true', default=False, dest='freebie',
696                     help='Build a version suitable for distribution as a zero-cost binary')
697     opt.add_option('--profile', action='store_true', default=False, dest='profile',
698                     help='Compile for use with profiling tools requiring a frame pointer')
699     opt.add_option('--gprofile', action='store_true', default=False, dest='gprofile',
700                     help='Compile for use with gprofile')
701     opt.add_option('--libjack', type='string', default="auto", dest='libjack_link',
702                     help='libjack link mode  [auto|link|weak]')
703     opt.add_option('--internal-shared-libs', action='store_true', default=True, dest='internal_shared_libs',
704                    help='Build internal libs as shared libraries')
705     opt.add_option('--internal-static-libs', action='store_false', dest='internal_shared_libs',
706                    help='Build internal libs as static libraries')
707     opt.add_option('--use-external-libs', action='store_true', default=False, dest='use_external_libs',
708                    help='Use external/system versions of some bundled libraries')
709     opt.add_option('--luadoc', action='store_true', default=False, dest='luadoc',
710                     help='Compile Tool to dump LuaBindings (needs C++11)')
711     opt.add_option('--lv2', action='store_true', default=True, dest='lv2',
712                     help='Compile with support for LV2 (if Lilv+Suil is available)')
713     opt.add_option('--no-lv2', action='store_false', dest='lv2',
714                     help='Do not compile with support for LV2')
715     opt.add_option('--lv2dir', type='string', help="install destination for builtin LV2 bundles [Default: LIBDIR/lv2]")
716     opt.add_option('--lxvst', action='store_true', default=True, dest='lxvst',
717                     help='Compile with support for linuxVST plugins')
718     opt.add_option('--no-lxvst', action='store_false', dest='lxvst',
719                     help='Compile without support for linuxVST plugins')
720     opt.add_option('--no-lrdf', action='store_true', dest='no_lrdf',
721                     help='Compile without support for LRDF LADSPA data even if present')
722     opt.add_option('--nls', action='store_true', default=True, dest='nls',
723                     help='Enable i18n (native language support) (default)')
724     opt.add_option('--no-nls', action='store_false', dest='nls')
725     opt.add_option('--phone-home', action='store_true', default=True, dest='phone_home',
726                    help='Contact ardour.org at startup for new announcements')
727     opt.add_option('--no-phone-home', action='store_false', dest='phone_home',
728                    help='Do not contact ardour.org at startup for new announcements')
729     opt.add_option('--stl-debug', action='store_true', default=False, dest='stl_debug',
730                     help='Build with debugging for the STL')
731     opt.add_option('--rt-alloc-debug', action='store_true', default=False, dest='rt_alloc_debug',
732                     help='Build with debugging for memory allocation in the real-time thread')
733     opt.add_option('--pt-timing', action='store_true', default=False, dest='pt_timing',
734                     help='Build with logging of timing in the process thread(s)')
735     opt.add_option('--denormal-exception', action='store_true', default=False, dest='denormal_exception',
736                     help='Raise a floating point exception if a denormal is detected')
737     opt.add_option('--test', action='store_true', default=False, dest='build_tests',
738                     help="Build unit tests")
739     opt.add_option('--run-tests', action='store_true', default=False, dest='run_tests',
740                     help="Run tests after build")
741     opt.add_option('--single-tests', action='store_true', default=False, dest='single_tests',
742                     help="Build a single executable for each unit test")
743     #opt.add_option('--tranzport', action='store_true', default=False, dest='tranzport',
744     # help='Compile with support for Frontier Designs Tranzport (if libusb is available)')
745     opt.add_option('--generic', action='store_true', default=False, dest='generic',
746                     help='Compile with -arch i386 (OS X ONLY)')
747     opt.add_option('--ppc', action='store_true', default=False, dest='ppc',
748                     help='Compile with -arch ppc (OS X ONLY)')
749     opt.add_option('--versioned', action='store_true', default=False, dest='versioned',
750                     help='Add revision information to executable name inside the build directory')
751     opt.add_option('--windows-vst', action='store_true', default=False, dest='windows_vst',
752                     help='Compile with support for Windows VST')
753     opt.add_option('--windows-key', type='string', action='store', dest='windows_key', default='Mod4><Super',
754                     help='X Modifier(s) (Mod1,Mod2, etc) for the Windows key (X11 builds only). ' +
755                     'Multiple modifiers must be separated by \'><\'')
756     opt.add_option('--boost-include', type='string', action='store', dest='boost_include', default='',
757                     help='directory where Boost header files can be found')
758     opt.add_option('--also-include', type='string', action='store', dest='also_include', default='',
759                     help='additional include directory where header files can be found (split multiples with commas)')
760     opt.add_option('--also-libdir', type='string', action='store', dest='also_libdir', default='',
761                     help='additional include directory where shared libraries can be found (split multiples with commas)')
762     opt.add_option('--wine-include', type='string', action='store', dest='wine_include', default='/usr/include/wine/windows',
763                     help='directory where Wine\'s Windows header files can be found')
764     opt.add_option('--noconfirm', action='store_true', default=False, dest='noconfirm',
765                     help='Do not ask questions that require confirmation during the build')
766     opt.add_option('--cxx11', action='store_true', default=False, dest='cxx11',
767                     help='Turn on c++11 compiler flags (-std=c++11)')
768     opt.add_option('--use-libc++', action='store_true', default=False, dest='use_libcpp',
769                     help='use libc++ instead of default or auto-detected stdlib')
770     opt.add_option('--address-sanitizer', action='store_true', default=False, dest='asan',
771                     help='Turn on AddressSanitizer (requires GCC >= 4.8 or clang >= 3.1)')
772     opt.add_option('--ptformat', action='store_true', default=False, dest='ptformat',
773                     help='Turn on PT session import option')
774     opt.add_option('--no-threaded-waveviews', action='store_true', default=False, dest='no_threaded_waveviews',
775                     help='Disable threaded waveview rendering')
776     opt.add_option(
777         '--qm-dsp-include', type='string', action='store',
778         dest='qm_dsp_include', default='/usr/include/qm-dsp',
779         help='directory where the header files of qm-dsp can be found')
780
781     for i in children:
782         opt.recurse(i)
783
784 def sub_config_and_use(conf, name, has_objects = True):
785     conf.recurse(name)
786     autowaf.set_local_lib(conf, name, has_objects)
787
788 def configure(conf):
789     conf.load('compiler_c')
790     conf.load('compiler_cxx')
791     if Options.options.dist_target == 'mingw':
792         conf.load('winres')
793
794     if Options.options.dist_target == 'msvc':
795         conf.env['MSVC_VERSIONS'] = ['msvc 10.0', 'msvc 9.0', 'msvc 8.0', 'msvc 7.1', 'msvc 7.0', 'msvc 6.0', ]
796         conf.env['MSVC_TARGETS'] = ['x64']
797         conf.load('msvc')
798
799     if Options.options.debug:
800         # Nuke user CFLAGS/CXXFLAGS if debug is set (they likely contain -O3, NDEBUG, etc)
801         conf.env['CFLAGS'] = []
802         conf.env['CXXFLAGS'] = []
803
804     # freedesktop translations needs itstool > 1.0.3 (-j option)
805     if Options.options.freedesktop:
806         output = subprocess.Popen("itstool --version", shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
807         o = output[0].decode('utf-8')
808         itstool = o.split(' ')[0]
809         version = o.split(' ')[1].split('.')
810         # use  distutils.version.StrictVersion  or something python to check >= 1.0.4
811         # but first make sure that all build-hosts (incl. OSX-10.5/PPC) have that python lib.
812         # lazy approach: just use major version 2.X.X
813         if itstool != "itstool" or version[0] < "2":
814             print("--freedesktop requires itstool > 2.0.0 to translate files.")
815             sys.exit(-1)
816
817     conf.env['VERSION'] = VERSION
818     conf.env['MAJOR'] = MAJOR
819     conf.env['MINOR'] = MINOR
820     conf.env['MICRO'] = MICRO
821     conf.line_just = 52
822     autowaf.set_recursive()
823     autowaf.configure(conf)
824     autowaf.display_header('Ardour Configuration')
825
826     # systems with glibc have libintl builtin. systems without require explicit
827     # linkage against libintl.
828     #
829
830     pkg_config_path = os.getenv('PKG_CONFIG_PATH')
831     user_gtk_root = os.path.expanduser (Options.options.depstack_root + '/gtk/inst')
832
833     if pkg_config_path is not None and pkg_config_path.find (user_gtk_root) >= 0:
834         # told to search user_gtk_root
835         prefinclude = ''.join ([ '-I', user_gtk_root + '/include'])
836         preflib = ''.join ([ '-L', user_gtk_root + '/lib'])
837         conf.env.append_value('CFLAGS', [ prefinclude ])
838         conf.env.append_value('CXXFLAGS',  [prefinclude ])
839         conf.env.append_value('LINKFLAGS', [ preflib ])
840         autowaf.display_msg(conf, 'Will build against private GTK dependency stack in ' + user_gtk_root, 'yes')
841     else:
842         autowaf.display_msg(conf, 'Will build against private GTK dependency stack', 'no')
843
844     if sys.platform == 'darwin':
845         conf.define ('NEED_INTL', 1)
846         autowaf.display_msg(conf, 'Will use explicit linkage against libintl in ' + user_gtk_root, 'yes')
847     else:
848         # libintl is part of the system, so use it
849         autowaf.display_msg(conf, 'Will rely on libintl built into libc', 'yes')
850
851     user_ardour_root = os.path.expanduser (Options.options.depstack_root + '/a3/inst')
852     if pkg_config_path is not None and pkg_config_path.find (user_ardour_root) >= 0:
853         # told to search user_ardour_root
854         prefinclude = ''.join ([ '-I', user_ardour_root + '/include'])
855         preflib = ''.join ([ '-L', user_ardour_root + '/lib'])
856         conf.env.append_value('CFLAGS', [ prefinclude ])
857         conf.env.append_value('CXXFLAGS',  [prefinclude ])
858         conf.env.append_value('LINKFLAGS', [ preflib ])
859         autowaf.display_msg(conf, 'Will build against private Ardour dependency stack in ' + user_ardour_root, 'yes')
860     else:
861         autowaf.display_msg(conf, 'Will build against private Ardour dependency stack', 'no')
862
863     if Options.options.freebie:
864         conf.env.append_value ('CFLAGS', '-DSILENCE_AFTER')
865         conf.env.append_value ('CXXFLAGS', '-DSILENCE_AFTER')
866         conf.define ('FREEBIE', 1)
867
868     if Options.options.lv2dir:
869         conf.env['LV2DIR'] = Options.options.lv2dir
870     else:
871         conf.env['LV2DIR'] = os.path.join(conf.env['LIBDIR'], 'ardour' + str(conf.env['MAJOR']), 'LV2')
872
873     conf.env['LV2DIR'] = os.path.normpath(conf.env['LV2DIR'])
874
875     if sys.platform == 'darwin':
876
877         # this is required, potentially, for anything we link and then relocate into a bundle
878         conf.env.append_value('LINKFLAGS', [ '-Xlinker', '-headerpad_max_install_names' ])
879
880         conf.define ('HAVE_COREAUDIO', 1)
881         conf.define ('AUDIOUNIT_SUPPORT', 1)
882
883         conf.define ('TOP_MENUBAR',1)
884
885         # It would be nice to be able to use this to force back-compatibility with 10.4
886         # but even by the time of 11, the 10.4 SDK is no longer available in any normal
887         # way.
888         #
889         #conf.env.append_value('CXXFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
890         #conf.env.append_value('CFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
891         #conf.env.append_value('LINKFLAGS_OSX', "-sysroot /Developer/SDKs/MacOSX10.4u.sdk")
892         #conf.env.append_value('LINKFLAGS_OSX', "-sysroot /Developer/SDKs/MacOSX10.4u.sdk")
893
894         conf.env.append_value('CXXFLAGS_OSX', "-msse")
895         conf.env.append_value('CFLAGS_OSX', "-msse")
896         conf.env.append_value('CXXFLAGS_OSX', "-msse2")
897         conf.env.append_value('CFLAGS_OSX', "-msse2")
898         #
899         #       TODO: The previous sse flags NEED to be based
900         #       off processor type.  Need to add in a check
901         #       for that.
902         #
903         conf.env.append_value('CXXFLAGS_OSX', '-F/System/Library/Frameworks')
904         conf.env.append_value('CXXFLAGS_OSX', '-F/Library/Frameworks')
905
906         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'AppKit'])
907         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreAudio'])
908         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreAudioKit'])
909         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreFoundation'])
910         conf.env.append_value('LINKFLAGS_OSX', ['-framework', 'CoreServices'])
911
912         conf.env.append_value('LINKFLAGS_OSX', ['-undefined', 'dynamic_lookup' ])
913         conf.env.append_value('LINKFLAGS_OSX', ['-flat_namespace'])
914
915         conf.env.append_value('CXXFLAGS_AUDIOUNITS', "-DAUDIOUNIT_SUPPORT")
916         conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'AudioToolbox', '-framework', 'AudioUnit'])
917         conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'Cocoa'])
918
919         if (
920                 # osx up to and including 10.6 (uname 10.X.X)
921                 (re.search ("^[1-9][0-9]\.", os.uname()[2]) == None or not re.search ("^10\.", os.uname()[2]) == None)
922                 and (Options.options.generic or Options.options.ppc)
923                 and not Options.options.nocarbon
924            ):
925             conf.env.append_value('CXXFLAGS_AUDIOUNITS', "-DWITH_CARBON")
926             conf.env.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'Carbon'])
927         else:
928             print ('No Carbon support available for this build\n')
929
930
931     if Options.options.luadoc:
932         conf.env['LUABINDINGDOC'] = True
933         conf.define ('LUABINDINGDOC', 1)
934
935     if Options.options.internal_shared_libs:
936         conf.define('INTERNAL_SHARED_LIBS', 1)
937
938     if Options.options.use_external_libs:
939         conf.define('USE_EXTERNAL_LIBS', 1)
940         conf.env.append_value(
941             'CXXFLAGS', '-I' + Options.options.qm_dsp_include)
942
943     if Options.options.boost_include != '':
944         conf.env.append_value('CXXFLAGS', '-I' + Options.options.boost_include)
945
946     if Options.options.also_include != '':
947         conf.env.append_value('CXXFLAGS', '-I' + Options.options.also_include)
948         conf.env.append_value('CFLAGS', '-I' + Options.options.also_include)
949
950     if Options.options.also_libdir != '':
951         conf.env.append_value('LDFLAGS', '-L' + Options.options.also_libdir)
952
953     if Options.options.boost_sp_debug:
954         conf.env.append_value('CXXFLAGS', '-DBOOST_SP_ENABLE_DEBUG_HOOKS')
955
956     # executing a test program is n/a when cross-compiling
957     if Options.options.dist_target != 'mingw':
958         if Options.options.dist_target != 'msvc':
959             if re.search ("freebsd", sys.platform) != None:
960                 conf.check_cc(function_name='dlopen', header_name='dlfcn.h', uselib_store='DL')
961             else:
962                 conf.check_cc(function_name='dlopen', header_name='dlfcn.h', lib='dl', uselib_store='DL')
963         conf.check_cxx(fragment = "#include <boost/version.hpp>\nint main(void) { return (BOOST_VERSION >= 103900 ? 0 : 1); }\n",
964                   execute = "1",
965                   mandatory = True,
966                   msg = 'Checking for boost library >= 1.39',
967                   okmsg = 'ok',
968                   errmsg = 'too old\nPlease install boost version 1.39 or higher.')
969
970     if re.search ("linux", sys.platform) != None and Options.options.dist_target != 'mingw':
971         autowaf.check_pkg(conf, 'alsa', uselib_store='ALSA')
972
973     autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.28', mandatory=True)
974     autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.2', mandatory=True)
975     autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.32.0', mandatory=True)
976     autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18', mandatory=True)
977     autowaf.check_pkg(conf, 'giomm-2.4', uselib_store='GIOMM', atleast_version='2.2', mandatory=True)
978     autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL', atleast_version='7.0.0', mandatory=True)
979     autowaf.check_pkg(conf, 'libarchive', uselib_store='ARCHIVE', atleast_version='3.0.0', mandatory=True)
980     autowaf.check_pkg(conf, 'liblo', uselib_store='LO', atleast_version='0.26', mandatory=True)
981     autowaf.check_pkg(conf, 'taglib', uselib_store='TAGLIB', atleast_version='1.6', mandatory=True)
982     autowaf.check_pkg(conf, 'vamp-sdk', uselib_store='VAMPSDK', atleast_version='2.1', mandatory=True)
983     autowaf.check_pkg(conf, 'vamp-hostsdk', uselib_store='VAMPHOSTSDK', atleast_version='2.1', mandatory=True)
984     autowaf.check_pkg(conf, 'rubberband', uselib_store='RUBBERBAND', mandatory=True)
985
986     have_rf64_riff_support = conf.check_cc(fragment = '''
987 #include <sndfile.h>
988 int main () { int x = SFC_RF64_AUTO_DOWNGRADE; return 0; }
989 ''',
990                                            features  = 'c',
991                                            mandatory = False,
992                                            execute   = False,
993                                            use = 'SNDFILE',
994                                            msg       = 'Checking for  sndfile RF64=>RIFF support',
995                                            okmsg = 'Found',
996                                            errmsg = 'Not found, no RF64-to-WAV support')
997
998     if have_rf64_riff_support:
999             conf.env.append_value('CXXFLAGS', "-DHAVE_RF64_RIFF")
1000             conf.env.append_value('CFLAGS', "-DHAVE_RF64_RIFF")
1001
1002     if Options.options.dist_target == 'mingw':
1003         Options.options.fpu_optimization = True
1004         conf.env.append_value('CFLAGS', '-DPLATFORM_WINDOWS')
1005         conf.env.append_value('CFLAGS', '-DCOMPILER_MINGW')
1006         conf.env.append_value('CXXFLAGS', '-DPLATFORM_WINDOWS')
1007         conf.env.append_value('CXXFLAGS', '-DCOMPILER_MINGW')
1008         if conf.options.cxx11:
1009             conf.env.append_value('CFLAGS', '-D_USE_MATH_DEFINES')
1010             conf.env.append_value('CXXFLAGS', '-D_USE_MATH_DEFINES')
1011             conf.env.append_value('CFLAGS', '-DWIN32')
1012             conf.env.append_value('CXXFLAGS', '-DWIN32')
1013         conf.env.append_value('LIB', 'pthread')
1014         # needed for at least libsmf
1015         conf.check_cc(function_name='htonl', header_name='winsock2.h', lib='ws2_32')
1016         conf.env.append_value('LIB', 'ws2_32')
1017         conf.env.append_value('LIB', 'winmm')
1018         # needed for mingw64 packages, not harmful on normal mingw build
1019         conf.env.append_value('LIB', 'intl')
1020         conf.check_cc(function_name='regcomp', header_name='regex.h',
1021                       lib='regex', uselib_store="REGEX", define_name='HAVE_REGEX_H')
1022         # TODO put this only where it is needed
1023         conf.env.append_value('LIB', 'regex')
1024         # TODO this should only be necessary for a debug build
1025         conf.env.append_value('LIB', 'dbghelp')
1026
1027         # work around GdkDrawable BitBlt performance issue on windows
1028         # see http://gareus.org/wiki/ardour_windows_gdk_and_cairo
1029         conf.env.append_value('CFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE')
1030         conf.env.append_value('CXXFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE')
1031         conf.define ('WINDOWS', 1)
1032
1033         have_ptw_semaphore = conf.check_cc(fragment = '''
1034 #include <pthread.h>
1035 #include <semaphore.h>
1036 int main () { return 0; }
1037 ''',
1038                                            features  = 'c',
1039                                            mandatory = False,
1040                                            execute   = False,
1041                                            msg       = 'Checking for pthread posix semaphore',
1042                                            okmsg     = 'Found',
1043                                            errmsg    = 'Not found, falling back to Windows Semaphore.')
1044
1045         #if have_ptw_semaphore:
1046         #    conf.define('USE_PTW32_SEMAPHORE', 1)
1047         #    conf.env.append_value('CFLAGS', '-DUSE_PTW32_SEMAPHORE')
1048         #    conf.env.append_value('CXXFLAGS', '-DUSE_PTW32_SEMAPHORE')
1049
1050     if Options.options.dist_target == 'msvc':
1051         conf.env.append_value('CFLAGS', '-DPLATFORM_WINDOWS')
1052         conf.env.append_value('CFLAGS', '-DCOMPILER_MSVC')
1053         conf.env.append_value('CXXFLAGS', '-DPLATFORM_WINDOWS')
1054         conf.env.append_value('CXXFLAGS', '-DCOMPILER_MSVC')
1055         # work around GdkDrawable BitBlt performance issue on windows
1056         # see http://gareus.org/wiki/ardour_windows_gdk_and_cairo
1057         conf.env.append_value('CFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE')
1058         conf.env.append_value('CXXFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE')
1059         # MORE STUFF PROBABLY NEEDED HERE
1060         conf.define ('WINDOWS', 1)
1061
1062     # Tell everyone that this is a waf build
1063
1064     conf.env.append_value('CFLAGS', '-DWAF_BUILD')
1065     conf.env.append_value('CXXFLAGS', '-DWAF_BUILD')
1066
1067     opts = Options.options
1068
1069     # (optionally) Adopt Microsoft-like convention that makes all non-explicitly exported
1070     # symbols invisible (rather than doing this all over the wscripts in the src tree)
1071     #
1072     # This won't apply to MSVC but that hasn't been added as a target yet
1073     #
1074     # We can't do this till all tests are complete, since some fail if this is et.
1075     if opts.exports_hidden:
1076         conf.define ('EXPORT_VISIBILITY_HIDDEN', True)
1077         if opts.internal_shared_libs:
1078             conf.env.append_value ('CXXFLAGS', '-fvisibility=hidden')
1079             conf.env.append_value ('CFLAGS', '-fvisibility=hidden')
1080     else:
1081         conf.define ('EXPORT_VISIBILITY_HIDDEN', False)
1082
1083     # Set up waf environment and C defines
1084     if opts.phone_home:
1085         conf.define('PHONE_HOME', 1)
1086         conf.env['PHONE_HOME'] = True
1087     if opts.fpu_optimization:
1088         conf.env['FPU_OPTIMIZATION'] = True
1089     if opts.freedesktop:
1090         conf.env['FREEDESKTOP'] = True
1091     if opts.nls:
1092         conf.define('ENABLE_NLS', 1)
1093         conf.env['ENABLE_NLS'] = True
1094     if opts.build_tests:
1095         conf.env['BUILD_TESTS'] = True
1096         conf.env['RUN_TESTS'] = opts.run_tests
1097     if opts.single_tests:
1098         conf.env['SINGLE_TESTS'] = opts.single_tests
1099     #if opts.tranzport:
1100     #    conf.env['TRANZPORT'] = 1
1101     if opts.windows_vst:
1102         conf.define('WINDOWS_VST_SUPPORT', 1)
1103         conf.env['WINDOWS_VST_SUPPORT'] = True
1104         if not Options.options.dist_target == 'mingw':
1105             conf.env.append_value('CFLAGS', '-I' + Options.options.wine_include)
1106             conf.env.append_value('CXXFLAGS', '-I' + Options.options.wine_include)
1107             autowaf.check_header(conf, 'cxx', 'windows.h', mandatory = True)
1108     if opts.lxvst:
1109         if sys.platform == 'darwin':
1110             conf.env['LXVST_SUPPORT'] = False
1111         elif Options.options.dist_target == 'mingw':
1112             conf.env['LXVST_SUPPORT'] = False
1113         else:
1114             conf.define('LXVST_SUPPORT', 1)
1115             conf.env['LXVST_SUPPORT'] = True
1116     conf.env['WINDOWS_KEY'] = opts.windows_key
1117     if opts.rt_alloc_debug:
1118         conf.define('DEBUG_RT_ALLOC', 1)
1119         conf.env['DEBUG_RT_ALLOC'] = True
1120     if opts.pt_timing:
1121         conf.define('PT_TIMING', 1)
1122         conf.env['PT_TIMING'] = True
1123     if opts.denormal_exception:
1124         conf.define('DEBUG_DENORMAL_EXCEPTION', 1)
1125         conf.env['DEBUG_DENORMAL_EXCEPTION'] = True
1126     if opts.build_tests:
1127         autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT', atleast_version='1.12.0', mandatory=True)
1128     if opts.ptformat:
1129         conf.define('PTFORMAT', 1)
1130         conf.env['PTFORMAT'] = True
1131     if opts.no_threaded_waveviews:
1132         conf.define('NO_THREADED_WAVEVIEWS', 1)
1133         conf.env['NO_THREADED_WAVEVIEWS'] = True
1134         
1135     backends = opts.with_backends.split(',')
1136
1137     if not backends:
1138         print("Must configure and build at least one backend")
1139         sys.exit(1)
1140
1141     conf.env['BACKENDS'] = backends
1142     conf.env['BUILD_JACKBACKEND'] = any('jack' in b for b in backends)
1143     conf.env['BUILD_ALSABACKEND'] = any('alsa' in b for b in backends)
1144     conf.env['BUILD_DUMMYBACKEND'] = any('dummy' in b for b in backends)
1145     conf.env['BUILD_PABACKEND'] = any('portaudio' in b for b in backends)
1146     conf.env['BUILD_CORECRAPPITA'] = any('coreaudio' in b for b in backends)
1147
1148     if re.search ("linux", sys.platform) != None and Options.options.dist_target != 'mingw' and conf.env['BUILD_PABACKEND']:
1149         print("PortAudio Backend is not for Linux")
1150         sys.exit(1)
1151
1152     if sys.platform != 'darwin' and conf.env['BUILD_CORECRAPPITA']:
1153         print("Coreaudio backend is only available for OSX")
1154         sys.exit(1)
1155
1156     if re.search ("linux", sys.platform) == None and conf.env['BUILD_ALSABACKEND']:
1157         print("ALSA Backend is only available on Linux")
1158         sys.exit(1)
1159
1160     set_compiler_flags (conf, Options.options)
1161
1162     if sys.platform == 'darwin':
1163         sub_config_and_use(conf, 'libs/appleutility')
1164     elif Options.options.dist_target != 'mingw':
1165         sub_config_and_use(conf, 'tools/sanity_check')
1166         sub_config_and_use(conf, 'tools/gccabicheck')
1167
1168     sub_config_and_use(conf, 'libs/clearlooks-newer')
1169
1170     for i in children:
1171         sub_config_and_use(conf, i)
1172
1173     # Fix utterly braindead FLAC include path to not smash assert.h
1174     conf.env['INCLUDES_FLAC'] = []
1175
1176     config_text = open('libs/ardour/config_text.cc', "w")
1177     config_text.write('''#include "ardour/ardour.h"
1178 namespace ARDOUR {
1179 const char* const ardour_config_info = "\\n\\
1180 ''')
1181
1182     def write_config_text(title, val):
1183         autowaf.display_msg(conf, title, val)
1184         config_text.write(title + ': ')
1185         config_text.write(str(val).replace ('"', '\\"'))
1186         config_text.write("\\n\\\n")
1187
1188     write_config_text('Build documentation',   conf.env['DOCS'])
1189     write_config_text('Debuggable build',      conf.env['DEBUG'])
1190     write_config_text('Export all symbols (backtrace)', opts.backtrace)
1191     write_config_text('Install prefix',        conf.env['PREFIX'])
1192     write_config_text('Strict compiler flags', conf.env['STRICT'])
1193     write_config_text('Internal Shared Libraries', conf.is_defined('INTERNAL_SHARED_LIBS'))
1194     write_config_text('Use External Libraries', conf.is_defined('USE_EXTERNAL_LIBS'))
1195     write_config_text('Library exports hidden', conf.is_defined('EXPORT_VISIBILITY_HIDDEN'))
1196
1197     write_config_text('ALSA DBus Reservation', conf.is_defined('HAVE_DBUS'))
1198     write_config_text('Architecture flags',    opts.arch)
1199     write_config_text('Aubio',                 conf.is_defined('HAVE_AUBIO'))
1200     write_config_text('AudioUnits',            conf.is_defined('AUDIOUNIT_SUPPORT'))
1201     write_config_text('Free/Demo copy',        conf.is_defined('FREEBIE'))
1202     write_config_text('Build target',          conf.env['build_target'])
1203     write_config_text('CoreAudio',             conf.is_defined('HAVE_COREAUDIO'))
1204     write_config_text('CoreAudio 10.5 compat', conf.is_defined('COREAUDIO105'))
1205     write_config_text('Debug RT allocations',  conf.is_defined('DEBUG_RT_ALLOC'))
1206     write_config_text('Debug Symbols',         conf.is_defined('debug_symbols') or conf.env['DEBUG'])
1207     write_config_text('Process thread timing', conf.is_defined('PT_TIMING'))
1208     write_config_text('Denormal exceptions',   conf.is_defined('DEBUG_DENORMAL_EXCEPTION'))
1209     write_config_text('FLAC',                  conf.is_defined('HAVE_FLAC'))
1210     write_config_text('FPU optimization',      opts.fpu_optimization)
1211     write_config_text('Freedesktop files',     opts.freedesktop)
1212     write_config_text('Libjack linking',       conf.env['libjack_link'])
1213     write_config_text('Libjack metadata',      conf.is_defined ('HAVE_JACK_METADATA'))
1214     write_config_text('Lua Binding Doc',       conf.is_defined('LUABINDINGDOC'))
1215     write_config_text('LV2 UI embedding',      conf.is_defined('HAVE_SUIL'))
1216     write_config_text('LV2 support',           conf.is_defined('LV2_SUPPORT'))
1217     write_config_text('LV2 extensions',        conf.is_defined('LV2_EXTENDED'))
1218     write_config_text('LXVST support',         conf.is_defined('LXVST_SUPPORT'))
1219     write_config_text('OGG',                   conf.is_defined('HAVE_OGG'))
1220     write_config_text('Phone home',            conf.is_defined('PHONE_HOME'))
1221     write_config_text('Program name',          opts.program_name)
1222     write_config_text('Samplerate',            conf.is_defined('HAVE_SAMPLERATE'))
1223     write_config_text('PT format',             conf.is_defined('PTFORMAT'))
1224     write_config_text('PTW32 Semaphore',       conf.is_defined('USE_PTW32_SEMAPHORE'))
1225 #    write_config_text('Soundtouch',            conf.is_defined('HAVE_SOUNDTOUCH'))
1226     write_config_text('Translation',           opts.nls)
1227 #    write_config_text('Tranzport',             opts.tranzport)
1228     write_config_text('Unit tests',            conf.env['BUILD_TESTS'])
1229     write_config_text('Mac i386 Architecture', opts.generic)
1230     write_config_text('Mac ppc Architecture',  opts.ppc)
1231     write_config_text('Windows VST support',   opts.windows_vst)
1232     write_config_text('Wiimote support',       conf.is_defined('BUILD_WIIMOTE'))
1233     write_config_text('Windows key',           opts.windows_key)
1234
1235     write_config_text('PortAudio Backend',     conf.env['BUILD_PABACKEND'])
1236     write_config_text('CoreAudio/Midi Backend',conf.env['BUILD_CORECRAPPITA'])
1237     write_config_text('ALSA Backend',          conf.env['BUILD_ALSABACKEND'])
1238     write_config_text('Dummy backend',         conf.env['BUILD_DUMMYBACKEND'])
1239     write_config_text('JACK Backend',          conf.env['BUILD_JACKBACKEND'])
1240
1241     write_config_text('C compiler flags',      conf.env['CFLAGS'])
1242     write_config_text('C++ compiler flags',    conf.env['CXXFLAGS'])
1243     write_config_text('Linker flags',          conf.env['LINKFLAGS'])
1244
1245     config_text.write ('";\n}\n')
1246     config_text.close ()
1247     print('')
1248
1249     if Options.options.dist_target == 'mingw' or Options.options.dist_target == 'msvc':
1250         create_resource_file(Options.options.program_name.lower())
1251
1252 def build(bld):
1253     create_stored_revision()
1254
1255     # add directories that contain only headers, to workaround an issue with waf
1256
1257     if not bld.is_defined('USE_EXTERNAL_LIBS'):
1258         bld.path.find_dir ('libs/libltc/ltc')
1259     bld.path.find_dir ('libs/evoral/evoral')
1260     bld.path.find_dir ('libs/surfaces/control_protocol/control_protocol')
1261     bld.path.find_dir ('libs/timecode/timecode')
1262     bld.path.find_dir ('libs/gtkmm2ext/gtkmm2ext')
1263     bld.path.find_dir ('libs/ardour/ardour')
1264     bld.path.find_dir ('libs/pbd/pbd')
1265
1266     # set up target directories
1267     lwrcase_dirname = 'ardour' + bld.env['MAJOR']
1268
1269     if bld.is_tracks_build():
1270         bld.env.append_value ('CXXFLAGS', '-DUSE_TRACKS_CODE_FEATURES')
1271         bld.env.append_value ('CFLAGS', '-DUSE_TRACKS_CODE_FEATURES')
1272         lwrcase_dirname = 'trx'
1273
1274     # configuration files go here
1275     bld.env['CONFDIR'] = os.path.join(bld.env['SYSCONFDIR'], lwrcase_dirname)
1276     # data files loaded at run time go here
1277     bld.env['DATADIR'] = os.path.join(bld.env['DATADIR'], lwrcase_dirname)
1278     # shared objects loaded at runtime go here (two aliases)
1279     bld.env['DLLDIR'] = os.path.join(bld.env['LIBDIR'], lwrcase_dirname)
1280     bld.env['LIBDIR'] = bld.env['DLLDIR']
1281     bld.env['LOCALEDIR'] = os.path.join(bld.env['DATADIR'], 'locale')
1282     bld.env['lwrcase_dirname'] = lwrcase_dirname;
1283
1284     autowaf.set_recursive()
1285
1286     if sys.platform == 'darwin':
1287         bld.recurse('libs/appleutility')
1288     elif bld.env['build_target'] != 'mingw':
1289         bld.recurse('tools/sanity_check')
1290         bld.recurse('tools/gccabicheck')
1291
1292     bld.recurse('libs/clearlooks-newer')
1293
1294     for i in children:
1295         bld.recurse(i)
1296
1297     bld.install_files (bld.env['CONFDIR'], 'system_config')
1298
1299     if bld.env['RUN_TESTS']:
1300         bld.add_post_fun(test)
1301
1302 def i18n(bld):
1303     print(bld.env)
1304     bld.recurse (i18n_children)
1305
1306 def i18n_pot(bld):
1307     bld.recurse (i18n_children)
1308
1309 def i18n_po(bld):
1310     bld.recurse (i18n_children)
1311
1312 def i18n_mo(bld):
1313     bld.recurse (i18n_children)
1314
1315 def tarball(bld):
1316     create_stored_revision()
1317
1318 def test(bld):
1319     subprocess.call("gtk2_ardour/artest")