* Contribute CGEN simulator build support code.
[binutils-gdb.git] / gdb / testsuite / configure.in
blobc126ba7356d87c3ad6453df46c0b3d9221f1b55f
1 dnl Process this file file with autoconf to produce a configure script.
2 dnl This file is a shell script fragment that supplies the information
3 dnl necessary to tailor a template configure script into the configure
4 dnl script appropriate for this directory.  For more information, check
5 dnl any existing configure script.
7 AC_PREREQ(2.12.1)
8 AC_INIT(gdb.base)
10 CC=${CC-cc}
11 AC_SUBST(CC)
12 AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../..)
13 AC_CANONICAL_SYSTEM
15 # Directories to use in all configurations.
16 configdirs="gdb.asm \
17             gdb.base \
18             gdb.c++ \
19             gdb.java \
20             gdb.disasm \
21             gdb.chill \
22             gdb.mi \
23             gdb.threads \
24             gdb.trace"
27 # Directories to use for a configuration which uses stabs.
28 stabsdirs="gdb.stabs"
30         # this section is for targets that use stabs
31 # add stabs tests for appropriate targets
32 case "${target}" in
33         powerpc-*-aix*) configdirs="${configdirs} ${stabsdirs}" ;;
34         rs6000-*-aix*)  configdirs="${configdirs} ${stabsdirs}" ;;
35         *-*-bsd*)       configdirs="${configdirs} ${stabsdirs}" ;;
36         *-*-go32*)      configdirs="${configdirs} ${stabsdirs}" ;;
37         *-*-linux*)     configdirs="${configdirs} ${stabsdirs}" ;;
38         *-*-lynxos*)    configdirs="${configdirs} ${stabsdirs}" ;;
39         *-sun-*)        configdirs="${configdirs} ${stabsdirs}" ;;
40         hppa*-*-*)      configdirs="${configdirs} ${stabsdirs}" ;;
41         *-*-elf*)       configdirs="${configdirs} ${stabsdirs}" ;;
42         *)              if test "x${with_stabs}" = x"yes" ; then
43                           configdirs="${configdirs} ${stabsdirs}"
44                         fi ;;
45 esac
47 # Directory with HP specific tests. They will run only with HP's compilers. 
48 # These tests will not work on other platforms and compilers.
50 hpdir="gdb.hp"
52 case "${target}" in
53  hppa*-*-hpux*) configdirs="${configdirs} ${hpdir}" ;;
54 esac
57 # Begin stuff to support --enable-shared
58 AC_ARG_ENABLE(shared,
59 [  --enable-shared         use shared libraries],
60 [case "${enableval}" in
61   yes) shared=true ;;
62   no)  shared=false ;;
63   *) shared=true ;;
64 esac])dnl
65 RPATH_ENVVAR=LD_LIBRARY_PATH
66 # If we have shared libraries, try to set RPATH_ENVVAR reasonably.
67 if test "${shared}" = "true"; then
68   case "${host}" in
69   *-*-hpux*)
70     RPATH_ENVVAR=SHLIB_PATH
71     ;;
72   esac
74 AC_SUBST(RPATH_ENVVAR)
75 # End stuff to support --enable-shared
76 # Start stuff to support --enable-gdbtk
77 AC_ARG_ENABLE(gdbtk,
78 [  --enable-gdbtk ],
79 [case "${enableval}" in
80     yes)
81         case "$host" in
82         *go32*)
83             enable_gdbtk=no ;;
84         *windows*)
85             enable_gdbtk=no ;;
86         *)
87             enable_gdbtk=yes ;;
88         esac ;;
89     no)
90         enable_gdbtk=no  ;;
91     *)
92         AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
93 esac],
95 # Default is on for everything but go32 and windows
96 case "$host" in
97     *go32* | *windows*)
98         ;;
99     *)
100         enable_gdbtk=yes ;;
101     esac
104 if test "${enable_gdbtk}" = "yes"; then
105     configdirs="${configdirs} gdb.gdbtk"
107 # End stuff to support --enable-shared
109 # configure the subdirectories too
110 AC_CONFIG_SUBDIRS($configdirs)
112 dnl AC_SUBST(gdb_target_cpu)
113 AC_OUTPUT(Makefile)