Christoph Niethammer
7df26522c3
The version printed by GCC's -dumpversion option may only be a single number (the major version). Therefore use the -dumpfullversion option which guarantees to print the three numbers format 'major.minor.patchlevel'. Signed-off-by: Christoph Niethammer <niethammer@hlrs.de>
3 lines
136 B
Bash
3 lines
136 B
Bash
#!/bin/bash
|
|
COMPILER_OPTS="CC=cc CXX=CC FC=ftn F90=ftn F77=ftn MPICC=cc MPICXX=CC MPIFC=ftn"
|
|
COMPILER_VERSION_CMD="cc -dumpfullversion"
|