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