Add Fujitsu compiler (fcc)
This commit is contained in:
parent
68d86ea150
commit
cf37182260
2
c_check
2
c_check
|
@ -51,6 +51,7 @@ case "$data" in
|
||||||
*COMPILER_SUN*) compiler=SUN ;;
|
*COMPILER_SUN*) compiler=SUN ;;
|
||||||
*COMPILER_IBM*) compiler=IBM ;;
|
*COMPILER_IBM*) compiler=IBM ;;
|
||||||
*COMPILER_DEC*) compiler=DEC ;;
|
*COMPILER_DEC*) compiler=DEC ;;
|
||||||
|
*COMPILER_FUJITSU*) compiler=FUJITSU ;;
|
||||||
esac
|
esac
|
||||||
if [ -z "$compiler" ]; then
|
if [ -z "$compiler" ]; then
|
||||||
compiler=GCC
|
compiler=GCC
|
||||||
|
@ -143,6 +144,7 @@ case "$compiler" in
|
||||||
INTEL) openmp='-openmp' ;;
|
INTEL) openmp='-openmp' ;;
|
||||||
PATHSCALE|OPEN64) openmp='-mp' ;;
|
PATHSCALE|OPEN64) openmp='-mp' ;;
|
||||||
CLANG|GCC|LSB) openmp='-fopenmp' ;;
|
CLANG|GCC|LSB) openmp='-fopenmp' ;;
|
||||||
|
FUJITSU) openmp='-Kopenmp' ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [ "$defined" -eq 0 ]; then
|
if [ "$defined" -eq 0 ]; then
|
||||||
|
|
Loading…
Reference in New Issue