Skip to content

Instantly share code, notes, and snippets.

@fikovnik
Created October 11, 2021 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fikovnik/8796d88d8c9f26d61e83d49e04f441ab to your computer and use it in GitHub Desktop.
Save fikovnik/8796d88d8c9f26d61e83d49e04f441ab to your computer and use it in GitHub Desktop.
Build R
#!/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