File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 19
19
compiler : gcc
20
20
version : 13
21
21
22
- - run : ln -s $(which gfortran-12 ) /usr/local/bin/gfortran
22
+ - run : ln -s $(which gfortran-14 ) /usr/local/bin/gfortran
23
23
if : matrix.os != 'windows-latest'
24
24
25
25
- run : gfortran --version
Original file line number Diff line number Diff line change @@ -96,7 +96,10 @@ COMMON_FFLAGS = -MMD -cpp -ffree-line-length-none -fmax-errors=4 -fopenmp
96
96
FFLAGS = -O3 $(COMMON_FFLAGS )
97
97
DEBUGFLAGS = -g -fbacktrace -ffpe-trap=invalid,overflow,zero -fbounds-check $(COMMON_FFLAGS )
98
98
ifeq ($(shell uname -s) ,Darwin)
99
- SFFLAGS = -dynamiclib -static-libgfortran -static-libgcc -static-libquadmath # -fpic
99
+ SFFLAGS = -dynamiclib # -fpic
100
+ ifneq ($(CIBW_BUILD ) ,)
101
+ SFFLAGS += -static-libgfortran -static-libgcc -static-libquadmath
102
+ endif
100
103
else
101
104
SFFLAGS = -shared -fpic
102
105
endif
You can’t perform that action at this time.
0 commit comments