Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove zheev, zpotrf as they are in Rlapack, to avoid linking problems. #78

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion R/src/Makevars
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
PKG_CXXFLAGS = -I../inst/include -DPRIMME_INT_SIZE=0 -DF77UNDERSCORE -DUSE_XHEEV -DUSE_ZGESV -DUSE_XHEGV -DPRIMME_INT_SIZE=0 -DPRIMME_WITHOUT_FLOAT -DPRIMME_BLAS_RCOMPLEX
# Linker will discard primmeext if R provides a full LAPACK
# On some platorms, linker will discard primmeext if R provides a full LAPACK.
#
# Note ld.lld on Windows, however, will fail when a symbol from Rlapack (DLL)
# is later found in libprimmeext.a. Functions in Rlapack shouldn't hence be
# in libprimmeext.a
PKG_LIBS = primme/libprimme.a $(LAPACK_LIBS) primme/libprimmeext.a $(BLAS_LIBS) $(FLIBS)

$(SHLIB): primme/libprimme.a primme/libprimmeext.a
Expand Down