Created
October 11, 2021 12:41
-
-
Save fikovnik/8796d88d8c9f26d61e83d49e04f441ab to your computer and use it in GitHub Desktop.
Build R
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
export CXXFLAGS="-O2 -ggdb3" | |
export CPPFLAGS="-O2 -ggdb3" | |
export CFLAGS="-O2 -ggdb3" | |
export R_KEEP_PKG_SOURCE=yes | |
export CXX="g++" | |
./configure --with-blas --with-lapack --without-ICU --with-x \ | |
--with-tcltk --without-aqua --with-recommended-packages \ | |
--without-internal-tzcode --with-included-gettext && | |
make clean && | |
make -j |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment