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