11 # Variables for 'waf dist'
32 'libs/clearlooks-newer',
46 def fetch_svn_revision (path
):
47 cmd
= "LANG= svn info " + path
+ " | awk '/^Revision:/ { print $2}'"
48 return subprocess
.Popen(cmd
, shell
=True, stderr
=subprocess
.STDOUT
, stdout
=subprocess
.PIPE
).communicate()[0].splitlines()
50 def fetch_gcc_version ():
51 cmd
= "LANG= gcc --version"
52 output
= subprocess
.Popen(cmd
, shell
=True, stderr
=subprocess
.STDOUT
, stdout
=subprocess
.PIPE
).communicate()[0].splitlines()
53 o
= output
[0].decode('utf-8')
54 version
= o
.split(' ')[2].split('.')
57 def fetch_git_revision (path
):
58 cmd
= "LANG= git log --abbrev HEAD^..HEAD " + path
59 output
= subprocess
.Popen(cmd
, shell
=True, stderr
=subprocess
.STDOUT
, stdout
=subprocess
.PIPE
).communicate()[0].splitlines()
60 o
= output
[0].decode('utf-8')
61 rev
= o
.replace ("commit", "git")[0:10]
64 if "git-svn-id" in line
:
65 line
= line
.split('@')[1].split(' ')
71 def fetch_bzr_revision (path
):
72 cmd
= subprocess
.Popen("LANG= bzr log -l 1 " + path
, stdout
=subprocess
.PIPE
, shell
=True)
73 out
= cmd
.communicate()[0]
74 svn
= re
.search('^svn revno: [0-9]*', out
, re
.MULTILINE
)
77 return string
.lstrip(str, chars
)
79 def create_stored_revision():
81 if os
.path
.exists('.svn'):
82 rev
= fetch_svn_revision('.');
83 elif os
.path
.exists('.git'):
84 rev
= fetch_git_revision('.');
85 elif os
.path
.exists('.bzr'):
86 rev
= fetch_bzr_revision('.');
87 print("Revision: %s", rev
)
88 elif os
.path
.exists('libs/ardour/svn_revision.cc'):
89 print("Using packaged svn revision")
92 print("Missing libs/ardour/svn_revision.cc. Blame the packager.")
96 text
= '#include "ardour/svn_revision.h"\n'
97 text
+= 'namespace ARDOUR { const char* svn_revision = \"%s\"; }\n' % rev
98 print('Writing svn revision info to libs/ardour/svn_revision.cc')
99 o
= open('libs/ardour/svn_revision.cc', 'w')
103 print('Could not open libs/ardour/svn_revision.cc for writing\n')
106 def set_compiler_flags (conf
,opt
):
108 # Compiler flags and other system-dependent stuff
111 build_host_supports_sse
= False
112 optimization_flags
= []
115 # guess at the platform, used to define compiler flags
117 config_guess
= os
.popen("tools/config.guess").read()[:-1]
123 config
= config_guess
.split ("-")
125 autowaf
.display_msg(conf
, "System Triple", config_guess
)
128 debug_flags
= [ '-pg' ]
130 if config
[config_arch
] != 'apple':
131 debug_flags
= [ '-rdynamic' ] # waf adds -O0 -g itself. thanks waf!
134 if opt
.dist_target
== 'auto':
135 if config
[config_arch
] == 'apple':
136 # The [.] matches to the dot after the major version, "." would match any character
137 if re
.search ("darwin[0-7][.]", config
[config_kernel
]) != None:
138 conf
.define ('build_target', 'panther')
139 elif re
.search ("darwin8[.]", config
[config_kernel
]) != None:
140 conf
.define ('build_target', 'tiger')
142 conf
.define ('build_target', 'leopard')
144 if re
.search ("x86_64", config
[config_cpu
]) != None:
145 conf
.define ('build_target', 'x86_64')
146 elif re
.search("i[0-5]86", config
[config_cpu
]) != None:
147 conf
.define ('build_target', 'i386')
148 elif re
.search("powerpc", config
[config_cpu
]) != None:
149 conf
.define ('build_target', 'powerpc')
151 conf
.define ('build_target', 'i686')
153 conf
.define ('build_target', opt
.dist_target
)
155 if config
[config_cpu
] == 'powerpc' and conf
.env
['build_target'] != 'none':
157 # Apple/PowerPC optimization options
159 # -mcpu=7450 does not reliably work with gcc 3.*
161 if opt
.dist_target
== 'panther' or opt
.dist_target
== 'tiger':
162 if config
[config_arch
] == 'apple':
163 # optimization_flags.extend ([ "-mcpu=7450", "-faltivec"])
164 # to support g3s but still have some optimization for above
165 optimization_flags
.extend ([ "-mcpu=G3", "-mtune=7450"])
167 optimization_flags
.extend ([ "-mcpu=7400", "-maltivec", "-mabi=altivec"])
169 optimization_flags
.extend([ "-mcpu=750", "-mmultiple" ])
170 optimization_flags
.extend (["-mhard-float", "-mpowerpc-gfxopt"])
171 optimization_flags
.extend (["-Os"])
173 elif ((re
.search ("i[0-9]86", config
[config_cpu
]) != None) or (re
.search ("x86_64", config
[config_cpu
]) != None)) and conf
.env
['build_target'] != 'none':
177 # ARCH_X86 means anything in the x86 family from i386 to x86_64
178 # USE_X86_64_ASM is used to distingush 32 and 64 bit assembler
181 if (re
.search ("(i[0-9]86|x86_64)", config
[config_cpu
]) != None):
182 debug_flags
.append ("-DARCH_X86")
183 optimization_flags
.append ("-DARCH_X86")
185 if config
[config_kernel
] == 'linux' :
188 # determine processor flags via /proc/cpuinfo
191 if conf
.env
['build_target'] != 'i386':
193 flag_line
= os
.popen ("cat /proc/cpuinfo | grep '^flags'").read()[:-1]
194 x86_flags
= flag_line
.split (": ")[1:][0].split ()
196 if "mmx" in x86_flags
:
197 optimization_flags
.append ("-mmmx")
198 if "sse" in x86_flags
:
199 build_host_supports_sse
= True
200 if "3dnow" in x86_flags
:
201 optimization_flags
.append ("-m3dnow")
203 if config
[config_cpu
] == "i586":
204 optimization_flags
.append ("-march=i586")
205 elif config
[config_cpu
] == "i686":
206 optimization_flags
.append ("-march=i686")
208 if ((conf
.env
['build_target'] == 'i686') or (conf
.env
['build_target'] == 'x86_64')) and build_host_supports_sse
:
209 optimization_flags
.extend (["-msse", "-mfpmath=sse", "-DUSE_XMMINTRIN"])
210 debug_flags
.extend (["-msse", "-mfpmath=sse", "-DUSE_XMMINTRIN"])
212 # end of processor-specific section
214 # optimization section
215 if conf
.env
['FPU_OPTIMIZATION']:
216 if conf
.env
['build_target'] == 'tiger' or conf
.env
['build_target'] == 'leopard':
217 optimization_flags
.append ("-DBUILD_VECLIB_OPTIMIZATIONS");
218 debug_flags
.append ("-DBUILD_VECLIB_OPTIMIZATIONS");
219 conf
.env
.append_value('LINKFLAGS', "-framework Accelerate")
220 elif conf
.env
['build_target'] == 'i686' or conf
.env
['build_target'] == 'x86_64':
221 optimization_flags
.append ("-DBUILD_SSE_OPTIMIZATIONS")
222 debug_flags
.append ("-DBUILD_SSE_OPTIMIZATIONS")
223 elif conf
.env
['build_target'] == 'x86_64':
224 optimization_flags
.append ("-DUSE_X86_64_ASM")
225 debug_flags
.append ("-DUSE_X86_64_ASM")
226 if not build_host_supports_sse
:
227 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)")
229 # check this even if we aren't using FPU optimization
230 if not conf
.env
['HAVE_POSIX_MEMALIGN']:
231 optimization_flags
.append("-DNO_POSIX_MEMALIGN")
233 # end optimization section
239 if conf
.env
['build_target'] == 'x86_64' and opt
.vst
:
240 print("\n\n==================================================")
241 print("You cannot use VST plugins with a 64 bit host. Please run waf with --vst=0")
242 print("\nIt is theoretically possible to build a 32 bit host on a 64 bit system.")
243 print("However, this is tricky and not recommended for beginners.")
247 # a single way to test if we're on OS X
250 if conf
.env
['build_target'] in ['panther', 'tiger', 'leopard' ]:
251 conf
.define ('IS_OSX', 1)
252 # force tiger or later, to avoid issues on PPC which defaults
253 # back to 10.1 if we don't tell it otherwise.
254 conf
.env
.append_value('CCFLAGS', "-DMAC_OS_X_VERSION_MIN_REQUIRED=1040")
257 conf
.define ('IS_OSX', 0)
260 # save off guessed arch element in an env
262 conf
.define ('CONFIG_ARCH', config
[config_arch
])
265 # ARCH="..." overrides all
269 optimization_flags
= opt
.arch
.split()
272 # prepend boiler plate optimization flags that work on all architectures
275 optimization_flags
[:0] = [
277 "-fomit-frame-pointer",
284 conf
.env
.append_value('CCFLAGS', debug_flags
)
285 conf
.env
.append_value('CXXFLAGS', debug_flags
)
286 conf
.env
.append_value('LINKFLAGS', debug_flags
)
288 conf
.env
.append_value('CCFLAGS', optimization_flags
)
289 conf
.env
.append_value('CXXFLAGS', optimization_flags
)
290 conf
.env
.append_value('LINKFLAGS', optimization_flags
)
293 conf
.env
.append_value('CXXFLAGS', "-D_GLIBCXX_DEBUG")
295 if conf
.env
['DEBUG_RT_ALLOC']:
296 conf
.env
.append_value('CCFLAGS', '-DDEBUG_RT_ALLOC')
297 conf
.env
.append_value('CXXFLAGS', '-DDEBUG_RT_ALLOC')
298 conf
.env
.append_value('LINKFLAGS', '-ldl')
301 conf
.env
.append_value('CCFLAGS', "-arch i386 -arch ppc")
302 conf
.env
.append_value('CXXFLAGS', "-arch i386 -arch ppc")
303 conf
.env
.append_value('LINKFLAGS', "-arch i386 -arch ppc")
309 conf
.env
.append_value('CCFLAGS', "-Wall")
310 conf
.env
.append_value('CXXFLAGS', [ '-Wall', '-Woverloaded-virtual'])
313 flags
= [ '-Wextra' ]
314 conf
.env
.append_value('CCFLAGS', flags
)
315 conf
.env
.append_value('CXXFLAGS', flags
)
322 conf
.env
.append_value('CCFLAGS', '-D_LARGEFILE64_SOURCE')
323 conf
.env
.append_value('CCFLAGS', '-D_FILE_OFFSET_BITS=64')
324 conf
.env
.append_value('CXXFLAGS', '-D_LARGEFILE64_SOURCE')
325 conf
.env
.append_value('CXXFLAGS', '-D_FILE_OFFSET_BITS=64')
327 conf
.env
.append_value('CXXFLAGS', '-D__STDC_LIMIT_MACROS')
328 conf
.env
.append_value('CXXFLAGS', '-D__STDC_FORMAT_MACROS')
331 conf
.env
.append_value('CXXFLAGS', '-DENABLE_NLS')
332 conf
.env
.append_value('CCFLAGS', '-DENABLE_NLS')
334 #----------------------------------------------------------------
338 def set_options(opt
):
339 autowaf
.set_options(opt
)
340 opt
.add_option('--program-name', type='string', action
='store', default
='Ardour', dest
='program_name',
341 help='The user-visible name of the program being built')
342 opt
.add_option('--arch', type='string', action
='store', dest
='arch',
343 help='Architecture-specific compiler flags')
344 opt
.add_option('--boost-sp-debug', action
='store_true', default
=False, dest
='boost_sp_debug',
345 help='Compile with Boost shared pointer debugging')
346 opt
.add_option('--dist-target', type='string', default
='auto', dest
='dist_target',
347 help='Specify the target for cross-compiling [auto,none,x86,i386,i686,x86_64,powerpc,tiger,leopard]')
348 opt
.add_option('--extra-warn', action
='store_true', default
=False, dest
='extra_warn',
349 help='Build with even more compiler warning flags')
350 opt
.add_option('--fpu-optimization', action
='store_true', default
=True, dest
='fpu_optimization',
351 help='Build runtime checked assembler code (default)')
352 opt
.add_option('--no-fpu-optimization', action
='store_false', dest
='fpu_optimization')
353 opt
.add_option('--freedesktop', action
='store_true', default
=False, dest
='freedesktop',
354 help='Install MIME type, icons and .desktop file as per freedesktop.org standards')
355 opt
.add_option('--freesound', action
='store_true', default
=False, dest
='freesound',
356 help='Include Freesound database lookup')
357 opt
.add_option('--gprofile', action
='store_true', default
=False, dest
='gprofile',
358 help='Compile for use with gprofile')
359 opt
.add_option('--lv2', action
='store_true', default
=False, dest
='lv2',
360 help='Compile with support for LV2 (if slv2 is available)')
361 opt
.add_option('--nls', action
='store_true', default
=True, dest
='nls',
362 help='Enable i18n (native language support) (default)')
363 opt
.add_option('--no-nls', action
='store_false', dest
='nls')
364 opt
.add_option('--phone-home', action
='store_false', default
=True, dest
='phone_home')
365 opt
.add_option('--stl-debug', action
='store_true', default
=False, dest
='stl_debug',
366 help='Build with debugging for the STL')
367 opt
.add_option('--rt-alloc-debug', action
='store_true', default
=False, dest
='rt_alloc_debug',
368 help='Build with debugging for memory allocation in the real-time thread')
369 opt
.add_option('--test', action
='store_true', default
=False, dest
='build_tests',
370 help="Build unit tests")
371 opt
.add_option('--tranzport', action
='store_true', default
=False, dest
='tranzport',
372 help='Compile with support for Frontier Designs Tranzport (if libusb is available)')
373 opt
.add_option('--universal', action
='store_true', default
=False, dest
='universal',
374 help='Compile as universal binary (requires that external libraries are universal)')
375 opt
.add_option('--versioned', action
='store_true', default
=False, dest
='versioned',
376 help='Add revision information to executable name inside the build directory')
377 opt
.add_option('--vst', action
='store_true', default
=False, dest
='vst',
378 help='Compile with support for VST')
379 opt
.add_option('--wiimote', action
='store_true', default
=False, dest
='wiimote',
380 help='Build the wiimote control surface')
381 opt
.add_option('--windows-key', type='string', action
='store', dest
='windows_key', default
='Mod4><Super',
382 help='X Modifier(s) (Mod1,Mod2, etc) for the Windows key (X11 builds only). ' +
383 'Multiple modifiers must be separated by \'><\'')
384 opt
.add_option('--boost-include', type='string', action
='store', dest
='boost_include', default
='',
385 help='directory where Boost header files can be found')
386 opt
.add_option('--wine-include', type='string', action
='store', dest
='wine_include', default
='/usr/include/wine/windows',
387 help='directory where Wine\'s Windows header files can be found')
391 def sub_config_and_use(conf
, name
, has_objects
= True):
392 conf
.sub_config(name
)
393 autowaf
.set_local_lib(conf
, name
, has_objects
)
396 create_stored_revision()
397 conf
.env
['VERSION'] = VERSION
399 autowaf
.set_recursive()
400 autowaf
.configure(conf
)
401 autowaf
.display_header('Ardour Configuration')
403 gcc_versions
= fetch_gcc_version()
404 if not Options
.options
.debug
and gcc_versions
[0] == '4' and gcc_versions
[1] > '4':
405 print('Version 4.5 of gcc is not ready for use when compiling Ardour with optimization.')
406 print('Please use a different version or re-configure with --debug')
409 if sys
.platform
== 'darwin':
411 conf
.define ('AUDIOUNITS', 1)
412 conf
.define ('AU_STATE_SUPPORT', 1)
413 conf
.define ('COREAUDIO', 1)
414 conf
.define ('GTKOSX', 1)
415 conf
.define ('TOP_MENUBAR',1)
416 conf
.define ('GTKOSX',1)
418 conf
.env
.append_value('CXXFLAGS_APPLEUTILITY', '-I../libs')
420 # Define OSX as a uselib to use when compiling
421 # on Darwin to add all applicable flags at once
423 conf
.env
.append_value('CXXFLAGS_OSX', '-DMAC_OS_X_VERSION_MIN_REQUIRED=1040')
424 conf
.env
.append_value('CCFLAGS_OSX', '-DMAC_OS_X_VERSION_MIN_REQUIRED=1040')
425 conf
.env
.append_value('CXXFLAGS_OSX', '-mmacosx-version-min=10.4')
426 conf
.env
.append_value('CCFLAGS_OSX', '-mmacosx-version-min=10.4')
428 #conf.env.append_value('CXXFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
429 #conf.env.append_value('CCFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
430 #conf.env.append_value('LINKFLAGS_OSX', "-isysroot /Developer/SDKs/MacOSX10.4u.sdk")
432 #conf.env.append_value('LINKFLAGS_OSX', "-sysroot /Developer/SDKs/MacOSX10.4u.sdk")
434 conf
.env
.append_value('CXXFLAGS_OSX', "-msse")
435 conf
.env
.append_value('CCFLAGS_OSX', "-msse")
436 conf
.env
.append_value('CXXFLAGS_OSX', "-msse2")
437 conf
.env
.append_value('CCFLAGS_OSX', "-msse2")
439 # TODO: The previous sse flags NEED to be based
440 # off processor type. Need to add in a check
443 conf
.env
.append_value('CXXFLAGS_OSX', '-F/System/LibraryFrameworks')
444 conf
.env
.append_value('CXXFLAGS_OSX', '-F/Library/Frameworks')
446 conf
.env
.append_value('LINKFLAGS_OSX', ['-framework', 'AppKit'])
447 conf
.env
.append_value('LINKFLAGS_OSX', ['-framework', 'CoreAudio'])
448 conf
.env
.append_value('LINKFLAGS_OSX', ['-framework', 'CoreFoundation'])
449 conf
.env
.append_value('LINKFLAGS_OSX', ['-framework', 'CoreServices'])
451 conf
.env
.append_value('LINKFLAGS_OSX', ['-undefined', 'suppress' ])
452 conf
.env
.append_value('LINKFLAGS_OSX', '-flat_namespace')
454 conf
.env
.append_value('LINKFLAGS_GTKOSX', [ '-Xlinker', '-headerpad'])
455 conf
.env
.append_value('LINKFLAGS_GTKOSX', ['-Xlinker', '2048'])
456 conf
.env
.append_value('CPPPATH_GTKOSX', "/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/")
458 conf
.env
.append_value('CXXFLAGS_AUDIOUNITS', "-DHAVE_AUDIOUNITS")
459 conf
.env
.append_value('LINKFLAGS_AUDIOUNITS', ['-framework', 'Audiotoolbox', '-framework', 'AudioUnit'])
461 if Options
.options
.boost_include
!= '':
462 conf
.env
.append_value('CPPPATH', Options
.options
.boost_include
)
464 autowaf
.check_header(conf
, 'boost/signals2.hpp', mandatory
= True)
466 if Options
.options
.boost_sp_debug
:
467 conf
.env
.append_value('CXXFLAGS_BOOST', '-DBOOST_SP_ENABLE_DEBUG_HOOKS')
469 autowaf
.check_header(conf
, 'jack/session.h', define
="JACK_SESSION", mandatory
= False)
471 conf
.check_cc(fragment
= "#include <boost/version.hpp>\nint main(void) { return (BOOST_VERSION >= 103900 ? 0 : 1); }\n",
474 msg
= 'Checking for boost library >= 1.39',
476 errmsg
= 'too old\nPlease install boost version 1.39 or higher.')
478 autowaf
.check_pkg(conf
, 'cppunit', uselib_store
='CPPUNIT', atleast_version
='1.12.0', mandatory
=False)
479 autowaf
.check_pkg(conf
, 'glib-2.0', uselib_store
='GLIB', atleast_version
='2.2')
480 autowaf
.check_pkg(conf
, 'gthread-2.0', uselib_store
='GTHREAD', atleast_version
='2.2')
481 autowaf
.check_pkg(conf
, 'glibmm-2.4', uselib_store
='GLIBMM', atleast_version
='2.14.0')
482 autowaf
.check_pkg(conf
, 'sndfile', uselib_store
='SNDFILE', atleast_version
='1.0.18')
484 if sys
.platform
== 'darwin':
485 sub_config_and_use(conf
, 'libs/appleutility')
487 sub_config_and_use(conf
, i
)
489 # Fix utterly braindead FLAC include path to not smash assert.h
490 conf
.env
['CPPPATH_FLAC'] = []
492 conf
.check_cc(function_name
='dlopen', header_name
='dlfcn.h', linkflags
='-ldl', uselib_store
='DL')
493 conf
.check_cc(function_name
='curl_global_init', header_name
='curl/curl.h', linkflags
='-lcurl', uselib_store
='CURL')
495 # Tell everyone that this is a waf build
497 conf
.env
.append_value('CCFLAGS', '-DWAF_BUILD')
498 conf
.env
.append_value('CXXFLAGS', '-DWAF_BUILD')
500 # debug builds should not call home
502 opts
= Options
.options
504 opts
.phone_home
= False;
506 autowaf
.display_msg(conf
, 'Build Target', conf
.env
['build_target'])
507 autowaf
.display_msg(conf
, 'Architecture flags', opts
.arch
)
508 autowaf
.display_msg(conf
, 'Aubio', bool(conf
.env
['HAVE_AUBIO']))
509 autowaf
.display_msg(conf
, 'CoreAudio', bool(conf
.env
['HAVE_COREAUDIO']))
510 autowaf
.display_msg(conf
, 'FLAC', bool(conf
.env
['HAVE_FLAC']))
511 autowaf
.display_msg(conf
, 'Phone Home', opts
.phone_home
)
513 conf
.env
['PHONE_HOME'] = opts
.phone_home
514 autowaf
.display_msg(conf
, 'FPU Optimization', opts
.fpu_optimization
)
515 if opts
.fpu_optimization
:
516 conf
.define('FPU_OPTIMIZATION', 1)
517 autowaf
.display_msg(conf
, 'Freedesktop Files', opts
.freedesktop
)
518 autowaf
.display_msg(conf
, 'Freesound', opts
.freesound
)
520 conf
.define('FREESOUND',1)
521 autowaf
.display_msg(conf
, 'LV2 Support', bool(conf
.env
['HAVE_SLV2']))
522 autowaf
.display_msg(conf
, 'OGG', bool(conf
.env
['HAVE_OGG']))
523 autowaf
.display_msg(conf
, 'Rubberband', bool(conf
.env
['HAVE_RUBBERBAND']))
524 autowaf
.display_msg(conf
, 'Samplerate', bool(conf
.env
['HAVE_SAMPLERATE']))
525 autowaf
.display_msg(conf
, 'Soundtouch', bool(conf
.env
['HAVE_SOUNDTOUCH']))
526 autowaf
.display_msg(conf
, 'Translation', opts
.nls
)
528 conf
.define ('ENABLE_NLS', 1)
529 autowaf
.display_msg(conf
, 'Tranzport', opts
.tranzport
)
531 conf
.env
['BUILD_TESTS'] = opts
.build_tests
532 autowaf
.display_msg(conf
, 'Unit Tests', bool(conf
.env
['BUILD_TESTS']) and bool (conf
.env
['HAVE_CPPUNIT']))
534 conf
.define('TRANZPORT', 1)
535 autowaf
.display_msg(conf
, 'Universal Binary', opts
.universal
)
536 autowaf
.display_msg(conf
, 'VST Support', opts
.vst
)
538 conf
.define('VST_SUPPORT', 1)
539 conf
.env
.append_value('CPPPATH', Options
.options
.wine_include
)
540 autowaf
.check_header(conf
, 'windows.h', mandatory
= True)
541 if bool(conf
.env
['JACK_SESSION']):
542 conf
.define ('HAVE_JACK_SESSION', 1)
543 autowaf
.display_msg(conf
, 'Wiimote Support', opts
.wiimote
)
545 conf
.define('WIIMOTE',1)
546 conf
.define('WINDOWS_KEY', opts
.windows_key
)
547 autowaf
.display_msg(conf
, 'Windows Key', opts
.windows_key
)
548 conf
.env
['PROGRAM_NAME'] = opts
.program_name
549 autowaf
.display_msg(conf
, 'Program Name', opts
.program_name
)
550 if opts
.rt_alloc_debug
:
551 conf
.define('DEBUG_RT_ALLOC', 1)
553 set_compiler_flags (conf
, Options
.options
)
555 autowaf
.display_msg(conf
, 'C Compiler flags', conf
.env
['CCFLAGS'])
556 autowaf
.display_msg(conf
, 'C++ Compiler flags', conf
.env
['CXXFLAGS'])
559 # and dump the same stuff to a file for use in the build
561 config_text
= open ('libs/ardour/config_text.cc',"w")
562 config_text
.write ('#include "ardour/ardour.h"\n\nnamespace ARDOUR {\nconst char* const ardour_config_info = "\\n\\\n')
563 config_text
.write ("Install prefix: "); config_text
.write (str (conf
.env
['PREFIX'])); config_text
.write ("\\n\\\n")
564 config_text
.write ("Debuggable build: "); config_text
.write (str (str(conf
.env
['DEBUG']))); config_text
.write ("\\n\\\n")
565 config_text
.write ("Strict compiler flags: "); config_text
.write (str (str(conf
.env
['STRICT']))); config_text
.write ("\\n\\\n")
566 config_text
.write ("Build documentation: "); config_text
.write (str (str(conf
.env
['DOCS']))); config_text
.write ("\\n\\\n")
567 config_text
.write ('Build target: '); config_text
.write (str (conf
.env
['build_target'])); config_text
.write ("\\n\\\n")
568 config_text
.write ('Architecture flags: '); config_text
.write (str (opts
.arch
)); config_text
.write ("\\n\\\n")
569 config_text
.write ('Aubio: '); config_text
.write (str (bool(conf
.env
['HAVE_AUBIO']))); config_text
.write ("\\n\\\n")
570 config_text
.write ('FPU optimization: '); config_text
.write (str (opts
.fpu_optimization
)); config_text
.write ("\\n\\\n")
571 config_text
.write ('Freedesktop files: '); config_text
.write (str (opts
.freedesktop
)); config_text
.write ("\\n\\\n")
572 config_text
.write ('Freesound: '); config_text
.write (str (opts
.freesound
)); config_text
.write ("\\n\\\n")
573 config_text
.write ('LV2 support: '); config_text
.write (str (bool(conf
.env
['HAVE_SLV2']))); config_text
.write ("\\n\\\n")
574 config_text
.write ('Rubberband: '); config_text
.write (str (bool(conf
.env
['HAVE_RUBBERBAND']))); config_text
.write ("\\n\\\n")
575 config_text
.write ('Samplerate: '); config_text
.write (str (bool(conf
.env
['HAVE_SAMPLERATE']))); config_text
.write ("\\n\\\n")
576 config_text
.write ('Soundtouch: '); config_text
.write (str (bool(conf
.env
['HAVE_SOUNDTOUCH']))); config_text
.write ("\\n\\\n")
577 config_text
.write ('Translation: '); config_text
.write (str (opts
.nls
)); config_text
.write ("\\n\\\n")
578 config_text
.write ('Tranzport: '); config_text
.write (str (opts
.tranzport
)); config_text
.write ("\\n\\\n")
579 config_text
.write ('Universal binary: '); config_text
.write (str (opts
.universal
)); config_text
.write ("\\n\\\n")
580 config_text
.write ('VST support: '); config_text
.write (str (opts
.vst
)); config_text
.write ("\\n\\\n")
581 config_text
.write ('Wiimote support: '); config_text
.write (str (opts
.wiimote
)); config_text
.write ("\\n\\\n")
582 config_text
.write ('Windows key: '); config_text
.write (str (opts
.windows_key
)); config_text
.write ("\\n\\\n")
583 config_text
.write ('C compiler flags: '); config_text
.write (str (conf
.env
['CCFLAGS'])); config_text
.write ("\\n\\\n")
584 config_text
.write ('C++ compiler flags: '); config_text
.write (str (conf
.env
['CXXFLAGS'])); config_text
.write ("\\n\\\n")
585 config_text
.write ('Phone home: '); config_text
.write (str (bool(conf
.env
['PHONE_HOME']))); config_text
.write ("\\n\\\n")
586 config_text
.write ('JACK session support: '); config_text
.write (str (bool(conf
.env
['JACK_SESSION']))); config_text
.write ("\\n\\\n")
587 config_text
.write ('";}\n')
591 # add directories that contain only headers, to workaround an issue with waf
593 bld
.path
.find_dir ('libs/evoral/evoral')
594 bld
.path
.find_dir ('libs/vamp-sdk/vamp-sdk')
595 bld
.path
.find_dir ('libs/surfaces/control_protocol/control_protocol')
596 bld
.path
.find_dir ('libs/timecode/timecode')
597 bld
.path
.find_dir ('libs/rubberband/rubberband')
598 bld
.path
.find_dir ('libs/gtkmm2ext/gtkmm2ext')
599 bld
.path
.find_dir ('libs/ardour/ardour')
600 bld
.path
.find_dir ('libs/taglib/taglib')
601 bld
.path
.find_dir ('libs/pbd/pbd')
603 autowaf
.set_recursive()
604 if sys
.platform
== 'darwin':
605 bld
.add_subdirs('libs/appleutility')
609 # ideally, we'd like to use the OS-provided MIDI API
610 # for default ports. that doesn't work on at least
611 # Fedora (Nov 9th, 2009) so use JACK MIDI on linux.
613 if sys
.platform
== 'darwin':
615 'MIDITAG' : 'control',
616 'MIDITYPE' : 'coremidi',
617 'JACK_INPUT' : 'auditioner'
621 'MIDITAG' : 'control',
623 'JACK_INPUT' : 'auditioner'
626 obj
= bld
.new_task_gen('subst')
627 obj
.source
= 'ardour.rc.in'
628 obj
.target
= 'ardour_system.rc'
629 obj
.dict = rc_subst_dict
630 obj
.install_path
= '${CONFIGDIR}/ardour3'
633 bld
.recurse (i18n_children
)