File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ function do_build_lib {
177177 which $FC
178178 # guess?
179179 local libdir=/opt/homebrew/Cellar/gcc/15.2.0/lib/gcc/current
180- if [ ! -d $libdir ]; then
180+ if [ ! -e $libdir/libgfortran.a ]; then
181181 echo where is libfortran.a?
182182 find /opt -name libgfortran.a
183183 exit 1
@@ -234,14 +234,14 @@ function do_build_lib {
234234 fi
235235 if [ -n "$dynamic_list" ]; then
236236 CFLAGS="$CFLAGS -fvisibility=protected -Wno-uninitialized" \
237- make BUFFERSIZE=20 DYNAMIC_ARCH=1 QUIET_MAKE=1 \
237+ make BUFFERSIZE=20 DYNAMIC_ARCH=1 \
238238 USE_OPENMP=0 NUM_THREADS=64 \
239239 DYNAMIC_LIST="$dynamic_list" \
240240 BINARY="$bitness" $interface_flags \
241241 TARGET="$target"
242242 else
243243 CFLAGS="$CFLAGS -fvisibility=protected -Wno-uninitialized" \
244- make BUFFERSIZE=20 DYNAMIC_ARCH=1 QUIET_MAKE=1 \
244+ make BUFFERSIZE=20 DYNAMIC_ARCH=1 \
245245 USE_OPENMP=0 NUM_THREADS=64 \
246246 BINARY="$bitness" $interface_flags \
247247 TARGET="$target"
You can’t perform that action at this time.
0 commit comments