2000-11-18 Ben Elliston <bje@redhat.com>
[official-gcc.git] / libstdc++ / configure.in
blob54483d2d451d84c6e6933958a01e3e0426b3c482
1 # This file is a shell script fragment that supplies the information
2 # necessary for a configure script to process the program in
3 # this directory.  For more information, look at ../configure.
5 # If the language specific compiler does not exist, but the "gcc" directory 
6 # does, we do not build anything. Note, $r is set by the top-level Makefile.
7 # Note that when we look for the compiler, we search both with and without
8 # extension to handle cross and canadian cross builds. 
9 # Note that if $norecursion is set we're being called from config.status,
10 # so don't check for the compiler; we might be doing a make clean.
11 compiler_name=cc1plus
12 rm -f skip-this-dir
13 if test -n "$r" && [ -z "$norecursion" ] ; then
14   if test -d "$r"/gcc; then
15     if test -f "$r"/gcc/$compiler_name \
16        || test -f "$r"/gcc/$compiler_name.exe; then
17       true
18     else
19       echo "rm -f multilib.out" > skip-this-dir
20     fi
21   fi
24 if [ "${srcdir}" = "." ] ; then
25   if [ "${with_target_subdir}" != "." ] ; then
26     topsrcdir=${with_multisrctop}../..
27   else
28     topsrcdir=${with_multisrctop}..
29   fi
30 else
31   topsrcdir=${srcdir}/..
34 if [ -d ${topsrcdir}/gcc ] ; then
35   configdirs="tests testsuite"
36 else
37   configdirs="tests"
39 srctrigger=sinst.cc
40 srcname="ANSI C++ library"
41 package_makefile_frag=Make.pack
42 package_makefile_rules_frag=Make.pack.r
44 # per-host:
46 # per-target:
48 echo "# Warning: this fragment is automatically generated" > temp.mt
49 frags=
51 # If they didn't specify --enable-shared, don't generate shared libs.
52 case "${enable_shared}" in
53   yes) shared=yes ;;
54   no) shared=no ;;
55   *libstdc++*) shared=yes ;;
56   *) shared=no ;;
57 esac
59 if [ "${shared}" = "yes" ]; then
60   case "${target}" in
61     alpha*-*-linux*)    frags=../../config/mh-elfalphapic ;;
62     arm*-*-*)           frags=../../config/mh-armpic ;;
63     hppa*-*-*)          frags=../../config/mh-papic ;;
64     i[3456]86-*-*)      frags=../../config/mh-x86pic ;;
65     powerpc*-*-aix*)    ;;
66     powerpc*-*-*)       frags=../../config/mh-ppcpic ;;
67     sparc*-*-*)         frags=../../config/mh-sparcpic ;;
68     *-*-*)              frags=../../config/mh-${target_cpu}pic ;;
69   esac
70   case "${target}" in
71     *-*-aix*)           frags="${frags} aix.ml" ;;
72     *-*-beos*)          frags="${frags} beos.ml" ;;
73     *-dec-osf*)         frags="${frags} dec-osf.ml";;
74     *-*-freebsd2*)      ;;
75     *-*-freebsd*)       frags="${frags} freebsd.ml" ;;
76     *-*-hpux*)          frags="${frags} hpux.ml" ;;
77     *-*-irix[56]*)      frags="${frags} irix5.ml" ;;
78     *-*-linux*aout*)    ;;
79     *-*-linux*)         frags="${frags} linux.ml" ;;
80     # This must come after *-*-linux*
81     *-*-gnu*)           frags="${frags} gnu.ml" ;;
82     *-*-openbsd*)               frags="${frags} openbsd.ml" ;;
83     *-*-sysv[45]*|*-*-udk*)     frags="${frags} elf.ml" ;;
84     *-*-solaris*)       frags="${frags} sol2shm.ml" ;;
85     *-*-sunos4*)        frags="${frags} sunos4.ml" ;;
86     i[3456]86-*-interix*)       frags="${frags} x86-interix.ml" ;;
87   esac
90 # Make sure the right flags are defined for multi-threading.
91 case "${target}" in
92   *-*-aix*)     
93         frags="${frags} aix.mt" ;;
94   *-*-linux*)
95         case "x${enable_threads}" in
96                 xyes|xposix)    frags="${frags} linux.mt" ;;
97         esac;;
98   *-*-openbsd*) 
99         case "x${enable_threads}" in
100                 xyes|xposix)    frags="${frags} openbsd.mt" ;;
101         esac;;
102   m68k-motorola-sysv)           frags="${frags} delta.mt" ;;
103   *-*-solaris*)
104     case "x${enable_threads}" in
105       xposix)                   frags="${frags} sol2pth.mt" ;;
106       xsolaris)                 frags="${frags} sol2solth.mt" ;;
107     esac ;;
108   *)
109     case "x${enable_threads}" in
110       xposix)                   frags="${frags} posix.mt" ;;
111     esac ;;
112 esac
114 for frag in ${frags}; do
115   case ${frag} in
116     ../* )
117       if [ ${srcdir} = . ]; then
118         [ -n "${with_target_subdir}" ] && frag=../${frag}
119         [ -n "${with_multisrctop}" ] && frag=${with_multisrctop}${frag}
120       fi
121       ;;
122   esac
123   frag=${srcdir}/config/$frag
124   if [ -f ${frag} ]; then
125     echo "Appending ${frag} to target-mkfrag"
126     echo "# Following fragment copied from ${frag}" >> temp.mt
127     cat ${frag} >> temp.mt
128   fi
129 done
131 target_makefile_frag=target-mkfrag
132 ${moveifchange} temp.mt target-mkfrag
134 LIBDIR=yes
135 TO_TOPDIR=../
136 ALL='libs'
137 XCXXINCLUDES="-I${srcdir} -I${srcdir}/stl -I${TO_TOPDIR}libio -I${srcdir}/${TO_TOPDIR}libio -I${srcdir}/${TO_TOPDIR}include -I${srcdir}/${TO_TOPDIR}gcc"
138 MOSTLYCLEAN='*.o pic stamp-picdir core so_locations $(MOSTLYCLEAN_JUNK)'
139 CLEAN='$(CLEAN_JUNK)'
140 EXTRA_DISTCLEAN='target-mkfrag'
142 (. ${srcdir}/${TO_TOPDIR}libio/config.shared) >${package_makefile_frag} 2>${package_makefile_rules_frag}
144 . ${topsrcdir}/config.if
145 echo "
146 LIBSTDCXX_INTERFACE=${libstdcxx_interface}
147 CXX_INTERFACE=${cxx_interface}
148 LIBC_INTERFACE=${libc_interface}
149 " >> ${package_makefile_frag}
151 # This duplicated the AC_PROG_LN_S macro in GNU autoconf.
152 rm -f conttestdata
153 if ln -s X conftestdata 2>/dev/null
154 then
155   rm -f conftestdata
156   LN_S="ln -s"
157 else
158   LN_S=ln
160 echo "
161 LN_S=$LN_S
162 " >> ${package_makefile_frag}
164 # post-target:
166 # If cross-compiling, we install in $(tooldir)/lib or in $(libsubdir)
167 # depending on --enable-version-specific-runtime-libs.
168 if [ -n "${with_cross_host}" ] ; then
169     rm -f Makefile.tem
170     sed \
171         -e 's|^\([      ]*INSTALLDIR[   ]*=[    ]*\)\$(libdir)|\1$(tooldir)/lib|' \
172         Makefile >Makefile.tem
173     mv -f Makefile.tem Makefile
176 # enable multilib-ing by default.
177 if [ -z "${enable_multilib}" ]; then
178     enable_multilib=yes
181 . ${topsrcdir}/config-ml.in
183 gxx_include_dir=
184 # Specify the g++ header file directory
185 # Check whether --with-gxx-include-dir or --without-gxx-include-dir was given.
186 if test "${with_gxx_include_dir+set}" = set; then
187   withval="$with_gxx_include_dir"
188   case "${withval}" in
189     yes)
190       echo "configure.in: error: bad value ${withval} given for g++ include directory" 1>&2
191       exit 1
192       ;;
193     no) ;;
194     *)  gxx_include_dir=$with_gxx_include_dir ;;
195   esac
198 if test x${gxx_include_dir} = x; then
199   if test x${enable_version_specific_runtime_libs} = xyes; then
200     gxx_include_dir='${libsubdir}/include/g++'
201   else
202     gxx_include_dir='${prefix}/include/g++'-${libstdcxx_interface}
203   fi
206 rm -f Makefile.tem
207 sed -e "s%^gxx_include_dir[     ]*=.*$%gxx_include_dir=${gxx_include_dir}%" \
208        Makefile >Makefile.tem
209 mv -f Makefile.tem Makefile