Skip to content

Commit

Permalink
Fix ATLAS/SSE handling for wine builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
cournape committed May 11, 2009
1 parent 352b639 commit 747dc66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pavement.py
Expand Up @@ -251,9 +251,9 @@ def sdist():
#------------------
# Wine-based builds
#------------------
SSE3_CFG = {'BLAS': r'C:\local\lib\yop\sse3', 'LAPACK': r'C:\local\lib\yop\sse3'}
SSE2_CFG = {'BLAS': r'C:\local\lib\yop\sse2', 'LAPACK': r'C:\local\lib\yop\sse2'}
NOSSE_CFG = {'BLAS': r'C:\local\lib\yop\nosse', 'LAPACK': r'C:\local\lib\yop\nosse'}
SSE3_CFG = {'BLAS': 'None', 'LAPACK': 'None', 'ATLAS': r'C:\local\lib\yop\sse3'}
SSE2_CFG = {'BLAS': 'None', 'LAPACK': 'None', 'ATLAS': r'C:\local\lib\yop\sse2'}
NOSSE_CFG = {'ATLAS': 'None', 'BLAS': r'C:\local\lib\yop\nosse', 'LAPACK': r'C:\local\lib\yop\nosse'}

SITECFG = {"sse2" : SSE2_CFG, "sse3" : SSE3_CFG, "nosse" : NOSSE_CFG}

Expand Down

0 comments on commit 747dc66

Please sign in to comment.