source: wscript @ db86a46

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

wscript: update to ios 7.1, disable arm64 for now

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