Added compiler configurations for the HAWK TDS
This commit is contained in:
parent
64103734fe
commit
6992abf9a2
5 changed files with 13 additions and 0 deletions
3
etc/platform-configs/hawk-tds/compiler/gnu
Normal file
3
etc/platform-configs/hawk-tds/compiler/gnu
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
COMPILER_OPTS="CC=gcc CXX=g++ F77=gfortran FC=gfortran"
|
||||
COMPILER_VERSION_CMD="gcc -dumpversion"
|
3
etc/platform-configs/hawk-tds/compiler/intel
Normal file
3
etc/platform-configs/hawk-tds/compiler/intel
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
COMPILER_OPTS="CC=icc CXX=icpc F77=ifort FC=ifort"
|
||||
COMPILER_VERSION_CMD="icc -dumpversion"
|
3
etc/platform-configs/hawk-tds/compiler/llwm
Normal file
3
etc/platform-configs/hawk-tds/compiler/llwm
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
COMPILER_OPTS="CC=clang CXX=clang++"
|
||||
COMPILER_VERSION_CMD="llvm-config --version"
|
3
etc/platform-configs/hawk-tds/compiler/pgi
Normal file
3
etc/platform-configs/hawk-tds/compiler/pgi
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
COMPILER_OPTS="CC=pgcc CXX=pgCC FC=pgf95 F90=pgf90 F77=pgf77"
|
||||
COMPILER_VERSION_CMD="pgcc -V | awk '/pgcc/{print \$2}' | sed -e 's/-/./'"
|
1
etc/platform-configs/hawk-tds/compiler/system
Symbolic link
1
etc/platform-configs/hawk-tds/compiler/system
Symbolic link
|
@ -0,0 +1 @@
|
|||
gnu
|
Loading…
Reference in a new issue