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