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