[5c411dc] | 1 | #! /usr/bin/python |
---|
[110ac90] | 2 | # |
---|
[21ee709] | 3 | # usage: |
---|
[46b00690] | 4 | # $ python waf --help |
---|
| 5 | # |
---|
| 6 | # example: |
---|
| 7 | # $ ./waf distclean configure build |
---|
[21ee709] | 8 | # |
---|
[46b00690] | 9 | # Note: aubio uses the waf build system, which relies on Python. Provided you |
---|
| 10 | # have Python installed, you do *not* need to install anything to build aubio. |
---|
| 11 | # For more info about waf, see http://code.google.com/p/waf/ . |
---|
[000b090] | 12 | |
---|
[004b431] | 13 | import sys |
---|
| 14 | |
---|
[000b090] | 15 | APPNAME = 'aubio' |
---|
[5820107] | 16 | |
---|
[b991cc1] | 17 | from this_version import * |
---|
[5820107] | 18 | |
---|
[255c4c8] | 19 | VERSION = get_aubio_version() |
---|
| 20 | LIB_VERSION = get_libaubio_version() |
---|
[e565c649] | 21 | |
---|
[46378b3] | 22 | top = '.' |
---|
| 23 | out = 'build' |
---|
[000b090] | 24 | |
---|
[6b14351] | 25 | def add_option_enable_disable(ctx, name, default = None, |
---|
| 26 | help_str = None, help_disable_str = None): |
---|
[a93dab3] | 27 | if help_str == None: |
---|
| 28 | help_str = 'enable ' + name + ' support' |
---|
| 29 | if help_disable_str == None: |
---|
| 30 | help_disable_str = 'do not ' + help_str |
---|
| 31 | ctx.add_option('--enable-' + name, action = 'store_true', |
---|
| 32 | default = default, |
---|
| 33 | dest = 'enable_' + name.replace('-','_'), |
---|
| 34 | help = help_str) |
---|
| 35 | ctx.add_option('--disable-' + name, action = 'store_false', |
---|
| 36 | #default = default, |
---|
| 37 | dest = 'enable_' + name.replace('-','_'), |
---|
| 38 | help = help_disable_str ) |
---|
[3819aca] | 39 | |
---|
[d41bc4d] | 40 | def options(ctx): |
---|
[b4ce693] | 41 | ctx.add_option('--build-type', action = 'store', |
---|
| 42 | default = "release", |
---|
| 43 | choices = ('debug', 'release'), |
---|
| 44 | dest = 'build_type', |
---|
[19237a7] | 45 | help = 'whether to compile with (--build-type=release)' \ |
---|
| 46 | ' or without (--build-type=debug)' \ |
---|
| 47 | ' compiler opimizations [default: release]') |
---|
[f862b85] | 48 | ctx.add_option('--debug', action = 'store_const', |
---|
| 49 | dest = 'build_type', const = 'debug', |
---|
| 50 | help = 'build in debug mode (see --build-type)') |
---|
[0cd3720] | 51 | ctx.add_option('--nodeps', action = 'store_const', |
---|
| 52 | dest = 'nodeps', const = 'debug', |
---|
| 53 | help = 'build with no external dependencies') |
---|
[a93dab3] | 54 | add_option_enable_disable(ctx, 'fftw3f', default = False, |
---|
| 55 | help_str = 'compile with fftw3f instead of ooura (recommended)', |
---|
| 56 | help_disable_str = 'do not compile with fftw3f') |
---|
| 57 | add_option_enable_disable(ctx, 'fftw3', default = False, |
---|
| 58 | help_str = 'compile with fftw3 instead of ooura', |
---|
| 59 | help_disable_str = 'do not compile with fftw3') |
---|
[799d992] | 60 | add_option_enable_disable(ctx, 'intelipp', default = False, |
---|
[986131d] | 61 | help_str = 'use Intel IPP libraries (auto)', |
---|
| 62 | help_disable_str = 'do not use Intel IPP libraries') |
---|
[a93dab3] | 63 | add_option_enable_disable(ctx, 'complex', default = False, |
---|
| 64 | help_str ='compile with C99 complex', |
---|
| 65 | help_disable_str = 'do not use C99 complex (default)' ) |
---|
| 66 | add_option_enable_disable(ctx, 'jack', default = None, |
---|
| 67 | help_str = 'compile with jack (auto)', |
---|
| 68 | help_disable_str = 'disable jack support') |
---|
| 69 | add_option_enable_disable(ctx, 'sndfile', default = None, |
---|
| 70 | help_str = 'compile with sndfile (auto)', |
---|
| 71 | help_disable_str = 'disable sndfile') |
---|
| 72 | add_option_enable_disable(ctx, 'avcodec', default = None, |
---|
| 73 | help_str = 'compile with libavcodec (auto)', |
---|
| 74 | help_disable_str = 'disable libavcodec') |
---|
| 75 | add_option_enable_disable(ctx, 'samplerate', default = None, |
---|
| 76 | help_str = 'compile with samplerate (auto)', |
---|
| 77 | help_disable_str = 'disable samplerate') |
---|
| 78 | add_option_enable_disable(ctx, 'memcpy', default = True, |
---|
| 79 | help_str = 'use memcpy hacks (default)', |
---|
| 80 | help_disable_str = 'do not use memcpy hacks') |
---|
| 81 | add_option_enable_disable(ctx, 'double', default = False, |
---|
| 82 | help_str = 'compile in double precision mode', |
---|
| 83 | help_disable_str = 'compile in single precision mode (default)') |
---|
[a3de4be] | 84 | add_option_enable_disable(ctx, 'fat', default = False, |
---|
| 85 | help_str = 'build fat binaries (darwin only)', |
---|
| 86 | help_disable_str = 'do not build fat binaries (default)') |
---|
[0309a22] | 87 | add_option_enable_disable(ctx, 'accelerate', default = None, |
---|
| 88 | help_str = 'use Accelerate framework (darwin only) (auto)', |
---|
| 89 | help_disable_str = 'do not use Accelerate framework') |
---|
[cc81763] | 90 | add_option_enable_disable(ctx, 'apple-audio', default = None, |
---|
| 91 | help_str = 'use CoreFoundation (darwin only) (auto)', |
---|
| 92 | help_disable_str = 'do not use CoreFoundation framework') |
---|
[fe05d1f] | 93 | add_option_enable_disable(ctx, 'blas', default = False, |
---|
| 94 | help_str = 'use BLAS acceleration library (no)', |
---|
| 95 | help_disable_str = 'do not use BLAS library') |
---|
[f61ffb9] | 96 | add_option_enable_disable(ctx, 'atlas', default = False, |
---|
[fe05d1f] | 97 | help_str = 'use ATLAS acceleration library (no)', |
---|
| 98 | help_disable_str = 'do not use ATLAS library') |
---|
[f9a543e] | 99 | add_option_enable_disable(ctx, 'wavread', default = True, |
---|
| 100 | help_str = 'compile with source_wavread (default)', |
---|
| 101 | help_disable_str = 'do not compile source_wavread') |
---|
| 102 | add_option_enable_disable(ctx, 'wavwrite', default = True, |
---|
| 103 | help_str = 'compile with source_wavwrite (default)', |
---|
| 104 | help_disable_str = 'do not compile source_wavwrite') |
---|
[a93dab3] | 105 | |
---|
[a33d406] | 106 | add_option_enable_disable(ctx, 'docs', default = None, |
---|
| 107 | help_str = 'build documentation (auto)', |
---|
| 108 | help_disable_str = 'do not build documentation') |
---|
| 109 | |
---|
[445e60f5] | 110 | add_option_enable_disable(ctx, 'tests', default = True, |
---|
| 111 | help_str = 'build tests (true)', |
---|
| 112 | help_disable_str = 'do not build or run tests') |
---|
| 113 | |
---|
| 114 | add_option_enable_disable(ctx, 'examples', default = True, |
---|
| 115 | help_str = 'build examples (true)', |
---|
| 116 | help_disable_str = 'do not build examples') |
---|
| 117 | |
---|
[a93dab3] | 118 | ctx.add_option('--with-target-platform', type='string', |
---|
[19237a7] | 119 | help='set target platform for cross-compilation', |
---|
| 120 | dest='target_platform') |
---|
[a93dab3] | 121 | |
---|
| 122 | ctx.load('compiler_c') |
---|
| 123 | ctx.load('waf_unit_test') |
---|
| 124 | ctx.load('gnu_dirs') |
---|
[18ec142] | 125 | ctx.load('waf_gensyms', tooldir='.') |
---|
[000b090] | 126 | |
---|
[d41bc4d] | 127 | def configure(ctx): |
---|
[fc5e189] | 128 | target_platform = sys.platform |
---|
| 129 | if ctx.options.target_platform: |
---|
| 130 | target_platform = ctx.options.target_platform |
---|
[fee0094] | 131 | |
---|
[0cd3720] | 132 | if ctx.options.nodeps: |
---|
| 133 | external_deps = [ |
---|
| 134 | 'sndfile', |
---|
| 135 | 'samplerate', |
---|
| 136 | 'jack', |
---|
| 137 | 'avcodec', |
---|
| 138 | 'blas', |
---|
| 139 | 'fftw3', |
---|
| 140 | 'fftw3f', |
---|
| 141 | ] |
---|
| 142 | for d in external_deps: |
---|
| 143 | if not hasattr(ctx.options, 'enable_' + d): |
---|
| 144 | raise ctx.errors.ConfigurationError ('--enable-%s missing from options' % d) |
---|
| 145 | if getattr(ctx.options, 'enable_' + d) == True: |
---|
| 146 | msg = 'Option --nodeps can not be used along with --enable-%s' % d |
---|
| 147 | raise ctx.errors.ConfigurationError (msg) |
---|
| 148 | elif getattr(ctx.options, 'enable_' + d) is None: |
---|
| 149 | msg = 'Option --nodeps used but automatic detection with --enable-%s' % d |
---|
| 150 | ctx.msg('Warning', msg) |
---|
| 151 | setattr(ctx.options, 'enable_' + d, False) |
---|
| 152 | |
---|
[9fabad5] | 153 | from waflib import Options |
---|
[fc5e189] | 154 | |
---|
| 155 | if target_platform=='emscripten': |
---|
[9fabad5] | 156 | ctx.load('c_emscripten') |
---|
| 157 | else: |
---|
| 158 | ctx.load('compiler_c') |
---|
| 159 | |
---|
| 160 | ctx.load('waf_unit_test') |
---|
| 161 | ctx.load('gnu_dirs') |
---|
[18ec142] | 162 | ctx.load('waf_gensyms', tooldir='.') |
---|
[fee0094] | 163 | |
---|
[bef979a] | 164 | # check for common headers |
---|
| 165 | ctx.check(header_name='stdlib.h') |
---|
| 166 | ctx.check(header_name='stdio.h') |
---|
| 167 | ctx.check(header_name='math.h') |
---|
| 168 | ctx.check(header_name='string.h') |
---|
[9d609355] | 169 | ctx.check(header_name='errno.h') |
---|
[bef979a] | 170 | ctx.check(header_name='limits.h') |
---|
[f334300] | 171 | ctx.check(header_name='stdarg.h') |
---|
[d746ef8] | 172 | ctx.check(header_name='getopt.h', mandatory = False) |
---|
[06cf47d] | 173 | ctx.check(header_name='unistd.h', mandatory = False) |
---|
[bef979a] | 174 | |
---|
[a93dab3] | 175 | ctx.env['DEST_OS'] = target_platform |
---|
| 176 | |
---|
[b4ce693] | 177 | if ctx.options.build_type == "debug": |
---|
| 178 | ctx.define('DEBUG', 1) |
---|
| 179 | else: |
---|
| 180 | ctx.define('NDEBUG', 1) |
---|
[578d3a2] | 181 | |
---|
[ae36035] | 182 | if ctx.env.CC_NAME != 'msvc': |
---|
[c04346d] | 183 | if ctx.options.build_type == "debug": |
---|
| 184 | # no optimization in debug mode |
---|
[a6ba5d9f] | 185 | ctx.env.prepend_value('CFLAGS', ['-O0']) |
---|
| 186 | else: |
---|
[1539d4b] | 187 | if target_platform == 'emscripten': |
---|
| 188 | # -Oz for small js file generation |
---|
| 189 | ctx.env.prepend_value('CFLAGS', ['-Oz']) |
---|
| 190 | else: |
---|
[deaf39e] | 191 | # default to -O2 in release mode |
---|
| 192 | ctx.env.prepend_value('CFLAGS', ['-O2']) |
---|
[a6ba5d9f] | 193 | # enable debug symbols and configure warnings |
---|
| 194 | ctx.env.prepend_value('CFLAGS', ['-g', '-Wall', '-Wextra']) |
---|
[a341685] | 195 | else: |
---|
[b4ce693] | 196 | # enable debug symbols |
---|
[b0353ab] | 197 | ctx.env.CFLAGS += ['/Z7'] |
---|
| 198 | # /FS flag available in msvc >= 12 (2013) |
---|
| 199 | if 'MSVC_VERSION' in ctx.env and ctx.env.MSVC_VERSION >= 12: |
---|
| 200 | ctx.env.CFLAGS += ['/FS'] |
---|
[b4ce693] | 201 | ctx.env.LINKFLAGS += ['/DEBUG', '/INCREMENTAL:NO'] |
---|
| 202 | # configure warnings |
---|
| 203 | ctx.env.CFLAGS += ['/W4', '/D_CRT_SECURE_NO_WARNINGS'] |
---|
[986131d] | 204 | # ignore "possible loss of data" warnings |
---|
| 205 | ctx.env.CFLAGS += ['/wd4305', '/wd4244', '/wd4245', '/wd4267'] |
---|
| 206 | # ignore "unreferenced formal parameter" warnings |
---|
| 207 | ctx.env.CFLAGS += ['/wd4100'] |
---|
[578d3a2] | 208 | # set optimization level and runtime libs |
---|
[b4ce693] | 209 | if (ctx.options.build_type == "release"): |
---|
| 210 | ctx.env.CFLAGS += ['/Ox'] |
---|
| 211 | ctx.env.CFLAGS += ['/MD'] |
---|
| 212 | else: |
---|
| 213 | assert(ctx.options.build_type == "debug") |
---|
| 214 | ctx.env.CFLAGS += ['/MDd'] |
---|
[578d3a2] | 215 | |
---|
[70a304e] | 216 | ctx.check_cc(lib='m', uselib_store='M', mandatory=False) |
---|
| 217 | |
---|
[06dba46] | 218 | if target_platform not in ['win32', 'win64']: |
---|
| 219 | ctx.env.CFLAGS += ['-fPIC'] |
---|
| 220 | else: |
---|
| 221 | ctx.define('HAVE_WIN_HACKS', 1) |
---|
| 222 | ctx.env['cshlib_PATTERN'] = 'lib%s.dll' |
---|
[a93dab3] | 223 | |
---|
[a3de4be] | 224 | if target_platform == 'darwin' and ctx.options.enable_fat: |
---|
[a93dab3] | 225 | ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64'] |
---|
| 226 | ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64'] |
---|
[da1709f] | 227 | MINSDKVER="10.4" |
---|
| 228 | ctx.env.CFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ] |
---|
| 229 | ctx.env.LINKFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ] |
---|
[9209c79] | 230 | |
---|
| 231 | if target_platform in [ 'darwin', 'ios', 'iosimulator']: |
---|
[cc81763] | 232 | if (ctx.options.enable_apple_audio != False): |
---|
| 233 | ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox'] |
---|
| 234 | ctx.define('HAVE_SOURCE_APPLE_AUDIO', 1) |
---|
| 235 | ctx.define('HAVE_SINK_APPLE_AUDIO', 1) |
---|
[f61ffb9] | 236 | ctx.msg('Checking for AudioToolbox.framework', 'yes') |
---|
| 237 | else: |
---|
[19237a7] | 238 | ctx.msg('Checking for AudioToolbox.framework', 'no (disabled)', |
---|
| 239 | color = 'YELLOW') |
---|
[0309a22] | 240 | if (ctx.options.enable_accelerate != False): |
---|
| 241 | ctx.define('HAVE_ACCELERATE', 1) |
---|
| 242 | ctx.env.FRAMEWORK += ['Accelerate'] |
---|
[f61ffb9] | 243 | ctx.msg('Checking for Accelerate framework', 'yes') |
---|
| 244 | else: |
---|
[19237a7] | 245 | ctx.msg('Checking for Accelerate framework', 'no (disabled)', |
---|
| 246 | color = 'YELLOW') |
---|
[a93dab3] | 247 | |
---|
| 248 | if target_platform in [ 'ios', 'iosimulator' ]: |
---|
| 249 | MINSDKVER="6.1" |
---|
| 250 | ctx.env.CFLAGS += ['-std=c99'] |
---|
[536bf70] | 251 | if (ctx.options.enable_apple_audio != False): |
---|
[cc81763] | 252 | ctx.define('HAVE_AUDIO_UNIT', 1) |
---|
| 253 | #ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox'] |
---|
[a93dab3] | 254 | if target_platform == 'ios': |
---|
| 255 | DEVROOT = "/Applications/Xcode.app/Contents" |
---|
| 256 | DEVROOT += "/Developer/Platforms/iPhoneOS.platform/Developer" |
---|
[e11ce489] | 257 | SDKROOT = "%(DEVROOT)s/SDKs/iPhoneOS.sdk" % locals() |
---|
[94b16497] | 258 | ctx.env.CFLAGS += [ '-fembed-bitcode' ] |
---|
[7aa4aaa] | 259 | ctx.env.CFLAGS += [ '-arch', 'arm64' ] |
---|
[a93dab3] | 260 | ctx.env.CFLAGS += [ '-arch', 'armv7' ] |
---|
| 261 | ctx.env.CFLAGS += [ '-arch', 'armv7s' ] |
---|
[7aa4aaa] | 262 | ctx.env.LINKFLAGS += [ '-arch', 'arm64' ] |
---|
[a93dab3] | 263 | ctx.env.LINKFLAGS += ['-arch', 'armv7'] |
---|
| 264 | ctx.env.LINKFLAGS += ['-arch', 'armv7s'] |
---|
| 265 | ctx.env.CFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ] |
---|
| 266 | ctx.env.LINKFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ] |
---|
| 267 | else: |
---|
| 268 | DEVROOT = "/Applications/Xcode.app/Contents" |
---|
| 269 | DEVROOT += "/Developer/Platforms/iPhoneSimulator.platform/Developer" |
---|
[e11ce489] | 270 | SDKROOT = "%(DEVROOT)s/SDKs/iPhoneSimulator.sdk" % locals() |
---|
[a93dab3] | 271 | ctx.env.CFLAGS += [ '-arch', 'i386' ] |
---|
| 272 | ctx.env.CFLAGS += [ '-arch', 'x86_64' ] |
---|
| 273 | ctx.env.LINKFLAGS += ['-arch', 'i386'] |
---|
| 274 | ctx.env.LINKFLAGS += ['-arch', 'x86_64'] |
---|
| 275 | ctx.env.CFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ] |
---|
| 276 | ctx.env.LINKFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ] |
---|
| 277 | ctx.env.CFLAGS += [ '-isysroot' , SDKROOT] |
---|
| 278 | ctx.env.LINKFLAGS += [ '-isysroot' , SDKROOT] |
---|
| 279 | |
---|
[fb5838a] | 280 | if target_platform == 'emscripten': |
---|
[023e4b2] | 281 | if ctx.options.build_type == "debug": |
---|
| 282 | ctx.env.cshlib_PATTERN = '%s.js' |
---|
[6421221] | 283 | ctx.env.LINKFLAGS += ['-s','ASSERTIONS=2'] |
---|
| 284 | ctx.env.LINKFLAGS += ['-s','SAFE_HEAP=1'] |
---|
| 285 | ctx.env.LINKFLAGS += ['-s','ALIASING_FUNCTION_POINTERS=0'] |
---|
| 286 | ctx.env.LINKFLAGS += ['-O0'] |
---|
[023e4b2] | 287 | else: |
---|
| 288 | ctx.env.LINKFLAGS += ['-Oz'] |
---|
| 289 | ctx.env.cshlib_PATTERN = '%s.min.js' |
---|
[4b084a9] | 290 | |
---|
[342eb13e] | 291 | # doesnt ship file system support in lib |
---|
[4b084a9] | 292 | ctx.env.LINKFLAGS_cshlib += ['-s', 'NO_FILESYSTEM=1'] |
---|
| 293 | # put memory file inside generated js files for easier portability |
---|
| 294 | ctx.env.LINKFLAGS += ['--memory-init-file', '0'] |
---|
[fb5838a] | 295 | ctx.env.cprogram_PATTERN = "%s.js" |
---|
[e717fae] | 296 | ctx.env.cstlib_PATTERN = '%s.a' |
---|
[4b084a9] | 297 | |
---|
[342eb13e] | 298 | # tell emscripten functions we want to expose |
---|
[f3f0d14] | 299 | from python.lib.gen_external import get_c_declarations, \ |
---|
[19237a7] | 300 | get_cpp_objects_from_c_declarations, \ |
---|
| 301 | get_all_func_names_from_lib, \ |
---|
[f3f0d14] | 302 | generate_lib_from_c_declarations |
---|
[19237a7] | 303 | # emscripten can't use double |
---|
| 304 | c_decls = get_c_declarations(usedouble=False) |
---|
[873646d] | 305 | objects = list(get_cpp_objects_from_c_declarations(c_decls)) |
---|
[4b084a9] | 306 | # ensure that aubio structs are exported |
---|
| 307 | objects += ['fvec_t', 'cvec_t', 'fmat_t'] |
---|
| 308 | lib = generate_lib_from_c_declarations(objects, c_decls) |
---|
| 309 | exported_funcnames = get_all_func_names_from_lib(lib) |
---|
| 310 | c_mangled_names = ['_' + s for s in exported_funcnames] |
---|
[19237a7] | 311 | ctx.env.LINKFLAGS_cshlib += ['-s', |
---|
| 312 | 'EXPORTED_FUNCTIONS=%s' % c_mangled_names] |
---|
[4b084a9] | 313 | |
---|
[a93dab3] | 314 | # check support for C99 __VA_ARGS__ macros |
---|
| 315 | check_c99_varargs = ''' |
---|
[0318cc1] | 316 | #include <stdio.h> |
---|
| 317 | #define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__) |
---|
| 318 | ''' |
---|
[a93dab3] | 319 | |
---|
| 320 | if ctx.check_cc(fragment = check_c99_varargs, |
---|
| 321 | type='cstlib', |
---|
[413d4bf] | 322 | msg = 'Checking for C99 __VA_ARGS__ macro', |
---|
| 323 | mandatory = False): |
---|
[a93dab3] | 324 | ctx.define('HAVE_C99_VARARGS_MACROS', 1) |
---|
| 325 | |
---|
[06c6d7d] | 326 | # show a message about enable_double status |
---|
[a93dab3] | 327 | if (ctx.options.enable_double == True): |
---|
[06c6d7d] | 328 | ctx.msg('Checking for size of smpl_t', 'double') |
---|
| 329 | ctx.msg('Checking for size of lsmp_t', 'long double') |
---|
[a93dab3] | 330 | else: |
---|
[06c6d7d] | 331 | ctx.msg('Checking for size of smpl_t', 'float') |
---|
| 332 | ctx.msg('Checking for size of lsmp_t', 'double') |
---|
[a93dab3] | 333 | |
---|
| 334 | # optionally use complex.h |
---|
| 335 | if (ctx.options.enable_complex == True): |
---|
| 336 | ctx.check(header_name='complex.h') |
---|
[06c6d7d] | 337 | else: |
---|
| 338 | ctx.msg('Checking if complex.h is enabled', 'no') |
---|
[b701179] | 339 | |
---|
[986131d] | 340 | # check for Intel IPP |
---|
| 341 | if (ctx.options.enable_intelipp != False): |
---|
[19237a7] | 342 | has_ipp_headers = ctx.check(header_name=['ippcore.h', 'ippvm.h', |
---|
| 343 | 'ipps.h'], mandatory = False) |
---|
[f3f0d14] | 344 | has_ipp_libs = ctx.check(lib=['ippcore', 'ippvm', 'ipps'], |
---|
| 345 | uselib_store='INTEL_IPP', mandatory = False) |
---|
| 346 | if (has_ipp_headers and has_ipp_libs): |
---|
[986131d] | 347 | ctx.msg('Checking if Intel IPP is available', 'yes') |
---|
| 348 | ctx.define('HAVE_INTEL_IPP', 1) |
---|
| 349 | if ctx.env.CC_NAME == 'msvc': |
---|
[19237a7] | 350 | # force linking multi-threaded static IPP libraries on Windows |
---|
| 351 | # with msvc |
---|
[986131d] | 352 | ctx.define('_IPP_SEQUENTIAL_STATIC', 1) |
---|
| 353 | else: |
---|
| 354 | ctx.msg('Checking if Intel IPP is available', 'no') |
---|
[b701179] | 355 | |
---|
[a93dab3] | 356 | # check for fftw3 |
---|
| 357 | if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False): |
---|
| 358 | # one of fftwf or fftw3f |
---|
| 359 | if (ctx.options.enable_fftw3f != False): |
---|
[badb525] | 360 | ctx.check_cfg(package = 'fftw3f', |
---|
| 361 | args = '--cflags --libs fftw3f >= 3.0.0', |
---|
[795fcd9] | 362 | mandatory = ctx.options.enable_fftw3f) |
---|
[a93dab3] | 363 | if (ctx.options.enable_double == True): |
---|
[795fcd9] | 364 | ctx.msg('Warning', |
---|
| 365 | 'fftw3f enabled, but compiling in double precision!') |
---|
[a93dab3] | 366 | else: |
---|
[795fcd9] | 367 | # fftw3f disabled, take most sensible one according to |
---|
| 368 | # enable_double |
---|
[a93dab3] | 369 | if (ctx.options.enable_double == True): |
---|
[badb525] | 370 | ctx.check_cfg(package = 'fftw3', |
---|
| 371 | args = '--cflags --libs fftw3 >= 3.0.0.', |
---|
| 372 | mandatory = ctx.options.enable_fftw3) |
---|
[a93dab3] | 373 | else: |
---|
[badb525] | 374 | ctx.check_cfg(package = 'fftw3f', |
---|
| 375 | args = '--cflags --libs fftw3f >= 3.0.0', |
---|
[795fcd9] | 376 | mandatory = ctx.options.enable_fftw3) |
---|
[a93dab3] | 377 | ctx.define('HAVE_FFTW3', 1) |
---|
| 378 | |
---|
[986131d] | 379 | # fftw not enabled, use vDSP, intelIPP or ooura |
---|
[a93dab3] | 380 | if 'HAVE_FFTW3F' in ctx.env.define_key: |
---|
| 381 | ctx.msg('Checking for FFT implementation', 'fftw3f') |
---|
| 382 | elif 'HAVE_FFTW3' in ctx.env.define_key: |
---|
| 383 | ctx.msg('Checking for FFT implementation', 'fftw3') |
---|
| 384 | elif 'HAVE_ACCELERATE' in ctx.env.define_key: |
---|
| 385 | ctx.msg('Checking for FFT implementation', 'vDSP') |
---|
[986131d] | 386 | elif 'HAVE_INTEL_IPP' in ctx.env.define_key: |
---|
| 387 | ctx.msg('Checking for FFT implementation', 'Intel IPP') |
---|
[36f954a] | 388 | else: |
---|
[a93dab3] | 389 | ctx.msg('Checking for FFT implementation', 'ooura') |
---|
| 390 | |
---|
| 391 | # check for libsndfile |
---|
| 392 | if (ctx.options.enable_sndfile != False): |
---|
[badb525] | 393 | ctx.check_cfg(package = 'sndfile', |
---|
| 394 | args = '--cflags --libs sndfile >= 1.0.4', |
---|
[795fcd9] | 395 | mandatory = ctx.options.enable_sndfile) |
---|
[a93dab3] | 396 | |
---|
| 397 | # check for libsamplerate |
---|
[8be88e7] | 398 | if (ctx.options.enable_double): |
---|
| 399 | if (ctx.options.enable_samplerate): |
---|
[19237a7] | 400 | ctx.fatal("Could not compile aubio in double precision mode' \ |
---|
| 401 | ' with libsamplerate") |
---|
[8be88e7] | 402 | else: |
---|
| 403 | ctx.options.enable_samplerate = False |
---|
[19237a7] | 404 | ctx.msg('Checking if using samplerate', |
---|
| 405 | 'no (disabled in double precision mode)', color = 'YELLOW') |
---|
[a93dab3] | 406 | if (ctx.options.enable_samplerate != False): |
---|
[badb525] | 407 | ctx.check_cfg(package = 'samplerate', |
---|
| 408 | args = '--cflags --libs samplerate >= 0.0.15', |
---|
[795fcd9] | 409 | mandatory = ctx.options.enable_samplerate) |
---|
[a93dab3] | 410 | |
---|
| 411 | # check for jack |
---|
| 412 | if (ctx.options.enable_jack != False): |
---|
[eb99982] | 413 | ctx.check_cfg(package = 'jack', |
---|
[795fcd9] | 414 | args = '--cflags --libs', |
---|
| 415 | mandatory = ctx.options.enable_jack) |
---|
[a93dab3] | 416 | |
---|
| 417 | # check for libav |
---|
| 418 | if (ctx.options.enable_avcodec != False): |
---|
[badb525] | 419 | ctx.check_cfg(package = 'libavcodec', |
---|
| 420 | args = '--cflags --libs libavcodec >= 54.35.0', |
---|
| 421 | uselib_store = 'AVCODEC', |
---|
[795fcd9] | 422 | mandatory = ctx.options.enable_avcodec) |
---|
[badb525] | 423 | ctx.check_cfg(package = 'libavformat', |
---|
| 424 | args = '--cflags --libs libavformat >= 52.3.0', |
---|
| 425 | uselib_store = 'AVFORMAT', |
---|
[795fcd9] | 426 | mandatory = ctx.options.enable_avcodec) |
---|
[badb525] | 427 | ctx.check_cfg(package = 'libavutil', |
---|
| 428 | args = '--cflags --libs libavutil >= 52.3.0', |
---|
| 429 | uselib_store = 'AVUTIL', |
---|
[795fcd9] | 430 | mandatory = ctx.options.enable_avcodec) |
---|
[badb525] | 431 | ctx.check_cfg(package = 'libswresample', |
---|
[65b5381] | 432 | args = '--cflags --libs libswresample >= 1.2.0', |
---|
[badb525] | 433 | uselib_store = 'SWRESAMPLE', |
---|
[d82e7a4] | 434 | mandatory = False) |
---|
| 435 | if 'HAVE_SWRESAMPLE' not in ctx.env: |
---|
[badb525] | 436 | ctx.check_cfg(package = 'libavresample', |
---|
| 437 | args = '--cflags --libs libavresample >= 1.0.1', |
---|
| 438 | uselib_store = 'AVRESAMPLE', |
---|
[d82e7a4] | 439 | mandatory = False) |
---|
| 440 | |
---|
| 441 | msg_check = 'Checking for all libav libraries' |
---|
| 442 | if 'HAVE_AVCODEC' not in ctx.env: |
---|
| 443 | ctx.msg(msg_check, 'not found (missing avcodec)', color = 'YELLOW') |
---|
| 444 | elif 'HAVE_AVFORMAT' not in ctx.env: |
---|
| 445 | ctx.msg(msg_check, 'not found (missing avformat)', color = 'YELLOW') |
---|
| 446 | elif 'HAVE_AVUTIL' not in ctx.env: |
---|
| 447 | ctx.msg(msg_check, 'not found (missing avutil)', color = 'YELLOW') |
---|
[19237a7] | 448 | elif 'HAVE_SWRESAMPLE' not in ctx.env \ |
---|
| 449 | and 'HAVE_AVRESAMPLE' not in ctx.env: |
---|
[c3b3b84] | 450 | resample_missing = 'not found (avresample or swresample required)' |
---|
| 451 | ctx.msg(msg_check, resample_missing, color = 'YELLOW') |
---|
[549928e] | 452 | else: |
---|
[d82e7a4] | 453 | ctx.msg(msg_check, 'yes') |
---|
| 454 | if 'HAVE_SWRESAMPLE' in ctx.env: |
---|
| 455 | ctx.define('HAVE_SWRESAMPLE', 1) |
---|
| 456 | elif 'HAVE_AVRESAMPLE' in ctx.env: |
---|
| 457 | ctx.define('HAVE_AVRESAMPLE', 1) |
---|
| 458 | ctx.define('HAVE_LIBAV', 1) |
---|
[a93dab3] | 459 | |
---|
[f9a543e] | 460 | if (ctx.options.enable_wavread != False): |
---|
| 461 | ctx.define('HAVE_WAVREAD', 1) |
---|
[19237a7] | 462 | ctx.msg('Checking if using source_wavread', |
---|
| 463 | ctx.options.enable_wavread and 'yes' or 'no') |
---|
[f9a543e] | 464 | if (ctx.options.enable_wavwrite!= False): |
---|
| 465 | ctx.define('HAVE_WAVWRITE', 1) |
---|
[19237a7] | 466 | ctx.msg('Checking if using sink_wavwrite', |
---|
| 467 | ctx.options.enable_wavwrite and 'yes' or 'no') |
---|
[5158c22] | 468 | |
---|
[fe05d1f] | 469 | # use BLAS/ATLAS |
---|
| 470 | if (ctx.options.enable_blas != False): |
---|
| 471 | ctx.check_cfg(package = 'blas', |
---|
| 472 | args = '--cflags --libs', |
---|
| 473 | uselib_store='BLAS', mandatory = ctx.options.enable_blas) |
---|
| 474 | if 'LIB_BLAS' in ctx.env: |
---|
| 475 | blas_header = None |
---|
| 476 | if ctx.env['LIBPATH_BLAS']: |
---|
| 477 | if 'atlas' in ctx.env['LIBPATH_BLAS'][0]: |
---|
| 478 | blas_header = 'atlas/cblas.h' |
---|
| 479 | elif 'openblas' in ctx.env['LIBPATH_BLAS'][0]: |
---|
| 480 | blas_header = 'openblas/cblas.h' |
---|
| 481 | else: |
---|
| 482 | blas_header = 'cblas.h' |
---|
| 483 | ctx.check(header_name = blas_header, mandatory = |
---|
| 484 | ctx.options.enable_atlas) |
---|
[f0ce36a1] | 485 | |
---|
[a93dab3] | 486 | # use memcpy hacks |
---|
| 487 | if (ctx.options.enable_memcpy == True): |
---|
| 488 | ctx.define('HAVE_MEMCPY_HACKS', 1) |
---|
| 489 | |
---|
| 490 | # write configuration header |
---|
| 491 | ctx.write_config_header('src/config.h') |
---|
| 492 | |
---|
[06c6d7d] | 493 | # the following defines will be passed as arguments to the compiler |
---|
| 494 | # instead of being written to src/config.h |
---|
[1910fed] | 495 | ctx.define('HAVE_CONFIG_H', 1) |
---|
[06c6d7d] | 496 | |
---|
[a93dab3] | 497 | # add some defines used in examples |
---|
| 498 | ctx.define('AUBIO_PREFIX', ctx.env['PREFIX']) |
---|
| 499 | ctx.define('PACKAGE', APPNAME) |
---|
| 500 | |
---|
[06c6d7d] | 501 | # double precision mode |
---|
| 502 | if (ctx.options.enable_double == True): |
---|
| 503 | ctx.define('HAVE_AUBIO_DOUBLE', 1) |
---|
| 504 | |
---|
[a33d406] | 505 | if (ctx.options.enable_docs != False): |
---|
| 506 | # check if txt2man is installed, optional |
---|
| 507 | try: |
---|
| 508 | ctx.find_program('txt2man', var='TXT2MAN') |
---|
| 509 | except ctx.errors.ConfigurationError: |
---|
| 510 | ctx.to_log('txt2man was not found (ignoring)') |
---|
[000b090] | 511 | |
---|
[a33d406] | 512 | # check if doxygen is installed, optional |
---|
| 513 | try: |
---|
| 514 | ctx.find_program('doxygen', var='DOXYGEN') |
---|
| 515 | except ctx.errors.ConfigurationError: |
---|
| 516 | ctx.to_log('doxygen was not found (ignoring)') |
---|
[52a25e5] | 517 | |
---|
[7800335] | 518 | # check if sphinx-build is installed, optional |
---|
| 519 | try: |
---|
| 520 | ctx.find_program('sphinx-build', var='SPHINX') |
---|
| 521 | except ctx.errors.ConfigurationError: |
---|
| 522 | ctx.to_log('sphinx-build was not found (ignoring)') |
---|
| 523 | |
---|
[6ed0f4e] | 524 | def build(bld): |
---|
[985a5d1] | 525 | bld.env['VERSION'] = VERSION |
---|
| 526 | bld.env['LIB_VERSION'] = LIB_VERSION |
---|
| 527 | |
---|
[7b38f3f] | 528 | # main source |
---|
[985a5d1] | 529 | bld.recurse('src') |
---|
[fee0094] | 530 | |
---|
[7b38f3f] | 531 | # add sub directories |
---|
[985a5d1] | 532 | if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']: |
---|
[9fabad5] | 533 | if bld.env['DEST_OS']=='emscripten' and not bld.options.testcmd: |
---|
| 534 | bld.options.testcmd = 'node %s' |
---|
[445e60f5] | 535 | if bld.options.enable_examples: |
---|
| 536 | bld.recurse('examples') |
---|
| 537 | if bld.options.enable_tests: |
---|
| 538 | bld.recurse('tests') |
---|
[985a5d1] | 539 | |
---|
[7b38f3f] | 540 | # pkg-config template |
---|
[985a5d1] | 541 | bld( source = 'aubio.pc.in' ) |
---|
| 542 | |
---|
[7b38f3f] | 543 | # documentation |
---|
| 544 | txt2man(bld) |
---|
| 545 | doxygen(bld) |
---|
| 546 | sphinx(bld) |
---|
| 547 | |
---|
[9ffa590] | 548 | from waflib.Tools import waf_unit_test |
---|
| 549 | bld.add_post_fun(waf_unit_test.summary) |
---|
| 550 | bld.add_post_fun(waf_unit_test.set_exit_code) |
---|
| 551 | |
---|
[7b38f3f] | 552 | def txt2man(bld): |
---|
[52a25e5] | 553 | # build manpages from txt files using txt2man |
---|
[403e9dd] | 554 | if bld.env['TXT2MAN']: |
---|
[985a5d1] | 555 | from waflib import TaskGen |
---|
| 556 | if 'MANDIR' not in bld.env: |
---|
[641e533] | 557 | bld.env['MANDIR'] = bld.env['DATAROOTDIR'] + '/man' |
---|
[e3b77e8] | 558 | bld.env.VERSION = VERSION |
---|
[403e9dd] | 559 | rule_str = '${TXT2MAN} -t `basename ${TGT} | cut -f 1 -d . | tr a-z A-Z`' |
---|
| 560 | rule_str += ' -r ${PACKAGE}\\ ${VERSION} -P ${PACKAGE}' |
---|
| 561 | rule_str += ' -v ${PACKAGE}\\ User\\\'s\\ manual' |
---|
| 562 | rule_str += ' -s 1 ${SRC} > ${TGT}' |
---|
[985a5d1] | 563 | TaskGen.declare_chain( |
---|
[403e9dd] | 564 | name = 'txt2man', |
---|
| 565 | rule = rule_str, |
---|
| 566 | ext_in = '.txt', |
---|
[985a5d1] | 567 | ext_out = '.1', |
---|
| 568 | reentrant = False, |
---|
| 569 | install_path = '${MANDIR}/man1', |
---|
| 570 | ) |
---|
[403e9dd] | 571 | bld( source = bld.path.ant_glob('doc/*.txt') ) |
---|
[985a5d1] | 572 | |
---|
[7b38f3f] | 573 | def doxygen(bld): |
---|
[52a25e5] | 574 | # build documentation from source files using doxygen |
---|
| 575 | if bld.env['DOXYGEN']: |
---|
[a24a84e] | 576 | bld.env.VERSION = VERSION |
---|
[6383ca4] | 577 | rule = '( cat ${SRC[0]} && echo PROJECT_NUMBER=${VERSION}' |
---|
| 578 | rule += ' && echo OUTPUT_DIRECTORY=%s && echo HTML_OUTPUT=%s )' |
---|
[a24a84e] | 579 | rule += ' | doxygen - > /dev/null' |
---|
[6383ca4] | 580 | rule %= (os.path.abspath(out), 'api') |
---|
[a24a84e] | 581 | bld( name = 'doxygen', rule = rule, |
---|
[6383ca4] | 582 | source = ['doc/web.cfg'] |
---|
| 583 | + bld.path.find_dir('src').ant_glob('**/*.h'), |
---|
| 584 | target = bld.path.find_or_declare('api/index.html'), |
---|
| 585 | cwd = bld.path.find_dir('doc')) |
---|
[2d64a24] | 586 | # evaluate nodes lazily to prevent build directory traversal warnings |
---|
[6383ca4] | 587 | bld.install_files('${DATAROOTDIR}/doc/libaubio-doc/api', |
---|
[2d64a24] | 588 | bld.path.find_or_declare('api').ant_glob('**/*', |
---|
| 589 | generator=True), cwd=bld.path.find_or_declare('api'), |
---|
[6383ca4] | 590 | relative_trick=True) |
---|
[7800335] | 591 | |
---|
[7b38f3f] | 592 | def sphinx(bld): |
---|
[6383ca4] | 593 | # build documentation from source files using sphinx-build |
---|
| 594 | try: |
---|
| 595 | import aubio |
---|
| 596 | has_aubio = True |
---|
| 597 | except ImportError: |
---|
| 598 | from waflib import Logs |
---|
| 599 | Logs.pprint('YELLOW', "Sphinx manual: install aubio first") |
---|
| 600 | has_aubio = False |
---|
| 601 | if bld.env['SPHINX'] and has_aubio: |
---|
[e3b77e8] | 602 | bld.env.VERSION = VERSION |
---|
[6383ca4] | 603 | rule = '${SPHINX} -b html -D release=${VERSION}' \ |
---|
| 604 | ' -D version=${VERSION} -W -a -q' \ |
---|
| 605 | ' -d %s ' % os.path.join(os.path.abspath(out), 'doctrees') |
---|
| 606 | rule += ' . %s' % os.path.join(os.path.abspath(out), 'manual') |
---|
| 607 | bld( name = 'sphinx', rule = rule, |
---|
| 608 | cwd = bld.path.find_dir('doc'), |
---|
| 609 | source = bld.path.find_dir('doc').ant_glob('*.rst'), |
---|
| 610 | target = bld.path.find_or_declare('manual/index.html')) |
---|
[2d64a24] | 611 | # evaluate nodes lazily to prevent build directory traversal warnings |
---|
[6383ca4] | 612 | bld.install_files('${DATAROOTDIR}/doc/libaubio-doc/manual', |
---|
[2d64a24] | 613 | bld.path.find_or_declare('manual').ant_glob('**/*', |
---|
| 614 | generator=True), cwd=bld.path.find_or_declare('manual'), |
---|
[6383ca4] | 615 | relative_trick=True) |
---|
[50d56cc] | 616 | |
---|
[7b38f3f] | 617 | # register the previous rules as build rules |
---|
| 618 | from waflib.Build import BuildContext |
---|
| 619 | |
---|
| 620 | class build_txt2man(BuildContext): |
---|
| 621 | cmd = 'txt2man' |
---|
| 622 | fun = 'txt2man' |
---|
| 623 | |
---|
| 624 | class build_manpages(BuildContext): |
---|
| 625 | cmd = 'manpages' |
---|
| 626 | fun = 'txt2man' |
---|
| 627 | |
---|
| 628 | class build_sphinx(BuildContext): |
---|
| 629 | cmd = 'sphinx' |
---|
| 630 | fun = 'sphinx' |
---|
| 631 | |
---|
| 632 | class build_doxygen(BuildContext): |
---|
| 633 | cmd = 'doxygen' |
---|
| 634 | fun = 'doxygen' |
---|
| 635 | |
---|
[30250de] | 636 | def shutdown(bld): |
---|
[985a5d1] | 637 | from waflib import Logs |
---|
| 638 | if bld.options.target_platform in ['ios', 'iosimulator']: |
---|
[19237a7] | 639 | msg ='building for %s, contact the author for a commercial license' \ |
---|
| 640 | % bld.options.target_platform |
---|
[985a5d1] | 641 | Logs.pprint('RED', msg) |
---|
| 642 | msg =' Paul Brossier <piem@aubio.org>' |
---|
| 643 | Logs.pprint('RED', msg) |
---|
[b4d1ba1] | 644 | |
---|
| 645 | def dist(ctx): |
---|
[19237a7] | 646 | ctx.excl = ' **/.waf*' |
---|
| 647 | ctx.excl += ' **/.git*' |
---|
| 648 | ctx.excl += ' **/*~ **/*.pyc **/*.swp **/*.swo **/*.swn **/.lock-w*' |
---|
[b4d1ba1] | 649 | ctx.excl += ' **/build/*' |
---|
[99d8cbb] | 650 | ctx.excl += ' doc/_build' |
---|
| 651 | ctx.excl += ' python/demos_*' |
---|
[22dd9dc] | 652 | ctx.excl += ' **/python/gen **/python/build **/python/dist' |
---|
[981e7082] | 653 | ctx.excl += ' **/python/ext/config.h' |
---|
[99d8cbb] | 654 | ctx.excl += ' **/python/lib/aubio/_aubio.so' |
---|
| 655 | ctx.excl += ' **.egg-info' |
---|
[a4afbac] | 656 | ctx.excl += ' **/.eggs' |
---|
| 657 | ctx.excl += ' **/.pytest_cache' |
---|
| 658 | ctx.excl += ' **/.cache' |
---|
[22dd9dc] | 659 | ctx.excl += ' **/**.zip **/**.tar.bz2' |
---|
[fcc11e9] | 660 | ctx.excl += ' **.tar.bz2**' |
---|
[a93dab3] | 661 | ctx.excl += ' **/doc/full/* **/doc/web/*' |
---|
[e57a7d4] | 662 | ctx.excl += ' **/doc/full.cfg' |
---|
[b4d1ba1] | 663 | ctx.excl += ' **/python/*.db' |
---|
| 664 | ctx.excl += ' **/python.old/*' |
---|
[981e7082] | 665 | ctx.excl += ' **/python/*/*.old' |
---|
[429ff6c] | 666 | ctx.excl += ' **/python/lib/aubio/*.so' |
---|
[172b1fe] | 667 | ctx.excl += ' **/python/tests/sounds' |
---|
[7b2d740] | 668 | ctx.excl += ' **/**.asc' |
---|
[5e544f1] | 669 | ctx.excl += ' **/dist*' |
---|
[73aac2a] | 670 | ctx.excl += ' **/.DS_Store' |
---|
| 671 | ctx.excl += ' **/.travis.yml' |
---|
[5e544f1] | 672 | ctx.excl += ' **/.appveyor.yml' |
---|
[8142a7e] | 673 | ctx.excl += ' **/.circleci/*' |
---|
[622b6dc] | 674 | ctx.excl += ' **/azure-pipelines.yml' |
---|
[429ff6c] | 675 | ctx.excl += ' **/.coverage*' |
---|