source: rtems/configure.ac @ a2dad96

5
Last change on this file since a2dad96 was aa567bc1, checked in by Chris Johns <chrisj@…>, on 04/10/18 at 06:06:39

configure: Add subdir-objects to all automake flags.

This option silences warning with automake-1.16.1 allowing us to
upgrade to that version.

This change has been tested with automake-1.12.6 and automake-1.16.1.
It seems version 1.16.1 configures slower than 1.12.6 for the same
source and BSP. The newer versions is 6 second slower.

Close #3387.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5AC_CONFIG_SRCDIR([c])
6RTEMS_TOP([.])
7RTEMS_SOURCE_TOP
8RTEMS_BUILD_TOP
9
10# Abort if trying to build inside of the source tree.
11AS_IF([test -f aclocal/version.m4],[
12  rm -f config.cache config.log confdefs.h
13  AC_MSG_ERROR([***]
14    [Attempt to build inside of the source tree]
15    [Please use a separate build directory, instead] )
16])
17
18AC_CANONICAL_TARGET([])
19AM_INIT_AUTOMAKE([no-define foreign dist-bzip2 no-dist-gzip subdir-objects 1.12.2])
20AM_MAINTAINER_MODE
21
22## These option are only in here to let --help report all supported
23## options.
24RTEMS_ENABLE_RTEMSBSP
25RTEMS_ENABLE_MULTIPROCESSING
26RTEMS_ENABLE_SMP
27RTEMS_ENABLE_POSIX
28RTEMS_ENABLE_NETWORKING
29RTEMS_ENABLE_CXX
30RTEMS_ENABLE_TESTS
31RTEMS_ENABLE_RTEMS_DEBUG
32RTEMS_ENABLE_PARAVIRT
33RTEMS_ENABLE_DRVMGR
34
35## Check if there are valid tools install and in the path.
36RTEMS_CHECK_TOOL(RTEMS_CC,gcc)
37test -z "$RTEMS_CC" && AC_MSG_ERROR([no acceptable cc found in \$PATH])
38
39## NOTES:
40## * tools/build are host-native tools to be installed on the host.
41## * tools/cpu are host-native or host-cross-target-tools
42
43RTEMS_BUILD_CONFIG_SUBDIRS([tools/build])
44RTEMS_BUILD_CONFIG_SUBDIRS([tools/cpu])
45
46case $enable_tests in
47yes | samples )
48  RTEMS_BUILD_CONFIG_SUBDIRS([testsuites/tools])
49  ;;
50esac
51
52# Some BSPs carelessly apply these tools as build-tools
53AS_IF([test $host != $build],[
54RTEMS_HOST_CONFIG_SUBDIRS([tools/build])
55])
56
57RTEMS_TARGET_CONFIG_SUBDIRS([c])
58
59AC_CONFIG_FILES([Makefile])
60
61AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.