Browse Source

fix C_LAPACK build options for files that must be built unoptimized

tags/v0.3.21
martin-frbg 4 years ago
parent
commit
cf61d48470
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      lapack-netlib/INSTALL/Makefile
  2. +2
    -2
      lapack-netlib/TESTING/MATGEN/Makefile

+ 2
- 2
lapack-netlib/INSTALL/Makefile 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

+ 2
- 2
lapack-netlib/TESTING/MATGEN/Makefile 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

Loading…
Cancel
Save