source: wscript @ 0318cc1

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

wscript: always use installed external dependancies, simplify

  • Property mode set to 100644
File size: 7.3 KB
Line 
1#! /usr/bin/python
2#
3# waf build script, see http://code.google.com/p/waf/
4# usage:
5#     $ waf distclean configure build
6# get it:
7#     $ svn co http://waf.googlecode.com/svn/trunk /path/to/waf
8#     $ alias waf=/path/to/waf/waf-light
9#
10# TODO
11#  - doc: add doxygen
12#  - tests: move to new unit test system
13
14APPNAME = 'aubio'
15
16# read from VERSION
17for l in open('VERSION').readlines(): exec (l.strip())
18
19VERSION = '.'.join \
20        ([str(x) for x in [AUBIO_MAJOR_VERSION, AUBIO_MINOR_VERSION, AUBIO_PATCH_VERSION]]) \
21        + AUBIO_VERSION_STATUS
22LIB_VERSION = '.'.join \
23        ([str(x) for x in [LIBAUBIO_LT_CUR, LIBAUBIO_LT_REV, LIBAUBIO_LT_AGE]])
24
25import os.path, sys
26if os.path.exists('src/config.h') or os.path.exists('Makefile'):
27    print "Please run 'make distclean' to clean-up autotools files before using waf"
28    sys.exit(1)
29
30top = '.'
31out = 'build'
32
33def options(ctx):
34  ctx.add_option('--enable-double', action='store_true', default=False,
35      help='compile aubio in double precision mode')
36  ctx.add_option('--enable-fftw', action='store_true', default=None,
37      help='compile with ooura instead of fftw')
38  ctx.add_option('--enable-fftw3f', action='store_true', default=None,
39      help='compile with fftw3 instead of fftw3f')
40  ctx.add_option('--enable-complex', action='store_true', default=False,
41      help='compile with C99 complex')
42  ctx.add_option('--enable-jack', action='store_true', default=None,
43      help='compile with jack support')
44  ctx.add_option('--enable-lash', action='store_true', default=None,
45      help='compile with lash support')
46  ctx.add_option('--enable-sndfile', action='store_true', default=None,
47      help='compile with libsndfile support')
48  ctx.add_option('--enable-samplerate', action='store_true', default=None,
49      help='compile with libsamplerate support')
50  ctx.add_option('--with-target-platform', type='string',
51      help='set target platform for cross-compilation', dest='target_platform')
52  ctx.load('compiler_c')
53  ctx.load('waf_unit_test')
54
55def configure(ctx):
56  from waflib import Options
57  ctx.load('compiler_c')
58  ctx.load('waf_unit_test')
59  ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra']
60
61  if Options.options.target_platform:
62    Options.platform = Options.options.target_platform
63
64  if Options.platform == 'win32':
65    ctx.env['shlib_PATTERN'] = 'lib%s.dll'
66
67  if Options.platform == 'darwin':
68    ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
69    ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
70    ctx.env.CC = 'llvm-gcc-4.2'
71    ctx.env.LINK_CC = 'llvm-gcc-4.2'
72    ctx.env.FRAMEWORK = ['CoreFoundation', 'AudioToolbox']
73
74  if Options.platform == 'ios':
75    ctx.env.CC = 'clang'
76    ctx.env.LD = 'clang'
77    ctx.env.LINK_CC = 'clang'
78    SDKVER="6.1"
79    DEVROOT="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer"
80    SDKROOT="%(DEVROOT)s/SDKs/iPhoneOS%(SDKVER)s.sdk" % locals()
81    ctx.env.FRAMEWORK = ['CoreFoundation', 'AudioToolbox']
82    ctx.env.CFLAGS += [ '-miphoneos-version-min=6.1', '-arch', 'armv7',
83            '--sysroot=%s' % SDKROOT]
84    ctx.env.LINKFLAGS += ['-std=c99', '-arch', 'armv7', '--sysroot=%s' %
85            SDKROOT]
86
87  # check for required headers
88  ctx.check(header_name='stdlib.h')
89  ctx.check(header_name='stdio.h')
90  ctx.check(header_name='math.h')
91  ctx.check(header_name='string.h')
92  ctx.check(header_name='limits.h')
93
94  # check support for C99 __VA_ARGS__ macros
95  check_c99_varargs = '''
96#include <stdio.h>
97#define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
98'''
99  if ctx.check_cc(fragment = check_c99_varargs,
100      type='cstlib',
101      msg = 'Checking for C99 __VA_ARGS__ macro'):
102    ctx.define('HAVE_C99_VARARGS_MACROS', 1)
103
104  # optionally use complex.h
105  if (Options.options.enable_complex == True):
106    ctx.check(header_name='complex.h')
107
108  # check dependencies
109  if (Options.options.enable_sndfile != False):
110      ctx.check_cfg(package = 'sndfile', atleast_version = '1.0.4',
111        args = '--cflags --libs', mandatory = False)
112  if (Options.options.enable_samplerate != False):
113      ctx.check_cfg(package = 'samplerate', atleast_version = '0.0.15',
114        args = '--cflags --libs', mandatory = False)
115
116  # double precision mode
117  if (Options.options.enable_double == True):
118    ctx.define('HAVE_AUBIO_DOUBLE', 1)
119  else:
120    ctx.define('HAVE_AUBIO_DOUBLE', 0)
121
122  # optional dependancies using pkg-config
123  if (Options.options.enable_fftw != False or Options.options.enable_fftw3f != False):
124    # one of fftwf or fftw3f
125    if (Options.options.enable_fftw3f != False):
126      ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
127          args = '--cflags --libs', mandatory = False)
128      if (Options.options.enable_double == True):
129        ctx.msg('Warning', 'fftw3f enabled, but aubio compiled in double precision!')
130    else:
131      # fftw3f not enabled, take most sensible one according to enable_double
132      if (Options.options.enable_double == True):
133        ctx.check_cfg(package = 'fftw3', atleast_version = '3.0.0',
134            args = '--cflags --libs', mandatory = False)
135      else:
136        ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
137            args = '--cflags --libs', mandatory = False)
138    ctx.define('HAVE_FFTW3', 1)
139  else:
140    # fftw disabled, use ooura
141    ctx.msg('Checking for FFT implementation', 'ooura')
142    pass
143
144  if (Options.options.enable_jack != False):
145    ctx.check_cfg(package = 'jack', atleast_version = '0.15.0',
146    args = '--cflags --libs', mandatory = False)
147
148  if (Options.options.enable_lash != False):
149    ctx.check_cfg(package = 'lash-1.0', atleast_version = '0.5.0',
150    args = '--cflags --libs', uselib_store = 'LASH', mandatory = False)
151
152  # write configuration header
153  ctx.write_config_header('src/config.h')
154
155  # add some defines used in examples
156  ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
157  ctx.define('PACKAGE', APPNAME)
158
159  # check if docbook-to-man is installed, optional
160  try:
161    ctx.find_program('docbook-to-man', var='DOCBOOKTOMAN')
162  except ctx.errors.ConfigurationError:
163    ctx.to_log('docbook-to-man was not found (ignoring)')
164
165def build(bld):
166  bld.env['VERSION'] = VERSION
167  bld.env['LIB_VERSION'] = LIB_VERSION
168
169  # add sub directories
170  bld.recurse('src')
171  from waflib import Options
172  if Options.platform != 'ios':
173      bld.recurse('examples')
174      bld.recurse('tests')
175
176  """
177  # create the aubio.pc file for pkg-config
178  if ctx.env['TARGET_PLATFORM'] == 'linux':
179    aubiopc = ctx.new_task_gen('subst')
180    aubiopc.source = 'aubio.pc.in'
181    aubiopc.target = 'aubio.pc'
182    aubiopc.install_path = '${PREFIX}/lib/pkgconfig'
183
184  # build manpages from sgml files
185  if ctx.env['DOCBOOKTOMAN']:
186    import TaskGen
187    TaskGen.declare_chain(
188        name    = 'docbooktoman',
189        rule    = '${DOCBOOKTOMAN} ${SRC} > ${TGT}',
190        ext_in  = '.sgml',
191        ext_out = '.1',
192        reentrant = 0,
193    )
194    manpages = ctx.new_task_gen(name = 'docbooktoman',
195        source=ctx.path.ant_glob('doc/*.sgml'))
196    ctx.install_files('${MANDIR}/man1', ctx.path.ant_glob('doc/*.1'))
197
198  # install woodblock sound
199  bld.install_files('${PREFIX}/share/sounds/aubio/',
200      'sounds/woodblock.aiff')
201  """
202
203def shutdown(bld):
204    from waflib import Options, Logs
205    if Options.platform == 'ios':
206          msg ='aubio built for ios, contact the author for a commercial license'
207          Logs.pprint('RED', msg)
208          msg ='   Paul Brossier <piem@aubio.org>'
209          Logs.pprint('RED', msg)
Note: See TracBrowser for help on using the repository browser.