From 7c4cf2086fe40331636fc29b8b0145da9f6e9c60 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 6 Nov 2009 01:23:58 +0100 Subject: [PATCH] generator.py: fully blown mode --- interfaces/python/generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces/python/generator.py b/interfaces/python/generator.py index fabb676c..a02d0aee 100644 --- a/interfaces/python/generator.py +++ b/interfaces/python/generator.py @@ -6,7 +6,7 @@ import os, sys skip_objects = ['fft', 'pvoc', 'filter', 'filterbank', 'resampler'] -cpp_output = [l.strip() for l in os.popen('cpp -I ../../build/default/src ../../src/aubio.h').readlines()] +cpp_output = [l.strip() for l in os.popen('cpp -DAUBIO_UNSTABLE=1 -I ../../build/default/src ../../src/aubio.h').readlines()] cpp_output = filter(lambda y: len(y) > 1, cpp_output) cpp_output = filter(lambda y: not y.startswith('#'), cpp_output) -- 2.26.2