Skip to content

Commit 7b22545

Browse files
author
kalibera
committed
Do not use blas00 on Windows.
git-svn-id: https://svn.r-project.org/R/trunk@88045 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent a5d391f commit 7b22545

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

src/extra/blas/Makefile.win

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,17 @@ include ../../gnuwin32/MkRules
33

44
all: ../../../$(BINDIR)/Rblas.dll
55

6-
## suppress lots of warnings: this is a dummy
7-
blas00.o: blas00.c
8-
$(CC) -O3 -I../../include -c $< -o $@
9-
106
## Rblas.dll imports xerbla_ from R.dll
117
## OpenBLAS 0.3.29 includes [dz]gemmtr but ATLAS does not.
128
## So to use latter, copy [dz]gemmtr.f from ../../modules/lapack
139
## and add dgemmtr.o zgemmtr.o to the dependencies.
1410
ifeq "$(USE_ATLAS)" "YES"
15-
../../../$(BINDIR)/Rblas.dll: blas00.o ../../gnuwin32/dllversion.o
11+
../../../$(BINDIR)/Rblas.dll: ../../gnuwin32/dllversion.o
1612
@$(ECHO) -------- Building $@ --------
1713
$(DLL) -s -shared $(DLLFLAGS) -o $@ $^ Rblas.def \
1814
-L../../../$(IMPDIR) -lR -L"$(ATLAS_PATH)" -lf77blas -latlas
1915
else ifeq "$(USE_OPENBLAS)" "YES"
20-
../../../$(BINDIR)/Rblas.dll: blas00.o ../../gnuwin32/dllversion.o
16+
../../../$(BINDIR)/Rblas.dll: ../../gnuwin32/dllversion.o
2117
@$(ECHO) -------- Building $@ --------
2218
$(DLL) -s -shared $(DLLFLAGS) -o $@ $^ Rblas.def \
2319
-L../../../$(IMPDIR) -lR $(shell $(PKG_CONFIG) --libs openblas)
@@ -28,5 +24,5 @@ else
2824
endif
2925

3026
distclean clean:
31-
@$(RM) ../../../$(BINDIR)/Rblas.dll *~ blas00.o blas00.d blas.o cmplxblas.o
27+
@$(RM) ../../../$(BINDIR)/Rblas.dll *~ blas.o cmplxblas.o
3228

0 commit comments

Comments
 (0)