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