Displaying 3 results from an estimated 3 matches for "icc_lib".
Did you mean:
icc_libs
2008 Feb 13
1
compiling 2.6.2 using icc
I am having trouble compiling R-2.6.2 on suse linux x86_64 using the
intel compiler. I read section C.2.1 Intel compilers in the R
Installation and Administration manual, and put
CC=icc
CFLAGS="-g -O3 -wd188 -ip"
F77=ifort
FFLAGS="-g -O3"
ICC_LIBS=/opt/intel/cce/10.1.012/lib
IFC_LIBS=/opt/intel/fce/10.1.012/lib/
LDFLAGS="-L$ICC_LIBS -L$IFC_LIBS -L/usr/lib64"
CXX=icpc
CXXFLAGS="-g -O3"
FC=ifort
FCFLAGS="-g -O3 -mp"
in my config.site. Everything seems to compile alright, up until making
the recommended package...
2008 May 29
2
problem building R packages on RHEL 4 Linux with Intel compilers
...e gcc is still being searched for. I did read the R
install and admin manual but could not find an answer. Help?
CC=icc
CFLAGS="-fast -unroll"
F77=ifort
FLAGS="-fast -unroll"
CXX=icpc
CXXFLAGS="-fast -unroll"
FC=ifort
FCFLAGS="-fast -unroll"
LDFLAGS="-L$ICC_LIBS -L$IFC_LIBS -L/usr/local/lib64"
SHLIB_CXXLD=icpc
../configure --prefix=/N/u/mkimpel/Quarry/R_HOME/R-patched/R-build\
CC=icc CFLAGS="-fast -unroll -wd188" F77=ifort FFLAGS="-fast -unroll" \
CXX=icpc CXXFLAGS="-fast -unroll" FC=ifort FCFLAGS="-fast -unroll&quo...
2008 May 12
1
Advice on compiling R using Intel Compilers? Btw: -c99 is deprecated
...html
(although I added the icpc variable myself).
3: Set up config.site as follows (mostly taken from the guide):
CC=icc
CFLAGS="-g -O3 -wd188 -ip"
CPPFLAGS="-no-gcc"
F77=ifort
FLAGS="-g -O3"
CXX=icpc
CXXFLAGS="-g -O3"
FC=ifort
FCFLAGS="-g -O3 -mp"
ICC_LIBS=/opt/intel/cce/10.1.015/lib/
IFC_LIBS=/opt/intel/fce/10.1.015/lib/
LDFLAGS="-L$ICC_LIBS -L$IFC_LIBS -L/usr/local/lib64"
SHLIB_CXXLD=icpc
SHLIB_LDFLAGS="-shared"
#SHLIB_CXXLDFLAGS=-G -lCstd
4: ./configure --enable-R-shlib
- first time it broke here since I had no flags set for...