Closed klmr closed 8 years ago
did you try recompile S4Vectors? (that's related to linking glibc with FORTIFY #40 - I set the global flag to be off now, that should serve as a workaround for the time being)
2nd is, if it all, an internal R bug and I can not explain how the setup could have caused this (it should respect .libPaths either way)
Reinstalling S4Vectors doesn’t change anything either, unfortunately.
Worked after the following changes:
Disable FORTIFY
by adding the following ~/.R/Makevars
file:
CFLAGS += "-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0" -O3
CXXFLAGS += "-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0" -O3
remove.packages('BiocInstaller')
)biocLite
and reinstall rtracklayer
.
yields
R also wants to update an outdated “Matrix” package even though I had previously successfully reinstalled that manually — there seems to be a confusion with the paths, since trying to update (rather than reinstall) it attempts to write to (readonly)
/nfs/research2/software/prefix/usr/lib/R/library
:The manually reinstalled version (in
.libPaths()[1]
) is not considered.