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