source: wscript @ 0b947f9

Last change on this file since 0b947f9 was ae9b76b, checked in by Paul Brossier <piem@piem.org>, 12 months ago

[waf] remove avresample from wscript

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