source: wscript @ 9209c79

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

wscript, src/io/*.c: use custom defines instead of APPLE

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