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