aix: TLS DWARF symbol decorations.
[official-gcc.git] / libphobos / configure.ac
blob248d0ebbc19f9f5bc47d7ef6e176ebf38eef0203
1 # Process this file with autoconf to produce a configure script.
2 # Copyright (C) 2006-2021 Free Software Foundation, Inc.
4 # GCC is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
9 # GCC is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with GCC; see the file COPYING3.  If not see
16 # <http://www.gnu.org/licenses/>.
18 # This requires that you have your environment set-up to use explicit
19 # versions of automake and autoconf.
21 #    export ACLOCAL=/usr/bin/aclocal-1.15
22 #    export AUTOMAKE=/usr/bin/automake-1.15
23 #    export AUTOM4TE=/usr/bin/autom4te2.69
24 #    export AUTOCONF=/usr/bin/autoconf2.69
26 #    autoreconf2.69
29 AC_INIT(package-unused, version-unused,, libphobos)
30 AC_CONFIG_SRCDIR(libdruntime/gcc/attribute.d)
31 AC_CONFIG_HEADERS(config.h)
33 AM_ENABLE_MULTILIB(, ..)
34 AC_CANONICAL_SYSTEM
35 AC_USE_SYSTEM_EXTENSIONS
37 target_alias=${target_alias-$target}
38 AC_SUBST(target_alias)
40 # 1.11.1: Require that version of automake.
41 # foreign: Don't require README, INSTALL, NEWS, etc.
42 # no-define: Don't define PACKAGE and VERSION.
43 # no-dependencies: Don't generate automatic dependencies.
44 #    (because it breaks when using bootstrap-lean, since some of the
45 #    headers are gone at "make install" time).
46 # subdir-objects: Build objects in sub-directories.
47 # -Wall: Issue all automake warnings.
48 # -Wno-portability: Don't warn about constructs supported by GNU make.
49 #    (because GCC requires GNU make anyhow).
50 #  -Wno-override: Overrides used in testsuite.
51 AM_INIT_AUTOMAKE([1.11.1 foreign no-dist no-define no-dependencies subdir-objects -Wall -Wno-portability -Wno-override])
53 m4_rename([_AC_ARG_VAR_PRECIOUS],[glibd_PRECIOUS])
54 m4_define([_AC_ARG_VAR_PRECIOUS],[])
55 AM_PROG_AS
56 AC_PROG_CC
57 AC_PROG_GDC
58 WITH_LOCAL_DRUNTIME([GDC_CHECK_COMPILE], [])
60 m4_rename_force([glibd_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
62 AC_SUBST(CFLAGS)
63 AM_MAINTAINER_MODE
64 AC_PROG_RANLIB
65 AC_PROG_INSTALL
66 AC_PROG_MAKE_SET
68 # Add CET specific flags if CET is enabled
69 GCC_CET_FLAGS(CET_FLAGS)
70 AC_SUBST(CET_FLAGS)
71 # To ensure that runtime code for CET is compiled in, add in D version flags.
72 AS_IF([test x$enable_cet = xyes], [
73   CET_DFLAGS="$CET_FLAGS -fversion=CET"
74   DCFG_ENABLE_CET=true
75 ], [
76   CET_DFLAGS=
77   DCFG_ENABLE_CET=false
79 AC_SUBST(CET_DFLAGS)
80 AC_SUBST(DCFG_ENABLE_CET)
82 # This should be inherited in the recursive make, but ensure it is defined.
83 test "$AR" || AR=ar
84 AC_SUBST(AR)
86 CC_FOR_BUILD=${CC_FOR_BUILD:-gcc}
87 AC_SUBST(CC_FOR_BUILD)
88 AC_SUBST(CFLAGS_FOR_BUILD)
90 # Enable libtool
91 LT_INIT(dlopen)
92 AM_PROG_LIBTOOL
93 WITH_LOCAL_DRUNTIME([LT_LANG([D])], [])
94 AC_SUBST(enable_shared)
95 AC_SUBST(enable_static)
97 # libtool variables for Phobos shared and position-independent compiles.
99 # Use phobos_lt_pic_flag to designate the automake variable
100 # used to encapsulate the default libtool approach to creating objects
101 # with position-independent code. Default: -prefer-pic.
103 # Use phobos_compiler_shared_flag to designate the compile-time flags for
104 # creating shared objects. Default: -fversion=Shared.
106 # Use phobos_compiler_pic_flag to designate the compile-time flags for
107 # creating position-independent objects. This varies with the target
108 # hardware and operating system, but is often: -fPIC.
110 # The distinction between pic and shared compilation flags is not present in
111 # libtool, and so we make it here.  How it is handled is that in shared
112 # compilations the `lt_prog_compiler_pic_D' variable is used to instead
113 # ensure that conditional compilation of shared runtime code is compiled in.
114 if test "$enable_shared" = yes; then
115   phobos_lt_pic_flag="-prefer-pic"
116   phobos_compiler_pic_flag="$lt_prog_compiler_pic_D"
117   phobos_compiler_shared_flag="-fversion=Shared"
118 else
119   phobos_lt_pic_flag=
120   phobos_compiler_pic_flag=
121   phobos_compiler_shared_flag=
123 AC_SUBST(phobos_lt_pic_flag)
124 AC_SUBST(phobos_compiler_pic_flag)
125 AC_SUBST(phobos_compiler_shared_flag)
127 # Override the libtool's pic_flag and pic_mode.
128 # Do this step after AM_PROG_LIBTOOL, but before AC_OUTPUT.
129 # NB: this impacts --with-pic and --without-pic.
130 lt_prog_compiler_pic_D="$phobos_compiler_pic_flag $phobos_compiler_shared_flag"
131 pic_mode='default'
133 # Determine what GCC version number to use in filesystem paths.
134 GCC_BASE_VER
136 # libphobos/libdruntime specific options and feature detection
137 DRUNTIME_CONFIGURE
138 DRUNTIME_MULTILIB
139 DRUNTIME_WERROR
140 DRUNTIME_CPU_SOURCES
141 DRUNTIME_OS_SOURCES
142 DRUNTIME_OS_THREAD_MODEL
143 DRUNTIME_OS_ARM_EABI_UNWINDER
144 DRUNTIME_OS_MINFO_BRACKETING
145 DRUNTIME_OS_DLPI_TLS_MODID
146 DRUNTIME_OS_LINK_SPEC
147 DRUNTIME_LIBRARIES_CLIB
149 WITH_LOCAL_DRUNTIME([
150   AC_LANG_PUSH([D])
151   AC_SEARCH_LIBS([malloc], [c])
152   AC_SEARCH_LIBS([pthread_create], [pthread])
153   AC_SEARCH_LIBS([cosf], [m])
154   AC_SEARCH_LIBS([clock_gettime], [rt])
155   DRUNTIME_ENABLE_ATOMIC_BUILTINS
156   AC_LANG_POP([D])
157 ], [-nophoboslib])
159 DRUNTIME_LIBRARIES_ATOMIC
160 DRUNTIME_LIBRARIES_BACKTRACE
161 DRUNTIME_LIBRARIES_DLOPEN
162 DRUNTIME_LIBRARIES_NET
163 DRUNTIME_LIBRARIES_UCONTEXT
164 DRUNTIME_LIBRARIES_ZLIB
165 DRUNTIME_INSTALL_DIRECTORIES
167 AC_MSG_CHECKING([for --enable-libphobos])
168 AC_ARG_ENABLE(libphobos,
169   [AS_HELP_STRING([--enable-libphobos], [Enable libphobos])])
170 AC_MSG_RESULT($enable_libphobos)
172 AC_MSG_CHECKING([for --with-libphobos-druntime-only])
173 AC_ARG_WITH(libphobos-druntime-only,
174   AS_HELP_STRING([--with-libphobos-druntime-only={yes,no,auto}],
175                  [build only the druntime library (default: auto)]),,
176             [with_libphobos_druntime_only=auto])
177 AC_MSG_RESULT($with_libphobos_druntime_only)
179 case "$with_libphobos_druntime_only" in
180   yes|no|auto) ;;
181   *) AC_MSG_ERROR([Invalid argument for --with-libphobos-druntime-only]) ;;
182 esac
184 # See if supported.
185 unset LIBPHOBOS_SUPPORTED
186 unset LIBDRUNTIME_ONLY
187 AC_MSG_CHECKING([for host support for libphobos])
188 . ${srcdir}/configure.tgt
189 case ${host} in
190   x86_64-*-solaris2.* | i?86-*-solaris2.*)
191     # libphobos doesn't compile with the Solaris/x86 assembler due to a
192     # relatively low linelength limit.
193     as_prog=`$CC -print-prog-name=as`
194     if test -n "$as_prog" && $as_prog -v /dev/null 2>&1 | grep GNU > /dev/null 2>&1; then
195       druntime_cv_use_gas=yes;
196     else
197       druntime_cv_use_gas=no;
198     fi
199     rm -f a.out
200     if test x$druntime_cv_use_gas = xno; then
201       LIBPHOBOS_SUPPORTED=no
202     fi
203     # 64-bit D execution fails with Solaris ld without -z relax=transtls support.
204     if test "$druntime_ld_gld" = "no" && test "$druntime_ld_relax_transtls" = "no"; then
205       LIBPHOBOS_SUPPORTED=no
206     fi
207     ;;
208 esac
209 AC_MSG_RESULT($LIBPHOBOS_SUPPORTED)
211 # Decide if it's usable.
212 case $LIBPHOBOS_SUPPORTED:$enable_libphobos in
213 *:no)  use_libphobos=no  ;;
214 *:yes) use_libphobos=yes ;;
215 yes:*) use_libphobos=yes ;;
216 *:*)   use_libphobos=no  ;;
217 esac
218 AM_CONDITIONAL(ENABLE_LIBPHOBOS, test x$use_libphobos = xyes)
220 # Decide if only libdruntime should be built.
221 case $LIBDRUNTIME_ONLY:$with_libphobos_druntime_only in
222 *:no)  only_libdruntime=no  ;;
223 *:yes) only_libdruntime=yes ;;
224 yes:*) only_libdruntime=yes ;;
225 *:*)   only_libdruntime=no  ;;
226 esac
227 AM_CONDITIONAL(ENABLE_LIBDRUNTIME_ONLY, test x$only_libdruntime = xyes)
229 # Enable expensive internal checks
230 AC_ARG_ENABLE(libphobos-checking,
231 [AS_HELP_STRING([[--enable-libphobos-checking[=LIST]]],
232                 [enable expensive run-time checks.  With LIST,
233                  enable only specific categories of checks.
234                  Categories are: yes,no,all,none,release.
235                  Flags are: assert or other strings])],
236 [ac_checking_flags="${enableval}"],[ac_checking_flags=release])
237 IFS="${IFS=     }"; ac_save_IFS="$IFS"; IFS="$IFS,"
238 for check in release $ac_checking_flags
240         case $check in
241         # These set all the flags to specific states
242         yes|all) RELEASE_FLAG="-fno-release" ; ASSERT_FLAG= ;;
243         no|none|release) RELEASE_FLAG="-frelease" ; ASSERT_FLAG= ;;
244         # These enable particular checks
245         assert) ASSERT_FLAG="-fassert" ;;
246         # Accept
247         *) ;;
248         esac
249 done
250 IFS="$ac_save_IFS"
251 CHECKING_DFLAGS="$RELEASE_FLAG $ASSERT_FLAG"
252 AC_SUBST(CHECKING_DFLAGS)
254 # Add drtbegin.o/drtend.o to startfile/endfile specs in libgphobos.spec
255 if test "$DCFG_MINFO_BRACKETING" = "false"; then
256     DRTSTUFF_SPEC=$srcdir/src/drtstuff.spec
257 else
258     DRTSTUFF_SPEC=/dev/null
260 AC_SUBST_FILE(DRTSTUFF_SPEC)
262 # Add dependencies for libgphobos.spec file
263 SPEC_PHOBOS_DEPS="$LIBS"
264 AC_SUBST(SPEC_PHOBOS_DEPS)
266 # Libdruntime / phobos soname version
267 libtool_VERSION=2:0:0
268 AC_SUBST(libtool_VERSION)
270 # Set default flags (after DRUNTIME_WERROR!)
271 if test -z "$GDCFLAGS"; then
272     GDCFLAGS="-g -O2"
274 AC_SUBST(GDCFLAGS)
276 WARN_DFLAGS="-Wall $WERROR_FLAG"
277 AC_SUBST(WARN_DFLAGS)
279 # Sanity check for the cross-compilation case:
280 AC_CHECK_HEADER(stdio.h,:,
281   [AC_MSG_ERROR([cannot find stdio.h.])])
283 AC_CONFIG_FILES(Makefile)
285 AC_CONFIG_FILES(libdruntime/gcc/config.d libdruntime/gcc/libbacktrace.d)
286 AC_CONFIG_FILES(src/libgphobos.spec)
287 AC_CONFIG_FILES([testsuite/testsuite_flags],[chmod +x testsuite/testsuite_flags])
289 # Multilibs need MULTISUBDIR defined correctly in certain makefiles so
290 # that multilib installs will end up installed in the correct place.
291 # The testsuite needs it for multilib-aware ABI baseline files.
292 # To work around this not being passed down from config-ml.in ->
293 # srcdir/Makefile.am -> srcdir/{src,libdruntime,...}/Makefile.am, manually
294 # append it here.  Only modify Makefiles that have just been created.
296 # Also, get rid of this simulated-VPATH thing that automake does.
297 AC_CONFIG_FILES(AC_FOREACH([DIR], [libdruntime src testsuite], [DIR/Makefile ]),
298   [cat > vpsed$$ << \_EOF
299 s!`test -f '$<' || echo '$(srcdir)/'`!!
300 _EOF
301    sed -f vpsed$$ $ac_file > tmp$$
302    mv tmp$$ $ac_file
303    rm vpsed$$
304    echo 'MULTISUBDIR =' >> $ac_file
305    ml_norecursion=yes
306    . ${multi_basedir}/config-ml.in
307    AS_UNSET([ml_norecursion])
310 AC_OUTPUT