source: rtems/c/src/configure.ac @ d844a182

4.104.114.84.95
Last change on this file since d844a182 was d844a182, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/21/04 at 18:07:48

2004-01-21 Ralf Corsepius <corsepiu@…>

  • configure.ac: Reflect changes to cpukit.
  • Property mode set to 100644
File size: 6.9 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.59)
6AC_INIT([rtems-c-src],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
7AC_CONFIG_SRCDIR([optman])
8RTEMS_TOP(../..)
9
10RTEMS_ENABLE_CXX
11RTEMS_ENABLE_NETWORKING
12RTEMS_ENABLE_RDBG
13
14RTEMS_CANONICAL_TARGET_CPU
15
16AM_INIT_AUTOMAKE([no-define subdir-objects no-exeext foreign 1.8.2])
17AM_MAINTAINER_MODE
18
19RTEMS_ENABLE_MULTILIB
20RTEMS_ENABLE_MULTIPROCESSING
21RTEMS_ENV_RTEMSBSP
22
23# Is this a supported CPU?
24AC_MSG_CHECKING([if cpu $RTEMS_CPU is supported])
25# FIXME: Temporary hack
26if test -d "$srcdir/lib/libbsp/$RTEMS_CPU"; then
27  AC_MSG_RESULT(yes)
28else
29  AC_MSG_ERROR(no)
30fi
31
32RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
33
34RTEMS_CHECK_NETWORKING(RTEMS_BSP)
35RTEMS_CHECK_POSIX_API(RTEMS_BSP)
36AS_IF([test "$HAS_NETWORKING" = "yes"],[
37  AS_IF([test "$RTEMS_HAS_RDBG" = "yes"],[
38    RTEMS_CHECK_RDBG(RTEMS_BSP)
39  ])
40])
41
42AC_CHECK_PROG(RPCGEN,rpcgen,rpcgen,no)
43AC_PROG_AWK
44
45AC_MSG_NOTICE([setting up make/custom])
46
47AS_MKDIR_P([make/custom])
48
49# Collect and copy the BSP's make/custom/*.cfg files from the toplevel make
50# directory into the build tree's <bsp>/make/custom subdirectories
51cfg_dir="${RTEMS_TOPdir}/make"
52CUSTOM_CFG_FILES=""
53f="${RTEMS_BSP}.cfg"
54while test -n "$f"; do
55  if test -r "${srcdir}/${cfg_dir}/custom/$f"; then
56    cp ${srcdir}/${cfg_dir}/custom/$f make/custom/$f
57    CUSTOM_CFG_FILES="$CUSTOM_CFG_FILES make/custom/$f"
58    f=`grep "^include.*make/custom" ${srcdir}/${cfg_dir}/custom/$f \
59    | sed \
60      -e 's%^.*custom\/%%' \
61      -e s%\$\(RTEMS_HOST\)%${RTEMS_HOST}% \
62      -e 's%default\.cfg%%'`;
63  else break; fi;
64done
65cp ${srcdir}/make/custom/default.cfg.in make/custom/default.cfg
66
67AC_MSG_NOTICE([creating make/${RTEMS_BSP}.cache])
68${MAKE-make} -f ${srcdir}/make/bsp.mak \
69RTEMS_BSP=${RTEMS_BSP} \
70RTEMS_HOST=${RTEMS_HOST} \
71BARE_CPU_MODEL=${BARE_CPU_MODEL} \
72RTEMS_ROOT=. make/${RTEMS_BSP}.cache
73
74# Read back the cache
75AC_CACHE_CHECK([for RTEMS_CPU_MODEL], [ac_cv_env_RTEMS_CPU_MODEL],
76[. ./make/${RTEMS_BSP}.cache])
77RTEMS_CPU_MODEL=$ac_cv_env_RTEMS_CPU_MODEL
78AC_SUBST(RTEMS_CPU_MODEL)
79test -n "${RTEMS_CPU_MODEL}" && \
80  ac_configure_args="$ac_configure_args 'RTEMS_CPU_MODEL=${RTEMS_CPU_MODEL}'"
81
82AC_CACHE_CHECK([for RTEMS_BSP_FAMILY],[ac_cv_env_RTEMS_BSP_FAMILY],
83[. ./make/${RTEMS_BSP}.cache])
84RTEMS_BSP_FAMILY=$ac_cv_env_RTEMS_BSP_FAMILY
85AC_SUBST(RTEMS_BSP_FAMILY)
86test -n "${RTEMS_BSP_FAMILY}" && \
87  ac_configure_args="$ac_configure_args 'RTEMS_BSP_FAMILY=${RTEMS_BSP_FAMILY}'"
88
89AC_CACHE_CHECK([for CPU_CFLAGS],[ac_cv_env_CPU_CFLAGS],
90[. ./make/${RTEMS_BSP}.cache])
91CPU_CFLAGS=$ac_cv_env_CPU_CFLAGS
92AC_SUBST(CPU_CFLAGS)
93test -n "${CPU_CFLAGS}" && \
94  ac_configure_args="$ac_configure_args 'CPU_CFLAGS=${CPU_CFLAGS}'"
95
96AC_CACHE_CHECK([for CFLAGS_OPTIMIZE_V],[ac_cv_env_CFLAGS_OPTIMIZE_V],
97[. ./make/${RTEMS_BSP}.cache])
98CFLAGS_OPTIMIZE_V=$ac_cv_env_CFLAGS_OPTIMIZE_V
99AC_SUBST(CFLAGS_OPTIMIZE_V)
100test -n "${CFLAGS_OPTIMIZE_V}" && \
101  ac_configure_args="$ac_configure_args 'CFLAGS_OPTIMIZE_V=${CFLAGS_OPTIMIZE_V}'"
102
103AC_CACHE_CHECK([for CFLAGS_DEBUG_V],[ac_cv_env_CFLAGS_DEBUG_V],
104[. ./make/${RTEMS_BSP}.cache])
105CFLAGS_DEBUG_V=$ac_cv_env_CFLAGS_DEBUG_V
106AC_SUBST(CFLAGS_DEBUG_V)
107test -n "${CFLAGS_DEBUG_V}" && \
108  ac_configure_args="$ac_configure_args 'CFLAGS_DEBUG_V=${CFLAGS_DEBUG_V}'"
109
110RTEMS_PROG_CC_FOR_TARGET
111AM_PROG_CC_C_O
112RTEMS_PROG_CCAS
113RTEMS_CANONICALIZE_TOOLS
114
115AC_SUBST(CUSTOM_CFG_FILES)
116AC_SUBST(cfg_dir)
117
118## Configure ${srcdir}/../../cpukit as exec/ if multilibs are disabled
119AS_IF([test x"$multilib" = x"no"],[
120  RTEMS_CHECK_MULTIPROCESSING
121  AC_CONFIG_COMMANDS_POST([
122    if test x"$multilib" = x"no"; then
123    RTEMS_CONFIG_SUBDIR([exec],[../../cpukit],
124      ['--with-project-root=../../..' '--enable-rtemsbsp=$RTEMS_BSP'])
125    fi
126  ])
127  BSP_SUBDIRS="exec"
128])
129
130## Note: the order of the directories below is essential
131AC_CONFIG_SUBDIRS([make])
132BSP_SUBDIRS="$BSP_SUBDIRS make"
133BSP_SUBDIRS="$BSP_SUBDIRS optman"
134
135RTEMS_CPU_SUBDIRS(lib/libcpu)
136if test -d "${srcdir}/lib/libcpu/${RTEMS_CPU}"; then
137  libcpu_cpu_subdir="${RTEMS_CPU}"
138else
139  libcpu_cpu_subdir=
140fi
141AC_SUBST(libcpu_cpu_subdir)
142
143# Is there code where there should be for this BSP?
144# The bare bsp is a special case as it is not under the RTEMS_CPU path
145if test "$RTEMS_BSP_FAMILY" = "bare" ; then
146  AC_CONFIG_SUBDIRS([lib/libbsp/bare])
147  AC_SUBST(libbsp_cpu_subdir,bare)
148else
149  RTEMS_CPU_SUBDIRS([lib/libbsp])
150  AC_SUBST(libbsp_cpu_subdir,$RTEMS_CPU)
151fi
152
153BSP_SUBDIRS="$BSP_SUBDIRS lib"
154BSP_SUBDIRS="$BSP_SUBDIRS libchip"
155BSP_SUBDIRS="$BSP_SUBDIRS libnetworking"
156BSP_SUBDIRS="$BSP_SUBDIRS librdbg"
157                                                         
158AS_IF([test "$RTEMS_HAS_CPLUSPLUS" = "yes"],[
159  AC_CONFIG_SUBDIRS([librtems++])
160  BSP_SUBDIRS="$BSP_SUBDIRS librtems++"
161])
162
163BSP_SUBDIRS="$BSP_SUBDIRS support"
164BSP_SUBDIRS="$BSP_SUBDIRS wrapup"
165
166AC_ARG_ENABLE([ada],
167[AC_HELP_STRING([--enable-ada],[enable ada support])],
168[case "${enable_ada}" in
169  yes) ;;
170  no) ;;
171  *)  AC_MSG_ERROR(bad value ${enable_ada} for --enable-ada) ;;
172esac],[enable_ada=no])
173
174AS_IF([test x"$enable_ada" = x"yes"],[
175  AS_IF([test -d ${srcdir}/ada-tests],[
176    AC_CONFIG_SUBDIRS([ada-tests])
177    BSP_SUBDIRS="$BSP_SUBDIRS ada-tests"
178  ])
179])
180
181AS_IF([test -d ${srcdir}/../../testsuites],[
182  BSP_SUBDIRS="$BSP_SUBDIRS testsuites"
183])
184
185  AC_CONFIG_COMMANDS_POST([
186    RTEMS_CONFIG_SUBDIR([testsuites],[../../testsuites],
187      ['--with-project-root=../../' '--enable-rtemsbsp=$RTEMS_BSP'])
188  ])
189
190AC_SUBST([BSP_SUBDIRS],[$BSP_SUBDIRS])
191
192AS_IF([test "$host_cpu" = "sparc"],[
193  AC_DEFINE_UNQUOTED([CPU_U32_FIX],[1],
194    [whether to enable ipalignment work-around])
195])
196
197AM_CONDITIONAL([HAS_NETWORKING],[test "$HAS_NETWORKING" = "yes"])
198AM_CONDITIONAL([HAS_RDBG],[test "$HAS_RDBG" = "yes"])
199AM_CONDITIONAL(HAS_POSIX,test "$HAS_POSIX_API" = "yes")
200AM_CONDITIONAL([HAS_MP],[test "$HAS_MP" = "yes"])
201
202# The posix bsp doesn't support libchip
203# FIXME: We should use a feature based check, here
204AM_CONDITIONAL([LIBCHIP],[test "$RTEMS_BSP_FAMILY" != "posix"])
205
206# The bare bsp doesn't have libbsp.a
207# FIXME: We should use a feature based check, here
208AM_CONDITIONAL([HAS_LIBBSP],[test "$RTEMS_BSP_FAMILY" != "bare"])
209AM_CONDITIONAL([MULTILIB],[test x"${enable_multilib}" = x"yes"])
210
211AM_CONDITIONAL(RPCTOOLS, test "$rpctools" != "no")
212
213RTEMS_PROJECT_ROOT
214
215# Explicitly list all Makefiles here
216AC_CONFIG_FILES([Makefile],
217[${MAKE} make/${RTEMS_BSP}.cache],
218[RTEMS_BSP=${RTEMS_BSP}
219 MAKE=${MAKE}])
220
221AC_CONFIG_FILES([
222support/Makefile
223
224libnetworking/Makefile
225libnetworking/pppd/Makefile
226libnetworking/rtems_servers/Makefile
227libnetworking/rtems_telnetd/Makefile
228libnetworking/rtems_webserver/Makefile
229
230librdbg/Makefile
231librdbg/include/Makefile
232librdbg/include/rdbg/Makefile
233librdbg/include/rdbg/i386/Makefile
234librdbg/include/rdbg/powerpc/Makefile
235librdbg/include/rdbg/m68k/Makefile
236librdbg/src/Makefile
237librdbg/src/i386/Makefile
238librdbg/src/powerpc/Makefile
239librdbg/src/m68k/Makefile
240
241libchip/Makefile
242
243optman/Makefile
244
245lib/Makefile
246
247lib/libcpu/Makefile
248
249lib/libbsp/Makefile
250
251wrapup/Makefile
252])
253
254AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.