Add Fujitsu compiler (fcc)

This commit is contained in:
Martin Kroeker 2022-07-25 19:39:17 +02:00 committed by GitHub
parent 68d86ea150
commit cf37182260
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,7 @@ case "$data" in
*COMPILER_SUN*) compiler=SUN ;;
*COMPILER_IBM*) compiler=IBM ;;
*COMPILER_DEC*) compiler=DEC ;;
*COMPILER_FUJITSU*) compiler=FUJITSU ;;
esac
if [ -z "$compiler" ]; then
compiler=GCC
@ -143,6 +144,7 @@ case "$compiler" in
INTEL) openmp='-openmp' ;;
PATHSCALE|OPEN64) openmp='-mp' ;;
CLANG|GCC|LSB) openmp='-fopenmp' ;;
FUJITSU) openmp='-Kopenmp' ;;
esac
if [ "$defined" -eq 0 ]; then