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