X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=wscript;h=4bd7776632a09bbccefba054b6af222224b964f7;hb=8bd53e2edb5212b32732789312b964fd24e305b9;hp=df1aea53e41d971e2683fcfc55ee7e721f0f33e7;hpb=b630cc81bcecec8b478059e7273f9aa00e18aded;p=ardour.git diff --git a/wscript b/wscript index df1aea53e4..4bd7776632 100644 --- a/wscript +++ b/wscript @@ -9,6 +9,105 @@ import sys import platform as PLATFORM from waflib.Tools import winres +compiler_flags_dictionaries= { + 'gcc' : { + # Flags required when building a debug build + 'debuggable' : [ '-O0', '-g' ], + # Flags required for the linker (if any) when building a debug build + 'linker-debuggable' : '', + # Flags required when building a non-debug optimized build + 'nondebuggable' : '-DNDEBUG', + # Flags required to enable profiling at runtime + 'profile' : '-pg', + # Flags required to disable warnings about unused arguments to function calls + 'silence-unused-arguments' : '', + # Flags required to use SSE unit for general math + 'sse' : '-msse', + # Flags required to use SSE unit for floating point math + 'fpmath-sse' : '-mfpmath=sse', + # Flags required to use XMM Intrinsics + 'xmmintrinsics' : '-DUSE_XMMINTRIN', + # Flags to use posix pipes between compiler stages + 'pipe' : '-pipe', + # Flags for maximally optimized build + 'full-optimization' : [ '-O3', '-fomit-frame-pointer', '-ffast-math', '-fstrength-reduce', ], + # Flag to ensure that compiler error output includes column/line numbers + 'show-column' : '-fshow-column', + # Flags required to build for x86 only (OS X feature) + 'generic-x86' : '', + # Flags required to build for PowerPC only (OS X feature) + 'generic-ppc' : '', + # All flags required to get basic warnings to be generated by the compiler + 'basic-warnings' : [ '-Wall', '-Wpointer-arith', '-Wcast-qual', '-Wcast-align', '-Wno-unused-parameter' ], + # Any additional flags for warnings that are specific to C (not C++) + 'extra-c-warnings' : [ '-Wstrict-prototypes', '-Wmissing-prototypes' ], + # Any additional flags for warnings that are specific to C++ (not C) + 'extra-cxx-warnings' : [ '-Woverloaded-virtual', '-Wno-unused-local-typedefs' ], + # Flags used for "strict" compilation, C and C++ (i.e. compiler will warn about language issues) + 'strict' : ['-Wall', '-Wcast-align', '-Wextra', '-Wwrite-strings', '-Wunsafe-loop-optimizations', '-Wlogical-op' ], + # Flags used for "strict" compilation, C only (i.e. compiler will warn about language issues) + 'c-strict' : ['-std=c99', '-pedantic', '-Wshadow'], + # Flags used for "strict" compilation, C++ only (i.e. compiler will warn about language issues) + 'cxx-strict' : [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual', '-fstrict-overflow' ], + # Flags required for whatever consider the strictest possible compilation + 'ultra-strict' : ['-Wredundant-decls', '-Wstrict-prototypes', '-Wmissing-prototypes'], + # Flag to turn on C99 compliance by itself + 'c99': '-std=c99', + }, + 'msvc' : { + 'debuggable' : ['/DDEBUG', '/Od', '/Zi', '/MDd', '/Gd', '/EHsc'], + 'linker-debuggable' : ['/DEBUG', '/INCREMENTAL' ], + 'nondebuggable' : ['/DNDEBUG', '/Ob1', '/MD', '/Gd', '/EHsc'], + 'profile' : '', + 'sse' : '/arch:SSE', + 'silence-unused-arguments' : '', + 'sse' : '', + 'fpmath-sse' : '', + 'xmmintrinsics' : '', + 'pipe' : '', + 'full-optimization' : '/O2', + 'no-frame-pointer' : '', + 'fast-math' : '', + 'strength-reduce' : '', + 'show-column' : '', + 'generic-x86' : '', + 'generic-ppc' : '', + 'basic-warnings' : '', + 'extra-c-warnings' : '', + 'extra-cxx-warnings' : '', + 'ultra-strict' : '', + 'c-strict' : '', + 'cxx-strict' : '', + 'strict' : '', + 'c99': '/TP', + }, +} + +# Copy, edit and insert variants on gcc dict for gcc-darwin and clang + +gcc_darwin_dict = compiler_flags_dictionaries['gcc'].copy() +gcc_darwin_dict['extra-cxx-warnings'] = [ '-Woverloaded-virtual' ] +gcc_darwin_dict['cxx-strict'] = [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual' ] +gcc_darwin_dict['strict'] = ['-Wall', '-Wcast-align', '-Wextra', '-Wwrite-strings' ] +gcc_darwin_dict['generic-x86'] = [ '-arch', 'i386' ] +gcc_darwin_dict['generic-ppc'] = [ '-arch', 'ppc' ] +compiler_flags_dictionaries['gcc-darwin'] = gcc_darwin_dict; + +clang_dict = compiler_flags_dictionaries['gcc'].copy(); +clang_dict['sse'] = '' +clang_dict['fpmath-sse'] = '' +clang_dict['xmmintrinsics'] = '' +clang_dict['silence-unused-arguments'] = '-Qunused-arguments' +clang_dict['extra-cxx-warnings'] = [ '-Woverloaded-virtual', '-Wno-mismatched-tags' ] +clang_dict['cxx-strict'] = [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual', '-fstrict-overflow' ] +clang_dict['strict'] = ['-Wall', '-Wcast-align', '-Wextra', '-Wwrite-strings' ] +clang_dict['generic-x86'] = [ '-arch', 'i386' ] +compiler_flags_dictionaries['clang'] = clang_dict; + +clang_darwin_dict = compiler_flags_dictionaries['clang'].copy(); +clang_darwin_dict['cxx-strict'] = [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual', ] +compiler_flags_dictionaries['clang-darwin'] = clang_darwin_dict; + def fetch_git_revision (): cmd = "git describe HEAD" output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines() @@ -127,7 +226,6 @@ def set_compiler_flags (conf,opt): # # Compiler flags and other system-dependent stuff # - build_host_supports_sse = False # Flags necessary for building @@ -148,7 +246,32 @@ def set_compiler_flags (conf,opt): version = u[2] # waf adds -O0 -g itself. thanks waf! - is_clang = conf.env['CXX'][0].endswith('clang++') + is_clang = conf.check_cxx(fragment = ''' +#ifndef __clang__ +#error +#endif +int main() { return 0; }''', + features = 'cxx', + mandatory = False, + execute = False, + msg = 'Checking for clang') + + if is_clang: + if platform == 'darwin': + compiler_name = 'clang-darwin' + else: + compiler_name = 'clang' + elif conf.env['MSVC_COMPILER']: + compiler_name = 'msvc' + else: + if platform == 'darwin': + compiler_name = 'gcc-darwin' + else: + compiler_name = 'gcc' + + flags_dict = compiler_flags_dictionaries[compiler_name] + + autowaf.set_basic_compiler_flags (conf,flags_dict) if conf.options.asan: conf.check_cxx(cxxflags=["-fsanitize=address", "-fno-omit-frame-pointer"], linkflags=["-fsanitize=address"]) @@ -157,7 +280,7 @@ def set_compiler_flags (conf,opt): linker_flags.append('-fsanitize=address') if opt.gprofile: - debug_flags = [ '-pg' ] + debug_flags = [ flags_dict['profile'] ] # OSX if platform == 'darwin': @@ -262,8 +385,8 @@ def set_compiler_flags (conf,opt): elif cpu == "i686": compiler_flags.append ("-march=i686") - if not is_clang and ((conf.env['build_target'] == 'i686') or (conf.env['build_target'] == 'x86_64')) and build_host_supports_sse: - compiler_flags.extend (["-msse", "-mfpmath=sse", "-DUSE_XMMINTRIN"]) + if ((conf.env['build_target'] == 'i686') or (conf.env['build_target'] == 'x86_64')) and build_host_supports_sse: + compiler_flags.extend ([ flags_dict['sse'], flags_dict['fpmath-sse'], flags_dict['xmmintrinsics'] ]) # end of processor-specific section @@ -339,7 +462,7 @@ def set_compiler_flags (conf,opt): # prepend boiler plate optimization flags that work on all architectures # - optimization_flags[:0] = ["-pipe"] + optimization_flags[:0] = [flags_dict['pipe']] # don't prepend optimization flags if "-O" is present prepend_opt_flags = True @@ -349,15 +472,10 @@ def set_compiler_flags (conf,opt): break if prepend_opt_flags: - optimization_flags[:0] = [ - "-O3", - "-fomit-frame-pointer", - "-ffast-math", - "-fstrength-reduce" - ] + optimization_flags[:0] = flags_dict['full-optimization'] if opt.debug_symbols: - optimization_flags += [ '-g' ] + optimization_flags += flags_dict['debuggable'] if opt.stl_debug: cxx_flags.append("-D_GLIBCXX_DEBUG") @@ -370,22 +488,21 @@ def set_compiler_flags (conf,opt): compiler_flags.append('-DDEBUG_DENORMAL_EXCEPTION') if opt.generic: - compiler_flags.extend(('-arch', 'i386')) - linker_flags.extend(('-arch', 'i386')) + compiler_flags.extend(flags_dict['generic-x86']) + linker_flags.extend(flags_dict['generic-x86']) if opt.ppc: - compiler_flags.extend(('-arch', 'ppc')) - linker_flags.extend(('-arch', 'ppc')) + compiler_flags.extend(flags_dict['generic-ppc']) + linker_flags.extend(flags_dict['generic-ppc']) # # warnings flags # - compiler_flags.extend( - ('-Wall', '-Wpointer-arith', '-Wcast-qual', '-Wcast-align', '-Wno-unused-parameter')) + compiler_flags.extend(flags_dict['basic-warnings']) - c_flags.extend(('-Wstrict-prototypes', '-Wmissing-prototypes')) - cxx_flags.append('-Woverloaded-virtual') + c_flags.extend(flags_dict['extra-c-warnings']) + cxx_flags.extend (flags_dict['extra-cxx-warnings']) # # more boilerplate @@ -435,13 +552,9 @@ def options(opt): opt.add_option ('--trx', action='store_true', default=False, dest='trx_build', help='Whether to build for TRX') opt.add_option('--arch', type='string', action='store', dest='arch', - help='Architecture-specific compiler flags') - opt.add_option('--with-dummy', action='store_true', default=False, dest='build_dummy', - help='Build the dummy backend (no audio/MIDI I/O, useful for profiling)') - opt.add_option('--with-alsabackend', action='store_true', default=False, dest='build_alsabackend', - help='Build the ALSA backend') - opt.add_option('--with-wavesbackend', action='store_true', default=False, dest='build_wavesbackend', - help='Build the Waves/Portaudio backend') + help='Architecture-specific compiler FLAGS') + opt.add_option('--with-backends', type='string', action='store', default='jack', dest='with_backends', + help='Specify which backend modules are to be included(jack,alsa,wavesaudio,dummy)') opt.add_option('--backtrace', action='store_true', default=True, dest='backtrace', help='Compile with -rdynamic -- allow obtaining backtraces from within Ardour') opt.add_option('--no-carbon', action='store_true', default=False, dest='nocarbon', @@ -453,7 +566,7 @@ def options(opt): opt.add_option('--depstack-root', type='string', default='~', dest='depstack_root', help='Directory/folder where dependency stack trees (gtk, a3) can be found (defaults to ~)') opt.add_option('--dist-target', type='string', default='auto', dest='dist_target', - help='Specify the target for cross-compiling [auto,none,x86,i386,i686,x86_64,tiger,leopard,mingw]') + help='Specify the target for cross-compiling [auto,none,x86,i386,i686,x86_64,tiger,leopard,mingw,msvc]') opt.add_option('--fpu-optimization', action='store_true', default=True, dest='fpu_optimization', help='Build runtime checked assembler code (default)') opt.add_option('--no-fpu-optimization', action='store_false', dest='fpu_optimization') @@ -481,6 +594,8 @@ def options(opt): help='Compile with support for linuxVST plugins') opt.add_option('--no-lxvst', action='store_false', dest='lxvst', help='Compile without support for linuxVST plugins') + opt.add_option('--no-lrdf', action='store_true', dest='no_lrdf', + help='Compile without support for LRDF LADSPA data even if present') opt.add_option('--nls', action='store_true', default=True, dest='nls', help='Enable i18n (native language support) (default)') opt.add_option('--no-nls', action='store_false', dest='nls') @@ -542,6 +657,16 @@ def configure(conf): if Options.options.dist_target == 'mingw': conf.load('winres') + if Options.options.dist_target == 'msvc': + conf.env['MSVC_VERSIONS'] = ['msvc 10.0', 'msvc 9.0', 'msvc 8.0', 'msvc 7.1', 'msvc 7.0', 'msvc 6.0', ] + conf.env['MSVC_TARGETS'] = ['x64'] + conf.load('msvc') + + if Options.options.debug: + # Nuke user CFLAGS/CXXFLAGS if debug is set (they likely contain -O3, NDEBUG, etc) + conf.env['CFLAGS'] = [] + conf.env['CXXFLAGS'] = [] + conf.env['VERSION'] = VERSION conf.env['MAJOR'] = MAJOR conf.env['MINOR'] = MINOR @@ -682,7 +807,8 @@ def configure(conf): # executing a test program is n/a when cross-compiling if Options.options.dist_target != 'mingw': - conf.check_cc(function_name='dlopen', header_name='dlfcn.h', lib='dl', uselib_store='DL') + if Options.options.dist_target != 'msvc': + conf.check_cc(function_name='dlopen', header_name='dlfcn.h', lib='dl', uselib_store='DL') conf.check_cxx(fragment = "#include \nint main(void) { return (BOOST_VERSION >= 103900 ? 0 : 1); }\n", execute = "1", mandatory = True, @@ -696,13 +822,13 @@ def configure(conf): autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.2', mandatory=True) autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.2', mandatory=True) autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.32.0', mandatory=True) - autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18, mandatory=True') + autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18', mandatory=True) autowaf.check_pkg(conf, 'giomm-2.4', uselib_store='GIOMM', atleast_version='2.2', mandatory=True) autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL', atleast_version='7.0.0', mandatory=True) autowaf.check_pkg(conf, 'liblo', uselib_store='LO', atleast_version='0.26', mandatory=True) autowaf.check_pkg(conf, 'taglib', uselib_store='TAGLIB', atleast_version='1.6', mandatory=True) - autowaf.check_pkg(conf, 'vamp-sdk', uselib_store='VAMPSDK', atleast_version='2.4', mandatory=True) - autowaf.check_pkg(conf, 'vamp-hostsdk', uselib_store='VAMPHOSTSDK', atleast_version='2.4', mandatory=True) + autowaf.check_pkg(conf, 'vamp-sdk', uselib_store='VAMPSDK', atleast_version='2.1', mandatory=True) + autowaf.check_pkg(conf, 'vamp-hostsdk', uselib_store='VAMPHOSTSDK', atleast_version='2.1', mandatory=True) autowaf.check_pkg(conf, 'rubberband', uselib_store='RUBBERBAND', mandatory=True) if Options.options.dist_target == 'mingw': @@ -727,6 +853,17 @@ def configure(conf): conf.env.append_value('CFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE') conf.env.append_value('CXXFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE') + if Options.options.dist_target == 'msvc': + conf.env.append_value('CFLAGS', '-DPLATFORM_WINDOWS') + conf.env.append_value('CFLAGS', '-DCOMPILER_MSVC') + conf.env.append_value('CXXFLAGS', '-DPLATFORM_WINDOWS') + conf.env.append_value('CXXFLAGS', '-DCOMPILER_MSVC') + # work around GdkDrawable BitBlt performance issue on windows + # see http://gareus.org/wiki/ardour_windows_gdk_and_cairo + conf.env.append_value('CFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE') + conf.env.append_value('CXXFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE') + # MORE STUFF PROBABLY NEEDED HERE + # Tell everyone that this is a waf build conf.env.append_value('CFLAGS', '-DWAF_BUILD') @@ -791,12 +928,17 @@ def configure(conf): conf.env['DEBUG_DENORMAL_EXCEPTION'] = True if opts.build_tests: autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT', atleast_version='1.12.0', mandatory=True) - if opts.build_alsabackend: - conf.env['BUILD_ALSABACKEND'] = True - if opts.build_dummy: - conf.env['BUILD_DUMMYBACKEND'] = True - if opts.build_wavesbackend: - conf.env['BUILD_WAVESBACKEND'] = True + + backends = opts.with_backends.split(',') + if not backends: + print("Must configure and build at least one backend") + sys.exit(1) + + conf.env['BACKENDS'] = backends + conf.env['BUILD_JACKBACKEND'] = any('jack' in b for b in backends) + conf.env['BUILD_ALSABACKEND'] = any('alsa' in b for b in backends) + conf.env['BUILD_DUMMYBACKEND'] = any('dummy' in b for b in backends) + conf.env['BUILD_WAVESBACKEND'] = any('wavesaudio' in b for b in backends) set_compiler_flags (conf, Options.options) @@ -834,7 +976,7 @@ const char* const ardour_config_info = "\\n\\ write_config_text('Use External Libraries', conf.is_defined('USE_EXTERNAL_LIBS')) write_config_text('Library exports hidden', conf.is_defined('EXPORT_VISIBILITY_HIDDEN')) - write_config_text('ALSA Backend', opts.build_alsabackend) + write_config_text('ALSA Backend', conf.env['BUILD_ALSABACKEND']) write_config_text('ALSA DBus Reservation', conf.is_defined('HAVE_DBUS')) write_config_text('Architecture flags', opts.arch) write_config_text('Aubio', conf.is_defined('HAVE_AUBIO')) @@ -844,12 +986,13 @@ const char* const ardour_config_info = "\\n\\ write_config_text('CoreAudio', conf.is_defined('HAVE_COREAUDIO')) write_config_text('Debug RT allocations', conf.is_defined('DEBUG_RT_ALLOC')) write_config_text('Debug Symbols', conf.is_defined('debug_symbols') or conf.env['DEBUG']) - write_config_text('Dummy backend', opts.build_dummy) + write_config_text('Dummy backend', conf.env['BUILD_DUMMYBACKEND']) write_config_text('Process thread timing', conf.is_defined('PT_TIMING')) write_config_text('Denormal exceptions', conf.is_defined('DEBUG_DENORMAL_EXCEPTION')) write_config_text('FLAC', conf.is_defined('HAVE_FLAC')) write_config_text('FPU optimization', opts.fpu_optimization) write_config_text('Freedesktop files', opts.freedesktop) + write_config_text('JACK Backend', conf.env['BUILD_JACKBACKEND']) write_config_text('Libjack linking', conf.env['libjack_link']) write_config_text('LV2 UI embedding', conf.is_defined('HAVE_SUIL')) write_config_text('LV2 support', conf.is_defined('LV2_SUPPORT')) @@ -864,7 +1007,7 @@ const char* const ardour_config_info = "\\n\\ write_config_text('Unit tests', conf.env['BUILD_TESTS']) write_config_text('Mac i386 Architecture', opts.generic) write_config_text('Mac ppc Architecture', opts.ppc) - write_config_text('Waves Backend', opts.build_wavesbackend) + write_config_text('Waves Backend', conf.env['BUILD_WAVESBACKEND']) write_config_text('Windows VST support', opts.windows_vst) write_config_text('Wiimote support', conf.is_defined('BUILD_WIIMOTE')) write_config_text('Windows key', opts.windows_key) @@ -904,6 +1047,7 @@ def build(bld): # shared objects loaded at runtime go here (two aliases) bld.env['DLLDIR'] = os.path.join(bld.env['LIBDIR'], lwrcase_dirname) bld.env['LIBDIR'] = bld.env['DLLDIR'] + bld.env['LOCALEDIR'] = os.path.join(bld.env['DATADIR'], 'locale') autowaf.set_recursive()