source: wscript @ 7ac374d

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5sampler
Last change on this file since 7ac374d was 7b2d740, checked in by Paul Brossier <piem@piem.org>, 9 years ago

wscript: add *.asc

  • Property mode set to 100644
File size: 13.2 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
13APPNAME = 'aubio'
[5820107]14
[6b14351]15# source VERSION
[5820107]16for l in open('VERSION').readlines(): exec (l.strip())
17
[6b14351]18VERSION = '.'.join ([str(x) for x in [
19    AUBIO_MAJOR_VERSION,
20    AUBIO_MINOR_VERSION,
21    AUBIO_PATCH_VERSION
22    ]]) + AUBIO_VERSION_STATUS
[e565c649]23
[6b14351]24LIB_VERSION = '.'.join ([str(x) for x in [
25    LIBAUBIO_LT_CUR,
26    LIBAUBIO_LT_REV,
27    LIBAUBIO_LT_AGE]])
[e565c649]28
[46378b3]29top = '.'
30out = 'build'
[000b090]31
[6b14351]32def add_option_enable_disable(ctx, name, default = None,
33        help_str = None, help_disable_str = None):
[a93dab3]34    if help_str == None:
35        help_str = 'enable ' + name + ' support'
36    if help_disable_str == None:
37        help_disable_str = 'do not ' + help_str
38    ctx.add_option('--enable-' + name, action = 'store_true',
39            default = default,
40            dest = 'enable_' + name.replace('-','_'),
41            help = help_str)
42    ctx.add_option('--disable-' + name, action = 'store_false',
43            #default = default,
44            dest = 'enable_' + name.replace('-','_'),
45            help = help_disable_str )
[3819aca]46
[d41bc4d]47def options(ctx):
[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')
54    add_option_enable_disable(ctx, 'complex', default = False,
55            help_str ='compile with C99 complex',
56            help_disable_str = 'do not use C99 complex (default)' )
57    add_option_enable_disable(ctx, 'jack', default = None,
58            help_str = 'compile with jack (auto)',
59            help_disable_str = 'disable jack support')
60    add_option_enable_disable(ctx, 'sndfile', default = None,
61            help_str = 'compile with sndfile (auto)',
62            help_disable_str = 'disable sndfile')
63    add_option_enable_disable(ctx, 'avcodec', default = None,
64            help_str = 'compile with libavcodec (auto)',
65            help_disable_str = 'disable libavcodec')
66    add_option_enable_disable(ctx, 'samplerate', default = None,
67            help_str = 'compile with samplerate (auto)',
68            help_disable_str = 'disable samplerate')
69    add_option_enable_disable(ctx, 'memcpy', default = True,
70            help_str = 'use memcpy hacks (default)',
71            help_disable_str = 'do not use memcpy hacks')
72    add_option_enable_disable(ctx, 'double', default = False,
73            help_str = 'compile in double precision mode',
74            help_disable_str = 'compile in single precision mode (default)')
[a3de4be]75    add_option_enable_disable(ctx, 'fat', default = False,
76            help_str = 'build fat binaries (darwin only)',
77            help_disable_str = 'do not build fat binaries (default)')
[a93dab3]78
79    ctx.add_option('--with-target-platform', type='string',
80            help='set target platform for cross-compilation', dest='target_platform')
81
82    ctx.load('compiler_c')
83    ctx.load('waf_unit_test')
84    ctx.load('gnu_dirs')
[000b090]85
[d41bc4d]86def configure(ctx):
[a93dab3]87    from waflib import Options
88    ctx.load('compiler_c')
89    ctx.load('waf_unit_test')
90    ctx.load('gnu_dirs')
[06dba46]91
[a93dab3]92    target_platform = Options.platform
93    if ctx.options.target_platform:
94        target_platform = ctx.options.target_platform
95    ctx.env['DEST_OS'] = target_platform
96
[a341685]97    if 'CL.exe' not in ctx.env.CC[0]:
98        ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra']
99    else:
100        ctx.env.CFLAGS += ['-Wall']
101
[06dba46]102    if target_platform not in ['win32', 'win64']:
103        ctx.env.CFLAGS += ['-fPIC']
104    else:
105        ctx.define('HAVE_WIN_HACKS', 1)
106        ctx.env['cshlib_PATTERN'] = 'lib%s.dll'
[a93dab3]107
[a3de4be]108    if target_platform == 'darwin' and ctx.options.enable_fat:
[a93dab3]109        ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
110        ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
[9209c79]111
112    if target_platform in [ 'darwin', 'ios', 'iosimulator']:
[a93dab3]113        ctx.env.FRAMEWORK = ['CoreFoundation', 'AudioToolbox', 'Accelerate']
[9209c79]114        ctx.define('HAVE_SOURCE_APPLE_AUDIO', 1)
115        ctx.define('HAVE_SINK_APPLE_AUDIO', 1)
[a93dab3]116        ctx.define('HAVE_ACCELERATE', 1)
117
118    if target_platform in [ 'ios', 'iosimulator' ]:
119        ctx.define('TARGET_OS_IPHONE', 1)
120        MINSDKVER="6.1"
121        ctx.env.CFLAGS += ['-std=c99']
122        if target_platform == 'ios':
123            DEVROOT = "/Applications/Xcode.app/Contents"
124            DEVROOT += "/Developer/Platforms/iPhoneOS.platform/Developer"
[e11ce489]125            SDKROOT = "%(DEVROOT)s/SDKs/iPhoneOS.sdk" % locals()
[7aa4aaa]126            ctx.env.CFLAGS += [ '-arch', 'arm64' ]
[a93dab3]127            ctx.env.CFLAGS += [ '-arch', 'armv7' ]
128            ctx.env.CFLAGS += [ '-arch', 'armv7s' ]
[7aa4aaa]129            ctx.env.LINKFLAGS += [ '-arch', 'arm64' ]
[a93dab3]130            ctx.env.LINKFLAGS += ['-arch', 'armv7']
131            ctx.env.LINKFLAGS += ['-arch', 'armv7s']
132            ctx.env.CFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
133            ctx.env.LINKFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
134        else:
135            DEVROOT = "/Applications/Xcode.app/Contents"
136            DEVROOT += "/Developer/Platforms/iPhoneSimulator.platform/Developer"
[e11ce489]137            SDKROOT = "%(DEVROOT)s/SDKs/iPhoneSimulator.sdk" % locals()
[a93dab3]138            ctx.env.CFLAGS += [ '-arch', 'i386' ]
139            ctx.env.CFLAGS += [ '-arch', 'x86_64' ]
140            ctx.env.LINKFLAGS += ['-arch', 'i386']
141            ctx.env.LINKFLAGS += ['-arch', 'x86_64']
142            ctx.env.CFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
143            ctx.env.LINKFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
144        ctx.env.CFLAGS += [ '-isysroot' , SDKROOT]
145        ctx.env.LINKFLAGS += [ '-isysroot' , SDKROOT]
146
147    # check for required headers
148    ctx.check(header_name='stdlib.h')
149    ctx.check(header_name='stdio.h')
150    ctx.check(header_name='math.h')
151    ctx.check(header_name='string.h')
152    ctx.check(header_name='limits.h')
153
154    # check support for C99 __VA_ARGS__ macros
155    check_c99_varargs = '''
[0318cc1]156#include <stdio.h>
157#define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
158'''
[a93dab3]159
160    if ctx.check_cc(fragment = check_c99_varargs,
161            type='cstlib',
[413d4bf]162            msg = 'Checking for C99 __VA_ARGS__ macro',
163            mandatory = False):
[a93dab3]164        ctx.define('HAVE_C99_VARARGS_MACROS', 1)
165
166    # double precision mode
167    if (ctx.options.enable_double == True):
168        ctx.define('HAVE_AUBIO_DOUBLE', 1)
169    else:
170        ctx.define('HAVE_AUBIO_DOUBLE', 0)
171
172    # optionally use complex.h
173    if (ctx.options.enable_complex == True):
174        ctx.check(header_name='complex.h')
175
176    # check for fftw3
177    if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False):
178        # one of fftwf or fftw3f
179        if (ctx.options.enable_fftw3f != False):
180            ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
[795fcd9]181                    args = '--cflags --libs',
182                    mandatory = ctx.options.enable_fftw3f)
[a93dab3]183            if (ctx.options.enable_double == True):
[795fcd9]184                ctx.msg('Warning',
185                        'fftw3f enabled, but compiling in double precision!')
[a93dab3]186        else:
[795fcd9]187            # fftw3f disabled, take most sensible one according to
188            # enable_double
[a93dab3]189            if (ctx.options.enable_double == True):
190                ctx.check_cfg(package = 'fftw3', atleast_version = '3.0.0',
[795fcd9]191                        args = '--cflags --libs', mandatory =
192                        ctx.options.enable_fftw3)
[a93dab3]193            else:
194                ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
[795fcd9]195                        args = '--cflags --libs',
196                        mandatory = ctx.options.enable_fftw3)
[a93dab3]197        ctx.define('HAVE_FFTW3', 1)
198
199    # fftw not enabled, use vDSP or ooura
200    if 'HAVE_FFTW3F' in ctx.env.define_key:
201        ctx.msg('Checking for FFT implementation', 'fftw3f')
202    elif 'HAVE_FFTW3' in ctx.env.define_key:
203        ctx.msg('Checking for FFT implementation', 'fftw3')
204    elif 'HAVE_ACCELERATE' in ctx.env.define_key:
205        ctx.msg('Checking for FFT implementation', 'vDSP')
[36f954a]206    else:
[a93dab3]207        ctx.msg('Checking for FFT implementation', 'ooura')
208
209    # check for libsndfile
210    if (ctx.options.enable_sndfile != False):
211        ctx.check_cfg(package = 'sndfile', atleast_version = '1.0.4',
[795fcd9]212                args = '--cflags --libs',
213                mandatory = ctx.options.enable_sndfile)
[a93dab3]214
215    # check for libsamplerate
216    if (ctx.options.enable_samplerate != False):
217        ctx.check_cfg(package = 'samplerate', atleast_version = '0.0.15',
[795fcd9]218                args = '--cflags --libs',
219                mandatory = ctx.options.enable_samplerate)
[a93dab3]220
221    # check for jack
222    if (ctx.options.enable_jack != False):
[eb99982]223        ctx.check_cfg(package = 'jack',
[795fcd9]224                args = '--cflags --libs',
225                mandatory = ctx.options.enable_jack)
[a93dab3]226
227    # check for libav
228    if (ctx.options.enable_avcodec != False):
229        ctx.check_cfg(package = 'libavcodec', atleast_version = '54.35.0',
[795fcd9]230                args = '--cflags --libs', uselib_store = 'AVCODEC',
231                mandatory = ctx.options.enable_avcodec)
[a93dab3]232        ctx.check_cfg(package = 'libavformat', atleast_version = '52.3.0',
[795fcd9]233                args = '--cflags --libs', uselib_store = 'AVFORMAT',
234                mandatory = ctx.options.enable_avcodec)
[a93dab3]235        ctx.check_cfg(package = 'libavutil', atleast_version = '52.3.0',
[795fcd9]236                args = '--cflags --libs', uselib_store = 'AVUTIL',
237                mandatory = ctx.options.enable_avcodec)
[a93dab3]238        ctx.check_cfg(package = 'libavresample', atleast_version = '1.0.1',
[795fcd9]239                args = '--cflags --libs', uselib_store = 'AVRESAMPLE',
240                mandatory = ctx.options.enable_avcodec)
[549928e]241        if all ( 'HAVE_' + i in ctx.env.define_key
242                for i in ['AVCODEC', 'AVFORMAT', 'AVUTIL', 'AVRESAMPLE'] ):
243            ctx.define('HAVE_LIBAV', 1)
244            ctx.msg('Checking for all libav libraries', 'yes')
245        else:
246            ctx.msg('Checking for all libav libraries', 'not found', color = 'YELLOW')
[a93dab3]247
[5158c22]248    ctx.define('HAVE_WAVREAD', 1)
[52ca8a3]249    ctx.define('HAVE_WAVWRITE', 1)
[5158c22]250
[a93dab3]251    # use memcpy hacks
252    if (ctx.options.enable_memcpy == True):
253        ctx.define('HAVE_MEMCPY_HACKS', 1)
254    else:
255        ctx.define('HAVE_MEMCPY_HACKS', 0)
256
257    # write configuration header
258    ctx.write_config_header('src/config.h')
259
260    # add some defines used in examples
261    ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
262    ctx.define('PACKAGE', APPNAME)
263
264    # check if txt2man is installed, optional
265    try:
266      ctx.find_program('txt2man', var='TXT2MAN')
267    except ctx.errors.ConfigurationError:
268      ctx.to_log('txt2man was not found (ignoring)')
[000b090]269
[52a25e5]270    # check if doxygen is installed, optional
271    try:
272      ctx.find_program('doxygen', var='DOXYGEN')
273    except ctx.errors.ConfigurationError:
274      ctx.to_log('doxygen was not found (ignoring)')
275
[6ed0f4e]276def build(bld):
[985a5d1]277    bld.env['VERSION'] = VERSION
278    bld.env['LIB_VERSION'] = LIB_VERSION
279
280    # add sub directories
281    bld.recurse('src')
282    if bld.env['DEST_OS'] not in ['ios', 'iosimulator']:
283        pass
284    if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']:
285        bld.recurse('examples')
286        bld.recurse('tests')
287
288    bld( source = 'aubio.pc.in' )
289
[52a25e5]290    # build manpages from txt files using txt2man
[403e9dd]291    if bld.env['TXT2MAN']:
[985a5d1]292        from waflib import TaskGen
293        if 'MANDIR' not in bld.env:
294            bld.env['MANDIR'] = bld.env['PREFIX'] + '/share/man'
[403e9dd]295        rule_str = '${TXT2MAN} -t `basename ${TGT} | cut -f 1 -d . | tr a-z A-Z`'
296        rule_str += ' -r ${PACKAGE}\\ ${VERSION} -P ${PACKAGE}'
297        rule_str += ' -v ${PACKAGE}\\ User\\\'s\\ manual'
298        rule_str += ' -s 1 ${SRC} > ${TGT}'
[985a5d1]299        TaskGen.declare_chain(
[403e9dd]300                name      = 'txt2man',
301                rule      = rule_str,
302                ext_in    = '.txt',
[985a5d1]303                ext_out   = '.1',
304                reentrant = False,
305                install_path =  '${MANDIR}/man1',
306                )
[403e9dd]307        bld( source = bld.path.ant_glob('doc/*.txt') )
[985a5d1]308
[52a25e5]309    # build documentation from source files using doxygen
310    if bld.env['DOXYGEN']:
311        bld( name = 'doxygen', rule = 'doxygen ${SRC} > /dev/null',
312                source = 'doc/web.cfg',
[b0ab6ef]313                cwd = 'doc')
[52a25e5]314        bld.install_files( '${PREFIX}' + '/share/doc/libaubio-doc',
315                bld.path.ant_glob('doc/web/html/**'),
316                cwd = bld.path.find_dir ('doc/web'),
317                relative_trick = True)
[50d56cc]318
[30250de]319def shutdown(bld):
[985a5d1]320    from waflib import Logs
321    if bld.options.target_platform in ['ios', 'iosimulator']:
322        msg ='building for %s, contact the author for a commercial license' % bld.options.target_platform
323        Logs.pprint('RED', msg)
324        msg ='   Paul Brossier <piem@aubio.org>'
325        Logs.pprint('RED', msg)
[b4d1ba1]326
327def dist(ctx):
328    ctx.excl  = ' **/.waf-1* **/*~ **/*.pyc **/*.swp **/.lock-w* **/.git*'
329    ctx.excl += ' **/build/*'
[22dd9dc]330    ctx.excl += ' **/python/gen **/python/build **/python/dist'
331    ctx.excl += ' **/**.zip **/**.tar.bz2'
[a93dab3]332    ctx.excl += ' **/doc/full/* **/doc/web/*'
[b4d1ba1]333    ctx.excl += ' **/python/*.db'
334    ctx.excl += ' **/python.old/*'
[172b1fe]335    ctx.excl += ' **/python/tests/sounds'
[7b2d740]336    ctx.excl += ' **/**.asc'
Note: See TracBrowser for help on using the repository browser.