Skip to content

Commit 9b24b31

Browse files
committed
resolve second_ conflict which breaks xlf timef
1 parent 99ef76f commit 9b24b31

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

lapack-netlib/SRC/Makefile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,10 @@ SCLAUX = la_constants.o \
101101
slaset.o slasq1.o slasq2.o slasq3.o slasq4.o slasq5.o slasq6.o \
102102
slasr.o slasrt.o slassq.o slasv2.o spttrf.o sstebz.o sstedc.o \
103103
ssteqr.o ssterf.o slaisnan.o sisnan.o \
104-
slartgp.o slartgs.o scombssq.o ../INSTALL/sroundup_lwork.o \
105-
../INSTALL/second_$(TIMER).o
104+
slartgp.o slartgs.o scombssq.o ../INSTALL/sroundup_lwork.o
105+
ifneq ($(F_COMPILER), IBM)
106+
SCLAUX += ../INSTALL/second_$(TIMER).o
107+
endif
106108
endif
107109

108110
ifneq "$(or $(BUILD_DOUBLE),$(BUILD_COMPLEX16))" ""
@@ -124,7 +126,10 @@ DZLAUX = la_constants.o\
124126
dlasr.o dlasrt.o dlassq.o dlasv2.o dpttrf.o dstebz.o dstedc.o \
125127
dsteqr.o dsterf.o dlaisnan.o disnan.o \
126128
dlartgp.o dlartgs.o ../INSTALL/droundup_lwork.o \
127-
../INSTALL/dlamch.o ../INSTALL/dsecnd_$(TIMER).o
129+
../INSTALL/dlamch.o
130+
ifneq ($(F_COMPILER), IBM)
131+
DZLAUX += ../INSTALL/dsecnd_$(TIMER).o
132+
endif
128133
endif
129134

130135
#ifeq ($(BUILD_SINGLE),1)

0 commit comments

Comments
 (0)