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