Skip to content

Commit 8c0ea32

Browse files
committed
do more debug
1 parent 5a0c095 commit 8c0ea32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/build_steps.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)