fix C_LAPACK build options for files that must be built unoptimized

This commit is contained in:
martin-frbg 2022-05-12 09:43:23 +02:00
parent 884e6da73b
commit cf61d48470
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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