File: linux-godel-intel-10.1-serial-debug-cmake

package info (click to toggle)
trilinos 16.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 993,992 kB
  • sloc: cpp: 3,764,859; ansic: 425,011; fortran: 160,684; python: 101,476; xml: 74,329; sh: 37,044; makefile: 22,641; perl: 7,525; f90: 6,424; csh: 5,285; objc: 2,620; lex: 1,646; lisp: 810; yacc: 603; javascript: 552; awk: 364; ml: 281; php: 145
file content (27 lines) | stat: -rwxr-xr-x 1,085 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
EXTRA_ARGS=$@


# This is a script that I get to build (at least part) of Trilinos
# with the Intel C++/C compilers on godel.  NOTE: You need to pass in
# the options for the packages that you want to enable.

cmake \
-D CMAKE_BUILD_TYPE:STRING=RELEASE \
-D Trilinos_ENABLE_DEBUG:BOOL=ON \
-D CMAKE_C_COMPILER:FILEPATH=/opt/intel/cc/10.1.015/bin/icc \
-D CMAKE_CXX_COMPILER:FILEPATH=/opt/intel/cc/10.1.015/bin/icpc \
-D TPL_ENABLE_Boost:BOOL=ON \
-D Trilinos_ENABLE_Fortran:BOOL=OFF \
-D MEMORYCHECK_COMMAND:FILEPATH=/usr/bin/valgrind \
-D DART_TESTING_TIMEOUT:STRING=600 \
-D CMAKE_LIBRARY_PATH:PATH=/usr/lib64 \
-D Trilinos_ENABLE_TESTS:BOOL=ON \
-D CMAKE_INSTALL_PREFIX:PATH=/home/rabartl/PROJECTS/install-dir/icc-4.10/trilinos/dev/debug \
$EXTRA_ARGS \
../../../../Trilinos

#-D Trilinos_ENABLE_EXPLICIT_INSTANTIATION:BOOL=ON \
#-D CMAKE_Fortran_COMPILER:FILEPATH=/usr/bin/f77 \
#-D CMAKE_CXX_FLAGS:STRING="-diag-disable 597" \
#-D BLAS_LIBRARY_DIRS:PATH="/opt/intel/mkl/10.0.3.020/lib/64" \
#-D BLAS_LIBRARY_NAMES:STRING="mkl_intel_lp64;mkl_intel_thread;mkl_core;guide;pthread" \