File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ matrix:
25
25
# - BTYPE="BINARY=64"
26
26
#
27
27
# - <<: *test-ubuntu
28
- os : linux-ppc64le
28
+ os : linux
29
+ arch : ppc64le
29
30
before_script : &common-before
30
31
- COMMON_FLAGS="DYNAMIC_ARCH=1 TARGET=POWER8 NUM_THREADS=32"
31
32
script :
@@ -43,6 +44,7 @@ matrix:
43
44
arch : s390x
44
45
before_script :
45
46
- COMMON_FLAGS="DYNAMIC_ARCH=1 TARGET=Z13 NUM_THREADS=32"
47
+ - sudo apt-get install --only-upgrade binutils
46
48
env :
47
49
# for matrix annotation only
48
50
- TARGET_BOX=IBMZ_LINUX
@@ -55,6 +57,7 @@ matrix:
55
57
compiler : clang
56
58
before_script :
57
59
- COMMON_FLAGS="DYNAMIC_ARCH=1 TARGET=Z13 NUM_THREADS=32"
60
+ - sudo apt-get install --only-upgrade binutils
58
61
env :
59
62
# for matrix annotation only
60
63
- TARGET_BOX=IBMZ_LINUX
@@ -269,9 +272,9 @@ matrix:
269
272
# - CFLAGS="-O2 -mno-thumb -Wno-macro-redefined -isysroot /Applications/Xcode-11.5.GM.Seed.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.5.sdk -arch armv7 -miphoneos-version-min=5.1"
270
273
# - BTYPE="TARGET=ARMV7 HOSTCC=clang NOFORTRAN=1"
271
274
272
- - &test-graviton2
275
+ - &test-neoversen1
273
276
os : linux
274
- arch : arm64-graviton2
277
+ arch : arm64
275
278
dist : focal
276
279
group : edge
277
280
virt : lxd
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ ifeq ($(CORE), UNKNOWN)
163
163
$(error OpenBLAS: Detecting CPU failed. Please set TARGET explicitly, e.g. make TARGET=your_cpu_target. Please read README for the detail.)
164
164
endif
165
165
ifeq ($(NOFORTRAN ) , 1)
166
- $(info OpenBLAS: Detecting fortran compiler failed. Cannot compile LAPACK. Only compile BLAS .)
166
+ $(info OpenBLAS: Detecting fortran compiler failed. Can only compile BLAS and f2c-converted LAPACK .)
167
167
endif
168
168
ifeq ($(NO_STATIC ) , 1)
169
169
ifeq ($(NO_SHARED ) , 1)
Original file line number Diff line number Diff line change @@ -1041,9 +1041,11 @@ FCOMMON_OPT += -frecursive
1041
1041
# work around ABI problem with passing single-character arguments
1042
1042
FCOMMON_OPT += -fno-optimize-sibling-calls
1043
1043
#Don't include -lgfortran, when NO_LAPACK=1 or lsbcc
1044
+ ifneq ($(NOFORTRAN), 1)
1044
1045
ifneq ($(NO_LAPACK), 1)
1045
1046
EXTRALIB += -lgfortran
1046
1047
endif
1048
+ endif
1047
1049
ifdef NO_BINARY_MODE
1048
1050
ifeq ($(ARCH), $(filter $(ARCH),mips64))
1049
1051
ifdef BINARY64
Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ TOPSRCDIR = ..
58
58
include $(TOPSRCDIR ) /make.inc
59
59
60
60
ifneq ($(C_LAPACK ) , 1)
61
- $(info fortran... C_LAPACK ist $(C_LAPACK))
62
61
.SUFFIXES :
63
62
.SUFFIXES : .f .o
64
63
.f.o :
@@ -67,7 +66,6 @@ $(info fortran... C_LAPACK ist $(C_LAPACK))
67
66
.F.o :
68
67
$(FC ) $(FFLAGS ) -c -o $@ $<
69
68
else
70
- $(info C_LAPACK ist $(C_LAPACK))
71
69
.SUFFIXES : .c .o
72
70
.c.o :
73
71
$(CC ) $(CFLAGS ) -c -o $@ $<
You can’t perform that action at this time.
0 commit comments