summaryrefslogtreecommitdiff
path: root/tests/link_f_c_cxx.test
blob: 8155576afb8278b268189d903153490ad816e14d (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
#! /bin/sh

# Test to make sure the C++ linker is used when appropriate.
# Matthew D. Langston <langston@SLAC.Stanford.EDU>

. $srcdir/defs || exit 1

cat >> configure.in << 'END'
AC_PROG_CC
AC_PROG_CXX
AC_PROG_F77
END

cat > Makefile.am << 'END'
bin_PROGRAMS = lavalamp
lavalamp_SOURCES = lava.c lamp.cxx lamp2.f
END

: > lava.c
: > lamp.cxx
: > lamp2.f

$AUTOMAKE || exit 1


# We should only see the C++ linker in the rules of `Makefile.in'.

# Look for this macro not at the beginning of any line; that will have
# to be good enough for now.
grep '.\$(CXXLINK)' Makefile.in  || exit 1

# We should not see these patterns:
grep '.\$(F77LINK)' Makefile.in && exit 1
grep '.\$(LINK)'    Makefile.in && exit 1

exit 0