source: rtems/aclocal/prog-cxx.m4 @ bde6014e

4.104.114.84.95
Last change on this file since bde6014e was bde6014e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/19/02 at 16:00:03

2002-12-19 Ralf Corsepius <corsepiu@…>

  • aclocal/prog-cxx.m4: Remove RTEMS_PROG_CXX. Rework RTEMS_PROG_CXX_FOR_TARGET.
  • Property mode set to 100644
File size: 892 bytes
Line 
1dnl
2dnl $Id$
3dnl
4dnl Check for target g++
5dnl
6
7AC_DEFUN(RTEMS_PROG_CXX_FOR_TARGET,
8[
9AC_BEFORE([$0], [RTEMS_CANONICALIZE_TOOLS])dnl
10AC_REQUIRE([RTEMS_ENABLE_CXX])
11RTEMS_CHECK_TOOL(CXX,g++)
12if test "$RTEMS_HAS_CPLUSPLUS" = "yes";
13then
14_RTEMS_FLAGS([CXXFLAGS],
15  ["\$(CPU_CFLAGS) \$(RTEMS_CFLAGS_\$(VARIANT_V)_V) \$(CFLAGS_\$(VARIANT_V)_V) -g"])
16
17dnl Only accept g++
18dnl NOTE: This might be too restrictive
19test -z "$CXX" \
20  && AC_MSG_ERROR([no acceptable c++ found in \$PATH])
21AC_PROG_CXX
22
23  if test "$ac_cv_prog_cc_cross" != "$ac_cv_prog_cxx_cross"; then
24    AC_MSG_ERROR([***]
25     [Inconsistency in compiler configuration:]
26     [Target C compiler and target C++ compiler]
27     [must both either be cross compilers or native compilers]
28     [Hint: If building a posix bsp: LD_LIBRARY_PATH?] )
29  fi
30
31else
32## Work-around to a bug in automake
33AM_CONDITIONAL([am__fastdepCXX],[false])
34fi
35])
Note: See TracBrowser for help on using the repository browser.