aboutsummaryrefslogtreecommitdiff
path: root/fortran.sh
blob: 38546b70398a6d0528de4dcf0d37d54c77f98b53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#! /bin/sh

# Try to use ## for token concatenation.
# If this works, we likely have an ANSI cpp.

rm config.tmp config.out 2> /dev/null

if test -z "${FPP}"; then
    # FPP is not defined; try to guess which fpp will be chosen later
    FPP=cpp
fi

cat > config.tmp <<EOF
#define CONCAT(a,b) a##b
CONCAT(hello,world)
EOF
${FPP} ${FPPFLAGS} config.tmp > config.out
grep 'helloworld' config.out > /dev/null 2> /dev/null
# grep returns 0 for success, non-zero for failure
cpp_ansi=$?
rm config.tmp config.out 2> /dev/null

cat > config.tmp <<EOF
#define CONCAT(a,b) a/**/b
CONCAT(hello,world)
EOF
${FPP} ${FPPFLAGS} config.tmp > config.out
grep 'helloworld' config.out > /dev/null 2> /dev/null
# grep returns 0 for success, non-zero for failure
cpp_traditional=$?
rm config.tmp config.out 2> /dev/null



if test ${cpp_ansi} = 0; then
    echo 'BEGIN MESSAGE'
    echo 'Found an ANSI-like Fortran cpp'
    echo 'END MESSAGE'
    echo 'BEGIN DEFINE'
    echo 'FORTRAN_CPP_ANSI 1'
    echo 'END DEFINE'
elif test ${cpp_traditional} = 0; then
    echo 'BEGIN MESSAGE'
    echo 'Found a traditional Fortran cpp'
    echo 'END MESSAGE'
    echo 'BEGIN DEFINE'
    echo 'FORTRAN_CPP_ANSI 0'
    echo 'END DEFINE'
else
    echo 'BEGIN ERROR'
    echo 'No Fortran preprocessor defined'
    echo 'END ERROR'
fi