diff options
-rw-r--r-- | bscript | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -51,6 +51,10 @@ def configure(context): conf.check_python_version((2, 4, 0)) conf.check_python_headers() + if sys.platform == "darwin": + # FIXME: fix upstream waf tool to work on mac os X + conf.env.CC = ["/usr/bin/gcc-4.0"] + conf.env.LINK_CC = ["/usr/bin/gcc-4.0"] check_blas_lapack(conf) |