- Infos im HLRS Wiki sind nicht rechtsverbindlich und ohne Gewähr -
- Information contained in the HLRS Wiki is not legally binding and HLRS is not responsible for any damages that might result from its use -

CRAY XE6 FAQ

From HLRS Platforms
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

There is a cmake module available which is targeted to be used for generating an application for the compute nodes on Hermit :

hpcander@nid01146:/> module load tools/cmake/2.8.7
hpcander@nid01146:/> module help tools/cmake/2.8.7

----------- Module Specific Help for 'tools/cmake/2.8.7' ----------

In order to use cmake on Hermit, you can create a file with the follwoing 4 lines
cat toolchain_file_hermit.cmake
SET(CMAKE_SYSTEM_NAME Hermit)
SET(CMAKE_C_COMPILER       cc)
SET(CMAKE_CXX_COMPILER     CC)
SET(CMAKE_Fortran_COMPILER ftn)
and then you use it with
cmake -DCMAKE_TOOLCHAIN_FILE=./toolchain_file_hermit.cmake
hpcander@nid01146:/>