Skip to content

Commit

Permalink
BENTO: workaround for waf bug on darwin.
Browse files Browse the repository at this point in the history
  • Loading branch information
cournape committed Aug 28, 2011
1 parent f110ad2 commit 096aa37
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bscript
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 096aa37

Please sign in to comment.