Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix C_LAPACK build options for files that must be built unoptimized
  • Loading branch information
martin-frbg committed May 12, 2022
commit cf61d48470f8b1d6180b0687ac233e7a6406140b
4 changes: 2 additions & 2 deletions lapack-netlib/INSTALL/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ dlamch.o: dlamch.f ; $(FC) $(FFLAGS_NOOPT) -c -o $@ $<
sroundup_lwork.o: sroundup_lwork.f ; $(FC) $(FFLAGS_NOOPT) -c -o $@ $<
droundup_lwork.o: droundup_lwork.f ; $(FC) $(FFLAGS_NOOPT) -c -o $@ $<
else
slamch.o: slamch.c ; $(CC) $(CFLAGS) -c -o $@ $<
dlamch.o: dlamch.c ; $(CC) $(CFLAGS) -c -o $@ $<
slamch.o: slamch.c ; $(CC) $(CFLAGS) -O0 -c -o $@ $<
dlamch.o: dlamch.c ; $(CC) $(CFLAGS) -O0 -c -o $@ $<
endif
4 changes: 2 additions & 2 deletions lapack-netlib/TESTING/MATGEN/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,6 @@ ifneq ($(C_LAPACK), 1)
slaran.o: slaran.f ; $(FC) $(FFLAGS_NOOPT) -c -o $@ $<
dlaran.o: dlaran.f ; $(FC) $(FFLAGS_NOOPT) -c -o $@ $<
else
slaran.o: slaran.c ; $(CC) $(CFLAGS_NOOPT) -c -o $@ $<
dlaran.o: dlaran.c ; $(CC) $(CFLAGS_NOOPT) -c -o $@ $<
slaran.o: slaran.c ; $(CC) $(CFLAGS) -O0 -c -o $@ $<
dlaran.o: dlaran.c ; $(CC) $(CFLAGS) -O0 -c -o $@ $<
endif