File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 37
37
- name : Build ScaLAPACK
38
38
run : |
39
39
cp SLmake.inc.example SLmake.inc
40
- make --silent -j lib
41
- make --silent all
42
-
40
+ # make -j is buggy; see #54.
41
+ make lib
42
+ make all
43
+
43
44
- name : Run examples
44
45
working-directory : ${{github.workspace}}/EXAMPLE
45
46
run : |
Original file line number Diff line number Diff line change @@ -217,13 +217,13 @@ dlamov.o: dlamov.c
217
217
clamov.o : clamov.c
218
218
zlamov.o : zlamov.c
219
219
slamov.o dlamov.o clamov.o zlamov.o : lamov.h
220
- $(CC ) -c $(CFLAGS ) $(CDEFS ) $(@:.o=.c ) -o $@
220
+ $(CC ) -c $(CCFLAGS ) $(CDEFS ) $(@:.o=.c ) -o $@
221
221
222
222
clean :
223
223
rm -f * .o
224
224
225
- .f.o :
225
+ .f.o :
226
226
$(FC ) -c $(FCFLAGS ) $* .f
227
227
228
- .c.o :
228
+ .c.o :
229
229
$(CC ) -c $(CDEFS ) $(CCFLAGS ) $* .c
You can’t perform that action at this time.
0 commit comments