diff options
author | John Glover <glover.john@gmail.com> | 2010-12-08 16:12:33 +0000 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-12-08 16:12:33 +0000 |
commit | 67bd3b7ce79f82b495328c774dc4692d9f6447c9 (patch) | |
tree | 3db860c56c426293e1375a78cef57c440ab18b94 /SConstruct | |
parent | f0576d53f10832adb8a491f85ec86d2219a621bf (diff) | |
download | simpl-67bd3b7ce79f82b495328c774dc4692d9f6447c9.tar.gz simpl-67bd3b7ce79f82b495328c774dc4692d9f6447c9.tar.bz2 simpl-67bd3b7ce79f82b495328c774dc4692d9f6447c9.zip |
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.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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) |