forked from numpy/numpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TST: Do not create gfortran link in azure Mac testing.
The gfortran link is preinstalled since Feb 13, 2020 and attempting to create the link causes an error to be raised.
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,9 +97,10 @@ stages: | |
# manually link critical gfortran libraries | ||
ln -s /usr/local/Cellar/[email protected]/4.9.4_1/lib/gcc/4.9/libgfortran.3.dylib /usr/local/lib/libgfortran.3.dylib | ||
ln -s /usr/local/Cellar/[email protected]/4.9.4_1/lib/gcc/4.9/libquadmath.0.dylib /usr/local/lib/libquadmath.0.dylib | ||
# manually symlink gfortran-4.9 to plain gfortran | ||
# for f2py | ||
ln -s /usr/local/bin/gfortran-4.9 /usr/local/bin/gfortran | ||
# Manually symlink gfortran-4.9 to plain gfortran for f2py. | ||
# No longer needed after Feb 13 2020 as gfortran is already present | ||
# and the attempted link errors. Keep this for future reference. | ||
# ln -s /usr/local/bin/gfortran-4.9 /usr/local/bin/gfortran | ||
displayName: 'make gfortran available on mac os vm' | ||
# use the pre-built openblas binary that most closely | ||
# matches our MacOS wheel builds -- currently based | ||
|