* support/cpp2/cppexp.c, support/cpp2/hashtable.h,
[fw/sdcc] / support / cpp2 / configure.in
1 # configure.in for GCC
2 # Process this file with autoconf to generate a configuration script.
3
4 # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
5
6 #This file is part of GCC.
7
8 #GCC is free software; you can redistribute it and/or modify it under
9 #the terms of the GNU General Public License as published by the Free
10 #Software Foundation; either version 2, or (at your option) any later
11 #version.
12
13 #GCC is distributed in the hope that it will be useful, but WITHOUT
14 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 #FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 #for more details.
17
18 #You should have received a copy of the GNU General Public License
19 #along with GCC; see the file COPYING.  If not, write to the Free
20 #Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 #02111-1307, USA.
22
23 # Initialization and defaults
24 AC_PREREQ(2.13)
25 AC_INIT(cppmain.c)
26 AC_CONFIG_HEADER(auto-host.h:config.in)
27
28 remove=rm
29 hard_link=ln
30 symbolic_link='ln -s'
31 copy=cp
32
33 # Check for additional parameters
34
35 # With GNU ld
36 AC_ARG_WITH(gnu-ld,
37 [  --with-gnu-ld           arrange to work with GNU ld.],
38 gnu_ld_flag="$with_gnu_ld",
39 gnu_ld_flag=no)
40
41 # With pre-defined ld
42 AC_ARG_WITH(ld,
43 [  --with-ld               arrange to use the specified ld (full pathname)],
44 DEFAULT_LINKER="$with_ld")
45 if test x"${DEFAULT_LINKER+set}" = x"set"; then
46   if test ! -x "$DEFAULT_LINKER"; then
47     AC_MSG_WARN([cannot execute: $DEFAULT_LINKER: check --with-ld or env. var. DEFAULT_LINKER])
48   elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
49     gnu_ld_flag=yes
50   fi
51   AC_DEFINE_UNQUOTED(DEFAULT_LINKER,"$DEFAULT_LINKER",
52         [Define to enable the use of a default linker.])
53 fi
54
55 # With GNU as
56 AC_ARG_WITH(gnu-as,
57 [  --with-gnu-as           arrange to work with GNU as],
58 gas_flag="$with_gnu_as",
59 gas_flag=no)
60
61 AC_ARG_WITH(as,
62 [  --with-as               arrange to use the specified as (full pathname)],
63 DEFAULT_ASSEMBLER="$with_as")
64 if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
65   if test ! -x "$DEFAULT_ASSEMBLER"; then
66     AC_MSG_WARN([cannot execute: $DEFAULT_ASSEMBLER: check --with-as or env. var. DEFAULT_ASSEMBLER])
67   elif $DEFAULT_ASSEMBLER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
68     gas_flag=yes
69   fi
70   AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$DEFAULT_ASSEMBLER",
71         [Define to enable the use of a default assembler.])
72 fi
73
74 # With stabs
75 AC_ARG_WITH(stabs,
76 [  --with-stabs            arrange to use stabs instead of host debug format],
77 stabs="$with_stabs",
78 stabs=no)
79
80 # With ELF
81 AC_ARG_WITH(elf,
82 [  --with-elf              arrange to use ELF instead of host debug format],
83 elf="$with_elf",
84 elf=no)
85
86 # Specify the local prefix
87 local_prefix=
88 AC_ARG_WITH(local-prefix,
89 [  --with-local-prefix=DIR specifies directory to put local include],
90 [case "${withval}" in
91 yes)    AC_MSG_ERROR(bad value ${withval} given for local include directory prefix) ;;
92 no)     ;;
93 *)      local_prefix=$with_local_prefix ;;
94 esac])
95
96 # Default local prefix if it is empty
97 if test x$local_prefix = x; then
98         local_prefix=/usr/local
99 fi
100
101 AC_ARG_PROGRAM
102
103 # Enable Multibyte Characters for C/C++
104 AC_ARG_ENABLE(c-mbchar,
105 [  --enable-c-mbchar       enable multibyte characters for C and C++],
106 if test x$enable_c_mbchar != xno; then
107   AC_DEFINE(MULTIBYTE_CHARS, 1,
108   [Define if you want the C and C++ compilers to support multibyte
109    character sets for source code.])
110 fi)
111
112 # Find the native compiler
113 AC_PROG_CC
114 AC_PROG_CC_C_O
115 # autoconf is lame and doesn't give us any substitution variable for this.
116 if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
117   NO_MINUS_C_MINUS_O=yes
118 else
119   OUTPUT_OPTION='-o $@'
120 fi
121 AC_SUBST(NO_MINUS_C_MINUS_O)
122 AC_SUBST(OUTPUT_OPTION)
123
124 AC_PROG_CPP
125 AC_C_INLINE
126
127 gcc_AC_C__BOOL
128
129 # sizeof(char) is 1 by definition.
130 gcc_AC_COMPILE_CHECK_SIZEOF(short)
131 gcc_AC_COMPILE_CHECK_SIZEOF(int)
132 gcc_AC_COMPILE_CHECK_SIZEOF(long)
133
134 gcc_AC_C_CHARSET
135
136 # If the native compiler is GCC, we can enable warnings even in stage1.
137 # That's useful for people building cross-compilers, or just running a
138 # quick `make'.
139 warn_cflags=
140 if test "x$GCC" = "xyes"; then
141   warn_cflags='$(GCC_WARN_CFLAGS)'
142 fi
143 AC_SUBST(warn_cflags)
144
145 AC_PROG_MAKE_SET
146
147 AC_MSG_CHECKING([whether a default assembler was specified])
148 if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
149     if test x"$gas_flag" = x"no"; then
150         AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER)])
151     else
152         AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER - GNU as)])
153     fi
154 else
155     AC_MSG_RESULT(no)
156 fi
157
158 AC_MSG_CHECKING([whether a default linker was specified])
159 if test x"${DEFAULT_LINKER+set}" = x"set"; then
160     if test x"$gnu_ld_flag" = x"no"; then
161         AC_MSG_RESULT([yes ($DEFAULT_LINKER)])
162     else
163         AC_MSG_RESULT([yes ($DEFAULT_LINKER - GNU ld)])
164     fi
165 else
166     AC_MSG_RESULT(no)
167 fi
168
169 # Find some useful tools
170 gcc_AC_PROG_LN
171 gcc_AC_PROG_LN_S
172 AC_PROG_RANLIB
173 gcc_AC_PROG_INSTALL
174
175 AC_HEADER_STDC
176 AC_HEADER_TIME
177 gcc_AC_HEADER_STDBOOL
178 gcc_AC_HEADER_STRING
179 AC_HEADER_SYS_WAIT
180 AC_CHECK_HEADERS(limits.h stddef.h string.h strings.h stdlib.h time.h \
181                  fcntl.h unistd.h sys/file.h sys/time.h \
182                  sys/param.h sys/stat.h \
183                  direct.h malloc.h)
184
185 # Check for thread headers.
186
187 # These tests can't be done till we know if we have limits.h.
188 gcc_AC_C_CHAR_BIT
189 gcc_AC_C_COMPILE_ENDIAN
190
191 # See if we have the mktemp command.
192 AC_CHECK_PROG(have_mktemp_command, mktemp, yes, no)
193
194 AC_CHECK_PROG(STRIP, strip, strip, :)
195
196 # See if the stage1 system preprocessor understands the ANSI C
197 # preprocessor stringification operator.  (Used by symcat.h.)
198 AC_C_STRINGIZE
199
200 dnl Disabled until we have a complete test for buggy enum bitfields.
201 dnl gcc_AC_C_ENUM_BF_UNSIGNED
202
203 AC_CHECK_FUNCS(clock strchr strrchr lstat)
204
205 AC_CHECK_TYPE(ssize_t, int)
206
207 AC_FUNC_MMAP_ANYWHERE
208 AC_FUNC_MMAP_FILE
209
210 # We will need to find libiberty.h and ansidecl.h
211 saved_CFLAGS="$CFLAGS"
212 CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include"
213 gcc_AC_CHECK_DECLS(getenv abort errno \
214         malloc realloc calloc free clock, , ,[
215 #include "ansidecl.h"
216 #include "system.h"])
217
218 # Restore CFLAGS from before the gcc_AC_NEED_DECLARATIONS tests.
219 CFLAGS="$saved_CFLAGS"
220
221 # mkdir takes a single argument on some systems.
222 gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG
223
224 # File extensions
225 manext='.1'
226 objext='.o'
227 AC_SUBST(manext)
228 AC_SUBST(objext)
229
230 build_xm_file=
231 build_xm_defines=
232 build_install_headers_dir=install-headers-tar
233 build_exeext=
234 host_xm_file=
235 host_xm_defines=
236 host_xmake_file=
237 host_truncate_target=
238 host_exeext=
239
240 # Decode the host machine, then the target machine.
241 # For the host machine, we save the xm_file variable as host_xm_file;
242 # then we decode the target machine and forget everything else
243 # that came from the host machine.
244 #for machine in $build $host $target; do
245 #       . ${srcdir}/config.gcc
246 #done
247
248 extra_objs="${host_extra_objs} ${extra_objs}"
249
250 # Default the target-machine variables that were not explicitly set.
251 if test x"$tm_file" = x
252 then tm_file=$cpu_type/$cpu_type.h; fi
253
254 if test x"$extra_headers" = x
255 then extra_headers=; fi
256
257 if test x$md_file = x
258 then md_file=$cpu_type/$cpu_type.md; fi
259
260 if test x$out_file = x
261 then out_file=$cpu_type/$cpu_type.c; fi
262
263 if test x"$tmake_file" = x
264 then tmake_file=$cpu_type/t-$cpu_type
265 fi
266
267 if test x"$dwarf2" = xyes
268 then tm_file="$tm_file tm-dwarf2.h"
269 fi
270
271 # Handle cpp installation.
272 if test x$enable_cpp != xno
273 then
274   tmake_file="$tmake_file t-install-cpp"
275 fi
276
277 # auto-host.h is the file containing items generated by autoconf and is
278 # the first file included by config.h.
279 # If host=build, it is correct to have hconfig include auto-host.h
280 # as well.  If host!=build, we are in error and need to do more
281 # work to find out the build config parameters.
282 if test x$host = x$build
283 then
284         build_auto=auto-host.h
285 else
286         # We create a subdir, then run autoconf in the subdir.
287         # To prevent recursion we set host and build for the new
288         # invocation of configure to the build for this invocation
289         # of configure.
290         tempdir=build.$$
291         rm -rf $tempdir
292         mkdir $tempdir
293         cd $tempdir
294         case ${srcdir} in
295         /* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
296         *) realsrcdir=../${srcdir};;
297         esac
298         CC=${CC_FOR_BUILD} ${realsrcdir}/configure \
299                 --target=$target --host=$build --build=$build
300
301         # We just finished tests for the build machine, so rename
302         # the file auto-build.h in the gcc directory.
303         mv auto-host.h ../auto-build.h
304         cd ..
305         rm -rf $tempdir
306         build_auto=auto-build.h
307 fi
308
309 tm_file="${tm_file} defaults.h"
310 host_xm_file="auto-host.h ansidecl.h ${host_xm_file} ${tm_file}"
311 build_xm_file="${build_auto} ansidecl.h ${build_xm_file} ${tm_file}"
312 xm_file="ansidecl.h ${xm_file} ${tm_file}"
313
314 # Truncate the target if necessary
315 if test x$host_truncate_target != x; then
316         target=`echo $target | sed -e 's/\(..............\).*/\1/'`
317 fi
318
319 # Get the version trigger filename from the toplevel
320 if test "${with_gcc_version_trigger+set}" = set; then
321         gcc_version_trigger=$with_gcc_version_trigger
322 else
323         gcc_version_trigger=${srcdir}/version.c
324 fi
325 changequote(,)dnl
326 gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*"\([^"]*\)".*/\1/'`
327 gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
328
329 # Compile in configure arguments.
330 if test -f configargs.h ; then
331         # Being re-configured.
332         gcc_config_arguments=`grep configuration_arguments configargs.h | sed -e 's/.*"\([^"]*\)".*/\1/'`
333         gcc_config_arguments="$gcc_config_arguments : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS"
334 else
335         gcc_config_arguments="$TOPLEVEL_CONFIGURE_ARGUMENTS"
336 fi
337 cat > configargs.h <<EOF
338 /* Generated automatically. */
339 static const char configuration_arguments[] = "$gcc_config_arguments";
340 static const char thread_model[] = "$thread_file";
341 EOF
342 changequote([,])dnl
343
344 # Internationalization
345 PACKAGE=sdcc
346 VERSION="$gcc_version"
347 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE",
348         [Define to the name of the distribution.])
349 AC_DEFINE_UNQUOTED(VERSION, "$VERSION",
350         [Define to the version of the distribution.])
351 AC_SUBST(PACKAGE)
352 AC_SUBST(VERSION)
353
354 ALL_LINGUAS="sv"
355
356 # Get an absolute path to the GCC top-level source directory
357 holddir=`pwd`
358 cd $srcdir
359 topdir=`pwd`
360 cd $holddir
361
362 out_object_file=`basename $out_file .c`.o
363
364 # Figure out what assembler we will be using.
365 AC_MSG_CHECKING(what assembler to use)
366 gcc_cv_as=
367 gcc_cv_gas_major_version=
368 gcc_cv_gas_minor_version=
369 gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
370 if test -x "$DEFAULT_ASSEMBLER"; then
371         gcc_cv_as="$DEFAULT_ASSEMBLER"
372 elif test -x "$AS"; then
373         gcc_cv_as="$AS"
374 elif test -x as$host_exeext; then
375         # Build using assembler in the current directory.
376         gcc_cv_as=./as$host_exeext
377 elif test -f $gcc_cv_as_gas_srcdir/configure.in -a -f ../gas/Makefile; then
378         # Single tree build which includes gas.
379         for f in $gcc_cv_as_gas_srcdir/configure $gcc_cv_as_gas_srcdir/configure.in $gcc_cv_as_gas_srcdir/Makefile.in
380         do
381 changequote(,)dnl
382                 gcc_cv_gas_version=`grep '^VERSION=[0-9]*\.[0-9]*' $f`
383 changequote([,])dnl
384                 if test x$gcc_cv_gas_version != x; then
385                         break
386                 fi
387         done
388 changequote(,)dnl
389         gcc_cv_gas_major_version=`expr "$gcc_cv_gas_version" : "VERSION=\([0-9]*\)"`
390         gcc_cv_gas_minor_version=`expr "$gcc_cv_gas_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
391 changequote([,])dnl
392 fi
393
394 if test "x$gcc_cv_as" = x -a x$host = x$target; then
395         # Native build.
396         # Search the same directories that the installed compiler will
397         # search.  Else we may find the wrong assembler and lose.  If we
398         # do not find a suitable assembler binary, then try the user's
399         # path.
400         #
401         # Also note we have to check MD_EXEC_PREFIX before checking the
402         # user's path.  Unfortunately, there is no good way to get at the
403         # value of MD_EXEC_PREFIX here.  So we do a brute force search
404         # through all the known MD_EXEC_PREFIX values.  Ugh.  This needs
405         # to be fixed as part of the make/configure rewrite too.
406
407         if test "x$exec_prefix" = xNONE; then
408                 if test "x$prefix" = xNONE; then
409                         test_prefix=/usr/local
410                 else
411                         test_prefix=$prefix
412                 fi
413         else
414                 test_prefix=$exec_prefix
415         fi
416
417         # If the loop below does not find an assembler, then use whatever
418         # one we can find in the users's path.
419         # user's path.
420         gcc_cv_as=as$host_exeext
421
422         test_dirs="$test_prefix/lib/gcc-lib/$target/$gcc_version \
423                    $test_prefix/lib/gcc-lib/$target \
424                    /usr/lib/gcc/$target/$gcc_version \
425                    /usr/lib/gcc/$target \
426                    $test_prefix/$target/bin/$target/$gcc_version \
427                    $test_prefix/$target/bin \
428                    /usr/libexec \
429                    /usr/ccs/gcc \
430                    /usr/ccs/bin \
431                    /udk/usr/ccs/bin \
432                    /bsd43/usr/lib/cmplrs/cc \
433                    /usr/cross64/usr/bin \
434                    /usr/lib/cmplrs/cc \
435                    /sysv/usr/lib/cmplrs/cc \
436                    /svr4/usr/lib/cmplrs/cc \
437                    /usr/bin"
438
439         for dir in $test_dirs; do
440                 if test -f $dir/as$host_exeext; then
441                         gcc_cv_as=$dir/as$host_exeext
442                         break;
443                 fi
444         done
445 fi
446 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
447   AC_MSG_RESULT("newly built gas")
448 else
449   AC_MSG_RESULT($gcc_cv_as)
450 fi
451
452 # Figure out what nm we will be using.
453 AC_MSG_CHECKING(what nm to use)
454 if test -x nm$host_exeext; then
455         gcc_cv_nm=./nm$host_exeext
456 elif test x$host = x$target; then
457         # Native build.
458         gcc_cv_nm=nm$host_exeext
459 fi
460 AC_MSG_RESULT($gcc_cv_nm)
461
462 dnl Very limited version of automake's enable-maintainer-mode
463
464 AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
465   dnl maintainer-mode is disabled by default
466   AC_ARG_ENABLE(maintainer-mode,
467 [  --enable-maintainer-mode
468                           enable make rules and dependencies not useful
469                           (and sometimes confusing) to the casual installer],
470       maintainer_mode=$enableval,
471       maintainer_mode=no)
472
473 AC_MSG_RESULT($maintainer_mode)
474
475 if test "$maintainer_mode" = "yes"; then
476   MAINT=''
477 else
478   MAINT='#'
479 fi
480 AC_SUBST(MAINT)dnl
481
482 # These (without "all_") are set in each config-lang.in.
483 # `language' must be a single word so is spelled singularly.
484 all_stagestuff=
485 all_outputs='Makefile'
486 # List of language makefile fragments.
487
488 # Add the language fragments.
489 # Languages are added via two mechanisms.  Some information must be
490 # recorded in makefile variables, these are defined in config-lang.in.
491 # We accumulate them and plug them into the main Makefile.
492 # The other mechanism is a set of hooks for each of the main targets
493 # like `clean', `install', etc.
494
495 language_fragments="Make-lang"
496
497 # Define variables host_canonical and build_canonical
498 # because some Cygnus local changes in the Makefile depend on them.
499 build_canonical=${build}
500 host_canonical=${host}
501 target_subdir=
502 if test "${host}" != "${target}" ; then
503     target_subdir=${target_alias}/
504 fi
505 AC_SUBST(build_canonical)
506 AC_SUBST(host_canonical)
507 AC_SUBST(target_subdir)
508
509 # Nothing to do for FLOAT_H, float_format already handled.
510 objdir=`pwd`
511 AC_SUBST(objdir)
512
513 # Substitute configuration variables
514 AC_SUBST(all_stagestuff)
515 AC_SUBST(build_exeext)
516 AC_SUBST(build_install_headers_dir)
517 AC_SUBST(build_xm_file_list)
518 AC_SUBST(build_xm_file)
519 AC_SUBST(build_xm_defines)
520 AC_SUBST(check_languages)
521 AC_SUBST(dep_host_xmake_file)
522 AC_SUBST(dep_tmake_file)
523 AC_SUBST(extra_c_flags)
524 AC_SUBST(extra_headers_list)
525 AC_SUBST(extra_objs)
526 AC_SUBST(extra_parts)
527 AC_SUBST(extra_passes)
528 AC_SUBST(extra_programs)
529 AC_SUBST(gcc_config_arguments)
530 AC_SUBST(gcc_version)
531 AC_SUBST(gcc_version_full)
532 AC_SUBST(gcc_version_trigger)
533 AC_SUBST(host_exeext)
534 AC_SUBST(host_extra_gcc_objs)
535 AC_SUBST(install)
536 AC_SUBST(lang_tree_files)
537 AC_SUBST(local_prefix)
538 AC_SUBST(md_file)
539 AC_SUBST(out_file)
540 AC_SUBST(out_object_file)
541 AC_SUBST(symbolic_link)
542 AC_SUBST(thread_file)
543 AC_SUBST(c_target_objs)
544
545 #AC_SUBST_FILE(target_overrides)
546 #AC_SUBST_FILE(host_overrides)
547 #AC_SUBST(cross_defines)
548 #AC_SUBST_FILE(cross_overrides)
549 #AC_SUBST_FILE(build_overrides)
550
551 # Create the Makefile
552 # and configure language subdirectories
553 AC_OUTPUT($all_outputs,
554 [
555 case x$CONFIG_HEADERS in
556 xauto-host.h:config.in)
557 echo > cstamp-h ;;
558 esac
559
560 # Avoid having to add intl to our include paths.
561 if test -f intl/libintl.h; then
562   echo creating libintl.h
563   echo '#include "intl/libintl.h"' >libintl.h
564 fi
565 ],
566 [
567 host='${host}'
568 build='${build}'
569 target='${target}'
570 target_alias='${target_alias}'
571 srcdir='${srcdir}'
572 symbolic_link='${symbolic_link}'
573 program_transform_set='${program_transform_set}'
574 program_transform_name='${program_transform_name}'
575 dep_host_xmake_file='${dep_host_xmake_file}'
576 host_xmake_file='${host_xmake_file}'
577 dep_tmake_file='${dep_tmake_file}'
578 tmake_file='${tmake_file}'
579 thread_file='${thread_file}'
580 gcc_config_arguments='${gcc_config_arguments}'
581 gcc_version='${gcc_version}'
582 gcc_version_full='${gcc_version_full}'
583 gcc_version_trigger='${gcc_version_trigger}'
584 local_prefix='${local_prefix}'
585 build_install_headers_dir='${build_install_headers_dir}'
586 build_exeext='${build_exeext}'
587 host_exeext='${host_exeext}'
588 out_file='${out_file}'
589 gdb_needs_out_file_path='${gdb_needs_out_file_path}'
590 SET_MAKE='${SET_MAKE}'
591 target_list='${target_list}'
592 target_overrides='${target_overrides}'
593 host_overrides='${host_overrides}'
594 cross_defines='${cross_defines}'
595 cross_overrides='${cross_overrides}'
596 build_overrides='${build_overrides}'
597 cpp_install_dir='${cpp_install_dir}'
598 ])