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