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