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