From 67bd3b7ce79f82b495328c774dc4692d9f6447c9 Mon Sep 17 00:00:00 2001 From: John Glover Date: Wed, 8 Dec 2010 16:12:33 +0000 Subject: Fixed a SMS issue in sms_initSynth where having a hop size that was not a power of 2 would stop execution. Fixed another SMS test. --- SConstruct | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index db62a22..c5a1d1a 100644 --- a/SConstruct +++ b/SConstruct @@ -41,7 +41,11 @@ if get_platform() == "unsupported": exit(1) # environment -env = Environment(ENV=os.environ) +if get_platform() == 'win32': + # can only build with mingw on windows + env = Environment(ENV=os.environ, tools=['mingw']) +else: + env = Environment(ENV=os.environ) # set default installation directories default_install_dir = "" @@ -128,7 +132,7 @@ try: except AttributeError: numpy_include = numpy.get_numpy_include() except ImportError: - print "Numpy was not found. Cannot build simpl.\n" + print "Numpy was not found. Cannot build simpl." exit(1) env.Append(CPPPATH = numpy_include) -- cgit v1.2.3