source: rtems/cpukit/configure.ac @ 14d34d84

4.104.114.84.95
Last change on this file since 14d34d84 was e30210ea, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/08/03 at 10:41:37

2003-07-08 Ralf Corsepius <corsepiu@…>

  • configure.ac: Merge-in libmisc/configure.ac.
  • Makefile.am: Add libmisc to SUBDIRS.
  • Property mode set to 100644
File size: 6.0 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.57)
6AC_INIT([rtems-cpukit],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([score])
8RTEMS_TOP(..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.7.2])
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_MULTILIB
16RTEMS_ENABLE_MULTIPROCESSING
17RTEMS_ENABLE_POSIX
18RTEMS_ENABLE_ITRON
19RTEMS_ENABLE_INLINES
20RTEMS_ENABLE_RTEMS_DEBUG
21RTEMS_ENABLE_NETWORKING
22
23RTEMS_ENV_RTEMSCPU
24RTEMS_CHECK_RTEMS_DEBUG
25
26RTEMS_CHECK_CPU
27RTEMS_CANONICAL_HOST
28
29RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
30RTEMS_CANONICALIZE_TOOLS
31AC_PROG_RANLIB
32
33# FIXME: For the moment, no reason to check for ada
34# RTEMS_PROG_GNAT
35
36RTEMS_CHECK_NEWLIB
37
38RTEMS_CHECK_MULTIPROCESSING
39RTEMS_CHECK_POSIX_API
40RTEMS_CHECK_ITRON_API
41RTEMS_CHECK_NETWORKING
42
43# If RTEMS macros are enabled, then use them.  Otherwise, use inlines.
44AS_IF([test "$RTEMS_USE_MACROS" = "yes"],
45  [INLINEdir="macros"],
46  [INLINEdir="inline"])
47AC_SUBST(INLINEdir)
48AM_CONDITIONAL(INLINE,test x"$INLINEdir" = x"inline" )
49AM_CONDITIONAL(MACROS,test x"$INLINEdir" = x"macros" )
50AM_CONDITIONAL(HAS_MP,test x"$HAS_MP" = x"yes" )
51
52AC_DEFINE(RTEMS_VERSION,["rtems-][_RTEMS_VERSION]["],[RTEMS version string])
53
54AM_CONDITIONAL(HAS_POSIX,test x"$HAS_POSIX_API" = x"yes")
55AM_CONDITIONAL(HAS_ITRON,test x"$HAS_ITRON_API" = x"yes")
56AM_CONDITIONAL(HAS_NETWORKING,test x"$HAS_NETWORKING" = x"yes")
57
58AS_IF([test x"$HAS_POSIX_API" = x"yes"],
59  [AC_CONFIG_SUBDIRS([posix])]
60)
61AS_IF([test x"$HAS_ITRON_API" = x"yes"],
62  [AC_CONFIG_SUBDIRS(itron)]
63)
64RTEMS_CPU_SUBDIRS([score/cpu])
65# FIXME: All ports should have a libscorecpu.a - But the powerpc doesn't!
66AM_CONDITIONAL([LIBSCORECPU],
67[test -f "${srcdir}/score/cpu/${RTEMS_CPU}/cpu.c"])
68
69AC_CONFIG_SUBDIRS([libcsupport])
70AS_IF([test x"$HAS_NETWORKING" = x"yes"],[
71  AC_CONFIG_SUBDIRS(libnetworking)
72## FIXME: Should better use a feature-based test
73AC_MSG_CHECKING([whether CPU supports librpc])
74  case "$RTEMS_CPU" in
75  c4x )  LIBRPC=no;;
76  or32 ) LIBRPC=no;;
77  * )    LIBRPC=yes;;
78  esac
79AC_MSG_RESULT([$LIBRPC])
80  AS_IF([test "$LIBRPC" = "yes"],
81    [AC_CONFIG_SUBDIRS([librpc])
82  ])
83])
84AM_CONDITIONAL(LIBRPC,[test "$LIBRPC" = "yes"])
85
86AC_ARG_ENABLE([ada],
87[AC_HELP_STRING([--enable-ada],[enable ada support])],
88[case "${enable_ada}" in
89  yes) ;;
90  no) ;;
91  *)  AC_MSG_ERROR([bad value ${enable_ada} for --enable-ada]) ;;
92esac],[enable_ada=no])
93
94RTEMS_DEFINE_POSIX_API
95RTEMS_DEFINE_ITRON_API
96RTEMS_DEFINE_MULTIPROCESSING
97
98# HACK: We should use a feature-based configuration.
99AS_IF([test x"${RTEMS_CPU}" = x"unix"],[
100  AC_DEFINE_UNQUOTED([RTEMS_UNIX],[1],[to indicate RTEMS unix])
101# HACK: silently accept --enable-unixlib
102  test -n "${enable_unixlib}" || enable_unixlib="yes"
103])
104
105AM_CONDITIONAL(UNIX,[test x"${RTEMS_CPU}" = x"unix"])
106
107AS_IF([test x"${enable_unixlib}" = x"yes"],
108  [AC_DEFINE_UNQUOTED([RTEMS_UNIXLIB],[1],
109    [to indicate RTEMS using RTEMS's unixlib])]
110)
111
112
113AM_CONFIG_HEADER([score/include/rtems/score/cpuopts-tmp.h],[
114echo "/* target cpu dependent options file */"         >$tmp/config.h
115echo "/* automatically generated -- DO NOT EDIT!! */" >>$tmp/config.h
116echo                                                  >>$tmp/config.h
117echo "#ifndef __CPU_OPTIONS_h"                        >>$tmp/config.h
118echo "#define __CPU_OPTIONS_h"                        >>$tmp/config.h
119echo                                                  >>$tmp/config.h
120sed -e '/.*PACKAGE.*/d' score/include/rtems/score/cpuopts-tmp.h >> $tmp/config.h
121echo                                                  >>$tmp/config.h
122echo "#endif"                                         >>$tmp/config.h
123AS_IF([cmp -s score/include/rtems/score/cpuopts.h $tmp/config.h 2>/dev/null],
124  [AC_MSG_NOTICE([score/include/rtems/score/cpuopts.h is unchanged])
125   rm -f $tmp/config.h],
126  [AC_MSG_NOTICE([creating score/include/rtems/score/cpuopts.h])
127   rm -f score/include/rtems/score/cpuopts.h
128   mv $tmp/config.h score/include/rtems/score/cpuopts.h])
129])
130
131AC_ENABLE_MULTILIB([Makefile],[..])
132
133## HACK: Add a define to cpuopts.h to indicate using multilibs
134## Can be applied to produce compiler errors if using
135## multilib-incompatible settings somewhere else (eg. bspopts.h).
136AS_IF([test x"${enable_multilib}" = x"yes"],[
137  AC_DEFINE_UNQUOTED([RTEMS_MULTILIBS],[1],[using multilib'ed RTEMS])
138])
139
140# libmisc/shell/* wants to assign file descriptors to stdio file descriptors.
141AC_MSG_CHECKING([for assignable stdio])
142AC_COMPILE_IFELSE(
143  [AC_LANG_PROGRAM(
144    [#include <stdio.h>],
145    [stdin = fopen("/tmp", "r")])],
146  [HAVE_ASSIGNABLE_STDIO=yes],
147  [HAVE_ASSIGNABLE_STDIO=no])
148AC_MSG_RESULT([$HAVE_ASSIGNABLE_STDIO])
149
150# libmisc/serdbg exploits weak symbols
151AC_CACHE_CHECK([whether $CC supports function __attribute__((weak))],
152[rtems_cv_cc_attribute_weak],[
153  AS_IF([test x"$GCC" = xyes],[
154    save_CFLAGS=$CFLAGS
155    CFLAGS=-Werror])
156
157  AC_COMPILE_IFELSE([
158    AC_LANG_PROGRAM(
159    [void myfunc(char c) __attribute__ ((weak));
160     void myfunc(char c) {}],
161    [])],
162    [rtems_cv_cc_attribute_weak=yes],
163    [rtems_cv_cc_attribute_weak=no])
164
165  AS_IF([test x"$GCC" = xyes],[
166    CFLAGS=$save_CFLAGS])
167])
168
169AM_CONDITIONAL(RTEMS_ADA,[test x"$enable_ada" = x"yes" \
170  && test x"$HAS_POSIX_API" = x"yes"])
171
172AM_CONDITIONAL([LIBSHELL],[test x"$HAVE_ASSIGNABLE_STDIO" = x"yes"])
173AM_CONDITIONAL([LIBSERDBG],[test x"$rtems_cv_cc_attribute_weak" = x"yes"])
174
175# Explicitly list all Makefiles here
176AC_CONFIG_FILES([Makefile
177include/Makefile
178rtems/Makefile
179sapi/Makefile
180score/Makefile
181score/cpu/Makefile
182])
183
184AC_CONFIG_FILES([libblock/Makefile])
185
186AC_CONFIG_FILES([libfs/Makefile
187libfs/src/Makefile
188libfs/src/imfs/Makefile
189libfs/src/dosfs/Makefile])
190
191AC_CONFIG_FILES([ada/Makefile])
192
193AC_CONFIG_FILES([libmisc/Makefile
194libmisc/cpuuse/Makefile
195libmisc/shell/Makefile
196libmisc/devnull/Makefile
197libmisc/dummy/Makefile
198libmisc/dumpbuf/Makefile
199libmisc/monitor/Makefile
200libmisc/rtmonuse/Makefile
201libmisc/serdbg/Makefile
202libmisc/stackchk/Makefile
203libmisc/capture/Makefile
204libmisc/untar/Makefile
205libmisc/mw-fb/Makefile
206libmisc/wrapup/Makefile
207])
208
209AC_CONFIG_FILES([wrapup/Makefile])
210
211AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.