source: wscript @ f2ce0fc

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since f2ce0fc was fb5838a, checked in by Paul Brossier <piem@piem.org>, 8 years ago

wscript, src/wscript_build: new build platform emscripten

  • Property mode set to 100644
File size: 14.9 KB
Line 
1#! /usr/bin/python
2#
3# usage:
4#   $ python waf --help
5#
6# example:
7#   $ ./waf distclean configure build
8#
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/ .
12
13APPNAME = 'aubio'
14
15# source VERSION
16for l in open('VERSION').readlines(): exec (l.strip())
17
18VERSION = '.'.join ([str(x) for x in [
19    AUBIO_MAJOR_VERSION,
20    AUBIO_MINOR_VERSION,
21    AUBIO_PATCH_VERSION
22    ]]) + AUBIO_VERSION_STATUS
23
24LIB_VERSION = '.'.join ([str(x) for x in [
25    LIBAUBIO_LT_CUR,
26    LIBAUBIO_LT_REV,
27    LIBAUBIO_LT_AGE]])
28
29top = '.'
30out = 'build'
31
32def add_option_enable_disable(ctx, name, default = None,
33        help_str = None, help_disable_str = None):
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 )
46
47def options(ctx):
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)')
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)')
78    add_option_enable_disable(ctx, 'accelerate', default = None,
79            help_str = 'use Accelerate framework (darwin only) (auto)',
80            help_disable_str = 'do not use Accelerate framework')
81    add_option_enable_disable(ctx, 'apple-audio', default = None,
82            help_str = 'use CoreFoundation (darwin only) (auto)',
83            help_disable_str = 'do not use CoreFoundation framework')
84    add_option_enable_disable(ctx, 'atlas', default = None,
85            help_str = 'use Atlas library (auto)',
86            help_disable_str = 'do not use Atlas library')
87
88    add_option_enable_disable(ctx, 'docs', default = None,
89            help_str = 'build documentation (auto)',
90            help_disable_str = 'do not build documentation')
91
92    ctx.add_option('--with-target-platform', type='string',
93            help='set target platform for cross-compilation', dest='target_platform')
94
95    ctx.load('compiler_c')
96    ctx.load('waf_unit_test')
97    ctx.load('gnu_dirs')
98
99def configure(ctx):
100    from waflib import Options
101    ctx.load('compiler_c')
102    ctx.load('waf_unit_test')
103    ctx.load('gnu_dirs')
104
105    target_platform = Options.platform
106    if ctx.options.target_platform:
107        target_platform = ctx.options.target_platform
108    ctx.env['DEST_OS'] = target_platform
109
110    if 'CL.exe' not in ctx.env.CC[0]:
111        ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra']
112    else:
113        ctx.env.CFLAGS += ['-Wall']
114
115    if target_platform not in ['win32', 'win64']:
116        ctx.env.CFLAGS += ['-fPIC']
117    else:
118        ctx.define('HAVE_WIN_HACKS', 1)
119        ctx.env['cshlib_PATTERN'] = 'lib%s.dll'
120
121    if target_platform == 'darwin' and ctx.options.enable_fat:
122        ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
123        ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
124
125    if target_platform in [ 'darwin', 'ios', 'iosimulator']:
126        if (ctx.options.enable_apple_audio != False):
127            ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox']
128            ctx.define('HAVE_SOURCE_APPLE_AUDIO', 1)
129            ctx.define('HAVE_SINK_APPLE_AUDIO', 1)
130        if (ctx.options.enable_accelerate != False):
131            ctx.define('HAVE_ACCELERATE', 1)
132            ctx.env.FRAMEWORK += ['Accelerate']
133
134    if target_platform in [ 'ios', 'iosimulator' ]:
135        MINSDKVER="6.1"
136        ctx.env.CFLAGS += ['-std=c99']
137        if (ctx.options.enable_apple_audio != False):
138            ctx.define('HAVE_AUDIO_UNIT', 1)
139            #ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox']
140        if target_platform == 'ios':
141            DEVROOT = "/Applications/Xcode.app/Contents"
142            DEVROOT += "/Developer/Platforms/iPhoneOS.platform/Developer"
143            SDKROOT = "%(DEVROOT)s/SDKs/iPhoneOS.sdk" % locals()
144            ctx.env.CFLAGS += [ '-fembed-bitcode' ]
145            ctx.env.CFLAGS += [ '-arch', 'arm64' ]
146            ctx.env.CFLAGS += [ '-arch', 'armv7' ]
147            ctx.env.CFLAGS += [ '-arch', 'armv7s' ]
148            ctx.env.LINKFLAGS += [ '-arch', 'arm64' ]
149            ctx.env.LINKFLAGS += ['-arch', 'armv7']
150            ctx.env.LINKFLAGS += ['-arch', 'armv7s']
151            ctx.env.CFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
152            ctx.env.LINKFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
153        else:
154            DEVROOT = "/Applications/Xcode.app/Contents"
155            DEVROOT += "/Developer/Platforms/iPhoneSimulator.platform/Developer"
156            SDKROOT = "%(DEVROOT)s/SDKs/iPhoneSimulator.sdk" % locals()
157            ctx.env.CFLAGS += [ '-arch', 'i386' ]
158            ctx.env.CFLAGS += [ '-arch', 'x86_64' ]
159            ctx.env.LINKFLAGS += ['-arch', 'i386']
160            ctx.env.LINKFLAGS += ['-arch', 'x86_64']
161            ctx.env.CFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
162            ctx.env.LINKFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
163        ctx.env.CFLAGS += [ '-isysroot' , SDKROOT]
164        ctx.env.LINKFLAGS += [ '-isysroot' , SDKROOT]
165
166    if target_platform == 'emscripten':
167        import os.path
168        ctx.env.CFLAGS += [ '-I' + os.path.join(os.environ['EMSCRIPTEN'], 'system', 'include') ]
169        ctx.env.CFLAGS += ['-Oz']
170        ctx.env.cprogram_PATTERN = "%s.js"
171        if (ctx.options.enable_atlas != True):
172            ctx.options.enable_atlas = False
173
174    # check for required headers
175    ctx.check(header_name='stdlib.h')
176    ctx.check(header_name='stdio.h')
177    ctx.check(header_name='math.h')
178    ctx.check(header_name='string.h')
179    ctx.check(header_name='limits.h')
180
181    # check support for C99 __VA_ARGS__ macros
182    check_c99_varargs = '''
183#include <stdio.h>
184#define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
185'''
186
187    if ctx.check_cc(fragment = check_c99_varargs,
188            type='cstlib',
189            msg = 'Checking for C99 __VA_ARGS__ macro',
190            mandatory = False):
191        ctx.define('HAVE_C99_VARARGS_MACROS', 1)
192
193    # double precision mode
194    if (ctx.options.enable_double == True):
195        ctx.define('HAVE_AUBIO_DOUBLE', 1)
196    else:
197        ctx.define('HAVE_AUBIO_DOUBLE', 0)
198
199    # optionally use complex.h
200    if (ctx.options.enable_complex == True):
201        ctx.check(header_name='complex.h')
202
203    # check for fftw3
204    if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False):
205        # one of fftwf or fftw3f
206        if (ctx.options.enable_fftw3f != False):
207            ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
208                    args = '--cflags --libs',
209                    mandatory = ctx.options.enable_fftw3f)
210            if (ctx.options.enable_double == True):
211                ctx.msg('Warning',
212                        'fftw3f enabled, but compiling in double precision!')
213        else:
214            # fftw3f disabled, take most sensible one according to
215            # enable_double
216            if (ctx.options.enable_double == True):
217                ctx.check_cfg(package = 'fftw3', atleast_version = '3.0.0',
218                        args = '--cflags --libs', mandatory =
219                        ctx.options.enable_fftw3)
220            else:
221                ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
222                        args = '--cflags --libs',
223                        mandatory = ctx.options.enable_fftw3)
224        ctx.define('HAVE_FFTW3', 1)
225
226    # fftw not enabled, use vDSP or ooura
227    if 'HAVE_FFTW3F' in ctx.env.define_key:
228        ctx.msg('Checking for FFT implementation', 'fftw3f')
229    elif 'HAVE_FFTW3' in ctx.env.define_key:
230        ctx.msg('Checking for FFT implementation', 'fftw3')
231    elif 'HAVE_ACCELERATE' in ctx.env.define_key:
232        ctx.msg('Checking for FFT implementation', 'vDSP')
233    else:
234        ctx.msg('Checking for FFT implementation', 'ooura')
235
236    # check for libsndfile
237    if (ctx.options.enable_sndfile != False):
238        ctx.check_cfg(package = 'sndfile', atleast_version = '1.0.4',
239                args = '--cflags --libs',
240                mandatory = ctx.options.enable_sndfile)
241
242    # check for libsamplerate
243    if (ctx.options.enable_samplerate != False):
244        ctx.check_cfg(package = 'samplerate', atleast_version = '0.0.15',
245                args = '--cflags --libs',
246                mandatory = ctx.options.enable_samplerate)
247
248    # check for jack
249    if (ctx.options.enable_jack != False):
250        ctx.check_cfg(package = 'jack',
251                args = '--cflags --libs',
252                mandatory = ctx.options.enable_jack)
253
254    # check for libav
255    if (ctx.options.enable_avcodec != False):
256        ctx.check_cfg(package = 'libavcodec', atleast_version = '54.35.0',
257                args = '--cflags --libs', uselib_store = 'AVCODEC',
258                mandatory = ctx.options.enable_avcodec)
259        ctx.check_cfg(package = 'libavformat', atleast_version = '52.3.0',
260                args = '--cflags --libs', uselib_store = 'AVFORMAT',
261                mandatory = ctx.options.enable_avcodec)
262        ctx.check_cfg(package = 'libavutil', atleast_version = '52.3.0',
263                args = '--cflags --libs', uselib_store = 'AVUTIL',
264                mandatory = ctx.options.enable_avcodec)
265        ctx.check_cfg(package = 'libavresample', atleast_version = '1.0.1',
266                args = '--cflags --libs', uselib_store = 'AVRESAMPLE',
267                mandatory = ctx.options.enable_avcodec)
268        if all ( 'HAVE_' + i in ctx.env
269                for i in ['AVCODEC', 'AVFORMAT', 'AVUTIL', 'AVRESAMPLE'] ):
270            ctx.define('HAVE_LIBAV', 1)
271            ctx.msg('Checking for all libav libraries', 'yes')
272        else:
273            ctx.msg('Checking for all libav libraries', 'not found', color = 'YELLOW')
274
275    ctx.define('HAVE_WAVREAD', 1)
276    ctx.define('HAVE_WAVWRITE', 1)
277
278    # use ATLAS
279    if (ctx.options.enable_atlas != False):
280        ctx.check(header_name = 'atlas/cblas.h', mandatory = ctx.options.enable_atlas)
281        #ctx.check(lib = 'lapack', uselib_store = 'LAPACK', mandatory = ctx.options.enable_atlas)
282        ctx.check(lib = 'cblas', uselib_store = 'BLAS', mandatory = ctx.options.enable_atlas)
283
284    # use memcpy hacks
285    if (ctx.options.enable_memcpy == True):
286        ctx.define('HAVE_MEMCPY_HACKS', 1)
287    else:
288        ctx.define('HAVE_MEMCPY_HACKS', 0)
289
290    # write configuration header
291    ctx.write_config_header('src/config.h')
292
293    # add some defines used in examples
294    ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
295    ctx.define('PACKAGE', APPNAME)
296
297    if (ctx.options.enable_docs != False):
298        # check if txt2man is installed, optional
299        try:
300          ctx.find_program('txt2man', var='TXT2MAN')
301        except ctx.errors.ConfigurationError:
302          ctx.to_log('txt2man was not found (ignoring)')
303
304        # check if doxygen is installed, optional
305        try:
306          ctx.find_program('doxygen', var='DOXYGEN')
307        except ctx.errors.ConfigurationError:
308          ctx.to_log('doxygen was not found (ignoring)')
309
310def build(bld):
311    bld.env['VERSION'] = VERSION
312    bld.env['LIB_VERSION'] = LIB_VERSION
313
314    # add sub directories
315    bld.recurse('src')
316    if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']:
317        bld.recurse('examples')
318        bld.recurse('tests')
319
320    bld( source = 'aubio.pc.in' )
321
322    # build manpages from txt files using txt2man
323    if bld.env['TXT2MAN']:
324        from waflib import TaskGen
325        if 'MANDIR' not in bld.env:
326            bld.env['MANDIR'] = bld.env['PREFIX'] + '/share/man'
327        rule_str = '${TXT2MAN} -t `basename ${TGT} | cut -f 1 -d . | tr a-z A-Z`'
328        rule_str += ' -r ${PACKAGE}\\ ${VERSION} -P ${PACKAGE}'
329        rule_str += ' -v ${PACKAGE}\\ User\\\'s\\ manual'
330        rule_str += ' -s 1 ${SRC} > ${TGT}'
331        TaskGen.declare_chain(
332                name      = 'txt2man',
333                rule      = rule_str,
334                ext_in    = '.txt',
335                ext_out   = '.1',
336                reentrant = False,
337                install_path =  '${MANDIR}/man1',
338                )
339        bld( source = bld.path.ant_glob('doc/*.txt') )
340
341    # build documentation from source files using doxygen
342    if bld.env['DOXYGEN']:
343        bld( name = 'doxygen', rule = 'doxygen ${SRC} > /dev/null',
344                source = 'doc/web.cfg',
345                cwd = 'doc')
346        bld.install_files( '${PREFIX}' + '/share/doc/libaubio-doc',
347                bld.path.ant_glob('doc/web/html/**'),
348                cwd = bld.path.find_dir ('doc/web'),
349                relative_trick = True)
350
351def shutdown(bld):
352    from waflib import Logs
353    if bld.options.target_platform in ['ios', 'iosimulator']:
354        msg ='building for %s, contact the author for a commercial license' % bld.options.target_platform
355        Logs.pprint('RED', msg)
356        msg ='   Paul Brossier <piem@aubio.org>'
357        Logs.pprint('RED', msg)
358
359def dist(ctx):
360    ctx.excl  = ' **/.waf-1* **/*~ **/*.pyc **/*.swp **/.lock-w* **/.git*'
361    ctx.excl += ' **/build/*'
362    ctx.excl += ' **/python/gen **/python/build **/python/dist'
363    ctx.excl += ' **/**.zip **/**.tar.bz2'
364    ctx.excl += ' **/doc/full/* **/doc/web/*'
365    ctx.excl += ' **/python/*.db'
366    ctx.excl += ' **/python.old/*'
367    ctx.excl += ' **/python/tests/sounds'
368    ctx.excl += ' **/**.asc'
Note: See TracBrowser for help on using the repository browser.