source: rtems/aclocal/enable-cxx.m4 @ 0fe48afa

5
Last change on this file since 0fe48afa was 9a4eca5, checked in by Chris Johns <chrisj@…>, on 08/10/16 at 03:07:29

build-system: Always enable C++ if the compiler is present.

We always build a C++ compiler and building with C++ does not effect
RTEMS or the runtime. This patch always enabled the support. There is
no need to manually enable it any more.

You can disable C++ with '--disable-cxx'.

If an architecture does not have a C++ compiler support is automatically
disabled.

  • Property mode set to 100644
File size: 304 bytes
Line 
1AC_DEFUN([RTEMS_ENABLE_CXX],
2[
3AC_ARG_ENABLE(cxx,
4[AS_HELP_STRING([--enable-cxx],
5[enable C++ support])],
6[case "${enable_cxx}" in
7  yes) RTEMS_HAS_CPLUSPLUS=yes ;;
8  no) RTEMS_HAS_CPLUSPLUS=no   ;;
9  *)  AC_MSG_ERROR(bad value ${enableval} for enable-cxx option) ;;
10esac], [RTEMS_HAS_CPLUSPLUS=yes])
11])
Note: See TracBrowser for help on using the repository browser.