blob: 206e189bb9407310de7f742f31b68c842a0f9798 [file] [log] [blame]
Ian Lance Taylor7a938932010-12-03 04:34:57 +00001# configure.ac -- Go library configure script.
2
3# Copyright 2009 The Go Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style
5# license that can be found in the LICENSE file.
6
7# Process this file with autoreconf to produce configure.
8
9AC_PREREQ(2.64)
10AC_INIT(package-unused, version-unused,, libgo)
11AC_CONFIG_SRCDIR(Makefile.am)
12AC_CONFIG_HEADER(config.h)
13
14libtool_VERSION=1:0:0
15AC_SUBST(libtool_VERSION)
16
17AM_ENABLE_MULTILIB(, ..)
18
19AC_CANONICAL_SYSTEM
20target_alias=${target_alias-$host_alias}
21
22AM_INIT_AUTOMAKE([1.9.3 no-define foreign -Wall])
23AH_TEMPLATE(PACKAGE, [Name of package])
24AH_TEMPLATE(VERSION, [Version number of package])
25
26m4_rename([_AC_ARG_VAR_PRECIOUS],[glibgo_PRECIOUS])
27m4_define([_AC_ARG_VAR_PRECIOUS],[])
28AC_PROG_CC
29AC_PROG_GO
30m4_rename_force([glibgo_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
31
32AC_SUBST(CFLAGS)
33
34AM_MAINTAINER_MODE
35
36AC_PROG_LD
37AC_PROG_RANLIB
38AC_CHECK_TOOL(OBJCOPY, objcopy, missing-objcopy)
39
40AC_LIBTOOL_DLOPEN
41AM_PROG_LIBTOOL
42AC_SUBST(enable_shared)
43AC_SUBST(enable_static)
44
Ian Lance Taylord983a802011-07-11 20:27:50 +000045CC_FOR_BUILD=${CC_FOR_BUILD:-gcc}
46AC_SUBST(CC_FOR_BUILD)
47
Ian Lance Taylorde27caa2011-10-23 19:04:37 +000048AC_PROG_AWK
49
Ian Lance Taylor7a938932010-12-03 04:34:57 +000050WARN_FLAGS='-Wall -Wextra -Wwrite-strings -Wcast-qual'
51AC_SUBST(WARN_FLAGS)
52
53dnl FIXME: This should be controlled by --enable-maintainer-mode.
54WERROR="-Werror"
55AC_SUBST(WERROR)
56
57glibgo_toolexecdir=no
58glibgo_toolexeclibdir=no
59glibgo_prefixdir=$prefix
60
61AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
62AC_ARG_ENABLE([version-specific-runtime-libs],
63 AC_HELP_STRING([--enable-version-specific-runtime-libs],
64 [Specify that runtime libraries should be installed in a compiler-specific directory]),
65 [case "$enableval" in
66 yes) version_specific_libs=yes ;;
67 no) version_specific_libs=no ;;
68 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);;
69 esac],
70 [version_specific_libs=no])
71AC_MSG_RESULT($version_specific_libs)
72
73# Version-specific runtime libs processing.
74if test $version_specific_libs = yes; then
75 glibgo_toolexecdir='${libdir}/gcc/${host_alias}'
76 glibgo_toolexeclibdir='${toolexecdir}/${gcc_version}$(MULTISUBDIR)'
77fi
78
79# Calculate glibgo_toolexecdir, glibgo_toolexeclibdir
80# Install a library built with a cross compiler in tooldir, not libdir.
81if test x"$glibgo_toolexecdir" = x"no"; then
82 if test -n "$with_cross_host" &&
83 test x"$with_cross_host" != x"no"; then
84 glibgo_toolexecdir='${exec_prefix}/${host_alias}'
85 glibgo_toolexeclibdir='${toolexecdir}/lib'
86 else
87 glibgo_toolexecdir='${libdir}/gcc/${host_alias}'
88 glibgo_toolexeclibdir='${libdir}'
89 fi
90 multi_os_directory=`$CC -print-multi-os-directory`
91 case $multi_os_directory in
92 .) ;; # Avoid trailing /.
93 *) glibgo_toolexeclibdir=$glibgo_toolexeclibdir/$multi_os_directory ;;
94 esac
95fi
96
97AC_SUBST(glibgo_prefixdir)
98AC_SUBST(glibgo_toolexecdir)
99AC_SUBST(glibgo_toolexeclibdir)
100
101# See if the user wants to configure without libffi. Some
102# architectures don't support it. FIXME: We should set a default
103# based on the host.
104AC_ARG_WITH(libffi,
105 AS_HELP_STRING([--without-libffi],
106 [don't use libffi]),
107 [:],
108 [with_libffi=${with_libffi_default-yes}])
109
110LIBFFI=
111LIBFFIINCS=
112if test "$with_libffi" != no; then
113 AC_DEFINE(USE_LIBFFI, 1, [Define if we're to use libffi.])
114 LIBFFI=../libffi/libffi_convenience.la
115 LIBFFIINCS='-I$(top_srcdir)/../libffi/include -I../libffi/include'
116fi
117AC_SUBST(LIBFFI)
118AC_SUBST(LIBFFIINCS)
119
120is_darwin=no
121is_freebsd=no
Ian Lance Taylor654d2ec2011-03-31 23:55:21 +0000122is_irix=no
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000123is_linux=no
124is_rtems=no
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000125is_solaris=no
Ian Lance Taylorc3b5b972011-01-12 02:03:46 +0000126GOOS=unknown
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000127case ${host} in
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000128 *-*-darwin*) is_darwin=yes; GOOS=darwin ;;
129 *-*-freebsd*) is_freebsd=yes; GOOS=freebsd ;;
Ian Lance Taylor654d2ec2011-03-31 23:55:21 +0000130 *-*-irix6*) is_irix=yes; GOOS=irix ;;
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000131 *-*-linux*) is_linux=yes; GOOS=linux ;;
132 *-*-rtems*) is_rtems=yes; GOOS=rtems ;;
133 *-*-solaris2*) is_solaris=yes; GOOS=solaris ;;
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000134esac
135AM_CONDITIONAL(LIBGO_IS_DARWIN, test $is_darwin = yes)
136AM_CONDITIONAL(LIBGO_IS_FREEBSD, test $is_freebsd = yes)
Ian Lance Taylor654d2ec2011-03-31 23:55:21 +0000137AM_CONDITIONAL(LIBGO_IS_IRIX, test $is_irix = yes)
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000138AM_CONDITIONAL(LIBGO_IS_LINUX, test $is_linux = yes)
139AM_CONDITIONAL(LIBGO_IS_RTEMS, test $is_rtems = yes)
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000140AM_CONDITIONAL(LIBGO_IS_SOLARIS, test $is_solaris = yes)
Ian Lance Taylorc3b5b972011-01-12 02:03:46 +0000141AC_SUBST(GOOS)
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000142
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000143dnl N.B. Keep in sync with gcc/testsuite/go.test/go-test.exp (go-set-goarch).
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000144is_386=no
Ian Lance Taylore59b9172011-04-01 23:02:16 +0000145is_alpha=no
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000146is_arm=no
Ian Lance Taylorca11cc92011-01-24 23:42:22 +0000147is_m68k=no
Ian Lance Taylor9f3b1e62011-04-25 19:36:12 +0000148mips_abi=unknown
Ian Lance Taylorca11cc92011-01-24 23:42:22 +0000149is_ppc=no
150is_ppc64=no
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000151is_sparc=no
Ian Lance Taylor545d1aa2011-01-13 06:18:45 +0000152is_sparc64=no
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000153is_x86_64=no
Ian Lance Taylorc3b5b972011-01-12 02:03:46 +0000154GOARCH=unknown
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000155case ${host} in
Ian Lance Taylore59b9172011-04-01 23:02:16 +0000156 alpha*-*-*)
157 is_alpha=yes
158 GOARCH=alpha
159 ;;
Ian Lance Taylorca11cc92011-01-24 23:42:22 +0000160 arm*-*-* | strongarm*-*-* | ep9312*-*-* | xscale-*-*)
161 is_arm=yes
162 GOARCH=arm
163 ;;
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000164changequote(,)dnl
Ian Lance Taylorc3b5b972011-01-12 02:03:46 +0000165 i[34567]86-*-* | x86_64-*-*)
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000166changequote([,])dnl
Ian Lance Taylor4a299bf2011-02-10 23:43:42 +0000167 AC_COMPILE_IFELSE([
Ian Lance Taylorc3b5b972011-01-12 02:03:46 +0000168#ifdef __x86_64__
169#error 64-bit
170#endif],
171[is_386=yes], [is_x86_64=yes])
172 if test "$is_386" = "yes"; then
173 GOARCH=386
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000174 else
Ian Lance Taylorc3b5b972011-01-12 02:03:46 +0000175 GOARCH=amd64
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000176 fi
177 ;;
Ian Lance Taylorca11cc92011-01-24 23:42:22 +0000178 m68k*-*-*)
179 is_m68k=yes
180 GOARCH=m68k
181 ;;
182 mips*-*-*)
Ian Lance Taylor4a299bf2011-02-10 23:43:42 +0000183 AC_COMPILE_IFELSE([
Ian Lance Taylor85a09212011-04-01 00:17:10 +0000184#if _MIPS_SIM != _ABIO32
185#error not o32
Ian Lance Taylorca11cc92011-01-24 23:42:22 +0000186#endif],
Ian Lance Taylor85a09212011-04-01 00:17:10 +0000187[mips_abi="o32"],
188 [AC_COMPILE_IFELSE([
189#if _MIPS_SIM != _ABIN32
190#error not n32
191#endif],
192[mips_abi="n32"],
193 [AC_COMPILE_IFELSE([
194#if _MIPS_SIM != _ABI64
195#error not n64
196#endif],
197[mips_abi="n64"],
198 [AC_COMPILE_IFELSE([
199#if _MIPS_SIM != _ABIO64
200#error not o64
201#endif],
202[mips_abi="o64"],
203 [AC_MSG_ERROR([unknown MIPS ABI])
204[mips_abi="n32"]])])])])
205 case "$mips_abi" in
206 "o32") GOARCH=mipso32 ;;
207 "n32") GOARCH=mipsn32 ;;
208 "n64") GOARCH=mipsn64 ;;
209 "o64") GOARCH=mipso64 ;;
210 esac
Ian Lance Taylorca11cc92011-01-24 23:42:22 +0000211 ;;
212 rs6000*-*-* | powerpc*-*-*)
Ian Lance Taylor4a299bf2011-02-10 23:43:42 +0000213 AC_COMPILE_IFELSE([
Ian Lance Taylorca11cc92011-01-24 23:42:22 +0000214#ifdef _ARCH_PPC64
215#error 64-bit
216#endif],
217[is_ppc=yes], [is_ppc64=yes])
218 if test "$is_ppc" = "yes"; then
219 GOARCH=ppc
220 else
221 GOARCH=ppc64
222 fi
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000223 ;;
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000224 sparc*-*-*)
Ian Lance Taylor4a299bf2011-02-10 23:43:42 +0000225 AC_COMPILE_IFELSE([
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000226#if defined(__sparcv9) || defined(__arch64__)
227#error 64-bit
228#endif],
Ian Lance Taylor545d1aa2011-01-13 06:18:45 +0000229[is_sparc=yes], [is_sparc64=yes])
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000230 if test "$is_sparc" = "yes"; then
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000231 GOARCH=sparc
232 else
Ian Lance Taylor545d1aa2011-01-13 06:18:45 +0000233 GOARCH=sparc64
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000234 fi
235 ;;
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000236esac
237AM_CONDITIONAL(LIBGO_IS_386, test $is_386 = yes)
Ian Lance Taylore59b9172011-04-01 23:02:16 +0000238AM_CONDITIONAL(LIBGO_IS_ALPHA, test $is_alpha = yes)
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000239AM_CONDITIONAL(LIBGO_IS_ARM, test $is_arm = yes)
Ian Lance Taylorca11cc92011-01-24 23:42:22 +0000240AM_CONDITIONAL(LIBGO_IS_M68K, test $is_m68k = yes)
Ian Lance Taylor9f3b1e62011-04-25 19:36:12 +0000241AM_CONDITIONAL(LIBGO_IS_MIPS, test $mips_abi != unknown)
Ian Lance Taylor85a09212011-04-01 00:17:10 +0000242AM_CONDITIONAL(LIBGO_IS_MIPSO32, test $mips_abi = o32)
243AM_CONDITIONAL(LIBGO_IS_MIPSN32, test $mips_abi = n32)
244AM_CONDITIONAL(LIBGO_IS_MIPSN64, test $mips_abi = n64)
245AM_CONDITIONAL(LIBGO_IS_MIPSO64, test $mips_abi = o64)
Ian Lance Taylorca11cc92011-01-24 23:42:22 +0000246AM_CONDITIONAL(LIBGO_IS_PPC, test $is_ppc = yes)
247AM_CONDITIONAL(LIBGO_IS_PPC64, test $is_ppc64 = yes)
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000248AM_CONDITIONAL(LIBGO_IS_SPARC, test $is_sparc = yes)
Ian Lance Taylor545d1aa2011-01-13 06:18:45 +0000249AM_CONDITIONAL(LIBGO_IS_SPARC64, test $is_sparc64 = yes)
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000250AM_CONDITIONAL(LIBGO_IS_X86_64, test $is_x86_64 = yes)
Ian Lance Taylorc3b5b972011-01-12 02:03:46 +0000251AC_SUBST(GOARCH)
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000252
Ian Lance Taylorca11cc92011-01-24 23:42:22 +0000253dnl Some files are only present when needed for specific architectures.
Ian Lance Taylorde27caa2011-10-23 19:04:37 +0000254GO_LIBCALL_OS_FILE=
255GO_LIBCALL_OS_ARCH_FILE=
256GO_SYSCALL_OS_FILE=
257GO_SYSCALL_OS_ARCH_FILE=
258if test -f ${srcdir}/go/syscall/libcall_${GOOS}.go; then
259 GO_LIBCALL_OS_FILE=go/syscall/libcall_${GOOS}.go
Ian Lance Taylorca11cc92011-01-24 23:42:22 +0000260fi
Ian Lance Taylorde27caa2011-10-23 19:04:37 +0000261if test -f ${srcdir}/go/syscall/libcall_${GOOS}_${GOARCH}.go; then
262 GO_LIBCALL_OS_ARCH_FILE=go/syscall/libcall_${GOOS}_${GOARCH}.go
263fi
264if test -f ${srcdir}/go/syscall/syscall_${GOOS}.go; then
265 GO_SYSCALL_OS_FILE=go/syscall/syscall_${GOOS}.go
266fi
267if test -f ${srcdir}/go/syscall/syscall_${GOOS}_${GOARCH}.go; then
268 GO_SYSCALL_OS_ARCH_FILE=go/syscall/syscall_${GOOS}_${GOARCH}.go
269fi
270AC_SUBST(GO_LIBCALL_OS_FILE)
271AC_SUBST(GO_LIBCALL_OS_ARCH_FILE)
272AC_SUBST(GO_SYSCALL_OS_FILE)
273AC_SUBST(GO_SYSCALL_OS_ARCH_FILE)
Ian Lance Taylorca11cc92011-01-24 23:42:22 +0000274
Ian Lance Taylor90630d12011-04-01 05:11:23 +0000275dnl Some targets need special flags to build sysinfo.go.
276case "$target" in
Ian Lance Taylor9f3b1e62011-04-25 19:36:12 +0000277 mips-sgi-irix6.5*)
278 # IRIX 6 needs _XOPEN_SOURCE=500 for the XPG5 version of struct
279 # msghdr in <sys/socket.h>.
280 OSCFLAGS='-D_XOPEN_SOURCE=500'
281 ;;
Ian Lance Taylor90630d12011-04-01 05:11:23 +0000282 *-*-solaris2.[[89]])
283 # Solaris 8/9 need this so struct msghdr gets the msg_control
284 # etc. fields in <sys/socket.h> (_XPG4_2).
285 OSCFLAGS='-D_XOPEN_SOURCE=500 -D_XOPEN_SOURCE_EXTENDED -D__EXTENSIONS__'
286 ;;
287 *-*-solaris2.1[[01]])
288 # Solaris 10+ needs this so struct msghdr gets the msg_control
289 # etc. fields in <sys/socket.h> (_XPG4_2). _XOPEN_SOURCE=500 as
290 # above doesn't work with C99.
291 OSCFLAGS='-D_XOPEN_SOURCE=600 -D__EXTENSIONS__'
292 ;;
293esac
294AC_SUBST(OSCFLAGS)
295
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000296dnl Use -fsplit-stack when compiling C code if available.
297AC_CACHE_CHECK([whether -fsplit-stack is supported],
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000298[libgo_cv_c_split_stack_supported],
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000299[CFLAGS_hold=$CFLAGS
300CFLAGS="$CFLAGS -fsplit-stack"
301AC_COMPILE_IFELSE([[int i;]],
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000302[libgo_cv_c_split_stack_supported=yes],
303[libgo_cv_c_split_stack_supported=no])
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000304CFLAGS=$CFLAGS_hold])
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000305if test "$libgo_cv_c_split_stack_supported" = yes; then
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000306 SPLIT_STACK=-fsplit-stack
307 AC_DEFINE(USING_SPLIT_STACK, 1,
308 [Define if the compiler supports -fsplit-stack])
309else
310 SPLIT_STACK=
311fi
312AC_SUBST(SPLIT_STACK)
313AM_CONDITIONAL(USING_SPLIT_STACK,
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000314 test "$libgo_cv_c_split_stack_supported" = yes)
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000315
316dnl Check whether the linker does stack munging when calling from
317dnl split-stack into non-split-stack code. We check this by looking
318dnl at the --help output. FIXME: This is only half right: it's
319dnl possible for the linker to support this for some targets but not
320dnl others.
321AC_CACHE_CHECK([whether linker supports split stack],
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000322[libgo_cv_c_linker_supports_split_stack],
323libgo_cv_c_linker_supports_split_stack=no
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000324if $LD --help 2>/dev/null | grep split-stack-adjust-size >/dev/null 2>&1; then
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000325 libgo_cv_c_linker_supports_split_stack=yes
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000326fi)
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000327if test "$libgo_cv_c_linker_supports_split_stack" = yes; then
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000328 AC_DEFINE(LINKER_SUPPORTS_SPLIT_STACK, 1,
329 [Define if the linker support split stack adjustments])
330fi
331
Ian Lance Taylor505b4392010-12-08 02:08:59 +0000332dnl Test for the -lm library.
333MATH_LIBS=
334AC_CHECK_LIB([m], [sqrt], MATH_LIBS=-lm)
335AC_SUBST(MATH_LIBS)
336
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000337dnl Test for -lsocket and -lnsl. Copied from libjava/configure.ac.
338AC_CACHE_CHECK([for socket libraries], libgo_cv_lib_sockets,
339 [libgo_cv_lib_sockets=
340 libgo_check_both=no
341 AC_CHECK_FUNC(connect, libgo_check_socket=no, libgo_check_socket=yes)
342 if test "$libgo_check_socket" = "yes"; then
343 unset ac_cv_func_connect
344 AC_CHECK_LIB(socket, main, libgo_cv_lib_sockets="-lsocket",
345 libgo_check_both=yes)
346 fi
347 if test "$libgo_check_both" = "yes"; then
348 libgo_old_libs=$LIBS
349 LIBS="$LIBS -lsocket -lnsl"
350 unset ac_cv_func_accept
351 AC_CHECK_FUNC(accept,
352 [libgo_check_nsl=no
353 libgo_cv_lib_sockets="-lsocket -lnsl"])
354 unset ac_cv_func_accept
355 LIBS=$libgo_old_libs
356 fi
357 unset ac_cv_func_gethostbyname
358 libgo_old_libs="$LIBS"
359 AC_CHECK_FUNC(gethostbyname, ,
360 [AC_CHECK_LIB(nsl, main,
361 [libgo_cv_lib_sockets="$libgo_cv_lib_sockets -lnsl"])])
362 unset ac_cv_func_gethostbyname
363 LIBS=$libgo_old_libs
364])
365NET_LIBS="$libgo_cv_lib_sockets"
366AC_SUBST(NET_LIBS)
367
Ian Lance Taylor6c94a9f2010-12-03 21:27:06 +0000368dnl Test whether the compiler supports the -pthread option.
369AC_CACHE_CHECK([whether -pthread is supported],
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000370[libgo_cv_lib_pthread],
Ian Lance Taylor6c94a9f2010-12-03 21:27:06 +0000371[CFLAGS_hold=$CFLAGS
372CFLAGS="$CFLAGS -pthread"
373AC_COMPILE_IFELSE([[int i;]],
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000374[libgo_cv_lib_pthread=yes],
375[libgo_cv_lib_pthread=no])
Ian Lance Taylor6c94a9f2010-12-03 21:27:06 +0000376CFLAGS=$CFLAGS_hold])
377PTHREAD_CFLAGS=
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000378if test "$libgo_cv_lib_pthread" = yes; then
Ian Lance Taylor6c94a9f2010-12-03 21:27:06 +0000379 PTHREAD_CFLAGS=-pthread
380fi
381AC_SUBST(PTHREAD_CFLAGS)
382
383dnl Test for the -lpthread library.
384PTHREAD_LIBS=
385AC_CHECK_LIB([pthread], [pthread_create], PTHREAD_LIBS=-lpthread)
386AC_SUBST(PTHREAD_LIBS)
387
Ian Lance Taylored4ebab2011-01-14 19:18:38 +0000388dnl Test if -lrt is required for sched_yield.
389AC_SEARCH_LIBS([sched_yield], [rt])
390
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000391AC_C_BIGENDIAN
392
393GCC_CHECK_UNWIND_GETIPINFO
394
Ian Lance Taylor0c521d12011-02-03 01:53:36 +0000395AC_ARG_ENABLE(sjlj-exceptions,
396 AC_HELP_STRING([--enable-sjlj-exceptions],
397 [force use of builtin_setjmp for exceptions]),
398 [case "$enableval" in
399 yes|no|auto) ;;
400 *) AC_MSG_ERROR([unknown argument to --enable-sjlj-exceptions]) ;;
401 esac],
402 [enable_sjlj_exceptions=auto])
403
404AC_CACHE_CHECK([whether to use setjmp/longjmp exceptions],
405[libgo_cv_lib_sjlj_exceptions],
406[AC_LANG_CONFTEST(
407 [AC_LANG_SOURCE([
408void bar ();
409void clean (int *);
410void foo ()
411{
412 int i __attribute__ ((cleanup (clean)));
413 bar();
414}
415])])
416CFLAGS_hold=$CFLAGS
417CFLAGS="--save-temps -fexceptions"
418libgo_cv_lib_sjlj_exceptions=unknown
419AS_IF([ac_fn_c_try_compile],
420 [if grep _Unwind_SjLj_Resume conftest.s >/dev/null 2>&1; then
421 libgo_cv_lib_sjlj_exceptions=yes
422 elif grep _Unwind_Resume conftest.s >/dev/null 2>&1; then
423 libgo_cv_lib_sjlj_exceptions=no
424 fi])
425CFLAGS=$CFLAGS_hold
426rm -f conftest*
427])
428
429if test "$enable_sjlj_exceptions" = "auto"; then
430 enable_sjlj_exceptions=$libgo_cv_lib_sjlj_exceptions
431fi
432
433case $enable_sjlj_exceptions in
434yes)
435 AC_DEFINE(LIBGO_SJLJ_EXCEPTIONS, 1,
436 [Define if the C++ compiler is configured for setjmp/longjmp exceptions.])
437 ;;
438no)
439 ;;
440*)
441 AC_MSG_ERROR([unable to detect exception model])
442 ;;
443esac
444
Ian Lance Tayloradb04012011-09-16 15:47:21 +0000445AC_CHECK_HEADERS(sys/mman.h syscall.h sys/epoll.h sys/ptrace.h sys/syscall.h sys/user.h sys/utsname.h sys/select.h sys/socket.h net/if.h)
446
447AC_CHECK_HEADERS([linux/filter.h linux/netlink.h linux/rtnetlink.h], [], [],
448[#ifdef HAVE_SYS_SOCKET_H
449#include <sys/socket.h>
450#endif
451])
452
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000453AM_CONDITIONAL(HAVE_SYS_MMAN_H, test "$ac_cv_header_sys_mman_h" = yes)
Ian Lance Taylor8955c802011-03-30 22:34:55 +0000454
Ian Lance Taylor5bb92e52011-05-24 22:21:34 +0000455AC_CHECK_FUNCS(srandom random strerror_r strsignal wait4 mincore setenv)
Ian Lance Taylor8955c802011-03-30 22:34:55 +0000456AM_CONDITIONAL(HAVE_STRERROR_R, test "$ac_cv_func_strerror_r" = yes)
Ian Lance Taylor0b3189e2011-03-30 23:05:04 +0000457AM_CONDITIONAL(HAVE_WAIT4, test "$ac_cv_func_wait4" = yes)
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000458
Ian Lance Taylora7c48c82011-02-01 21:23:07 +0000459AC_CACHE_CHECK([for __sync_bool_compare_and_swap_4],
460[libgo_cv_func___sync_bool_compare_and_swap_4],
461[AC_LINK_IFELSE([
462typedef unsigned int uint32 __attribute__ ((mode (SI)));
463uint32 i;
464int main() { return __sync_bool_compare_and_swap (&i, 0, 1); }
465],
466[libgo_cv_func___sync_bool_compare_and_swap_4=yes],
467[libgo_cv_func___sync_bool_compare_and_swap_4=no])])
468if test "$libgo_cv_func___sync_bool_compare_and_swap_4" = "yes"; then
469 AC_DEFINE(HAVE_SYNC_BOOL_COMPARE_AND_SWAP_4, 1,
470 [Define to 1 if the compiler provides the __sync_bool_compare_and_swap function for uint32])
471fi
472
Ian Lance Taylor084996f2011-02-04 00:49:47 +0000473AC_CACHE_CHECK([for __sync_fetch_and_add_4],
474[libgo_cv_func___sync_fetch_and_add_4],
475[AC_LINK_IFELSE([
476typedef unsigned int uint32 __attribute__ ((mode (SI)));
477uint32 i;
478int main() { return __sync_fetch_and_add (&i, 1); }
479],
480[libgo_cv_func___sync_fetch_and_add_4=yes],
481[libgo_cv_func___sync_fetch_and_add_4=no])])
482if test "$libgo_cv_func___sync_fetch_and_add_4" = "yes"; then
483 AC_DEFINE(HAVE_SYNC_FETCH_AND_ADD_4, 1,
484 [Define to 1 if the compiler provides the __sync_fetch_and_add function for uint32])
485fi
486
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000487dnl For x86 we want to use the -minline-all-stringops option to avoid
488dnl forcing a stack split when calling memcpy and friends.
489AC_CACHE_CHECK([whether compiler supports -minline-all-stringops],
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000490[libgo_cv_c_stringops],
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000491[CFLAGS_hold=$CFLAGS
492CFLAGS="$CFLAGS -minline-all-stringops"
493AC_COMPILE_IFELSE([int i;],
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000494[libgo_cv_c_stringops=yes],
495[libgo_cv_c_stringops=no])
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000496CFLAGS=$CFLAGS_hold])
497STRINGOPS_FLAG=
Ian Lance Taylorf2ee78b2011-01-12 06:34:08 +0000498if test "$libgo_cv_c_stringops" = yes; then
Ian Lance Taylor7a938932010-12-03 04:34:57 +0000499 STRINGOPS_FLAG=-minline-all-stringops
500fi
501AC_SUBST(STRINGOPS_FLAG)
502
503CFLAGS_hold=$CFLAGS
504CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE"
505AC_CHECK_TYPES(off64_t)
506CFLAGS=$CFLAGS_hold
507
508AC_CACHE_SAVE
509
510if test ${multilib} = yes; then
511 multilib_arg="--enable-multilib"
512else
513 multilib_arg=
514fi
515
516AC_CONFIG_FILES(Makefile testsuite/Makefile)
517
518AC_CONFIG_COMMANDS([default],
519[if test -n "$CONFIG_FILES"; then
520 # Multilibs need MULTISUBDIR defined correctly in certain makefiles so
521 # that multilib installs will end up installed in the correct place.
522 # The testsuite needs it for multilib-aware ABI baseline files.
523 # To work around this not being passed down from config-ml.in ->
524 # srcdir/Makefile.am -> srcdir/{src,libsupc++,...}/Makefile.am, manually
525 # append it here. Only modify Makefiles that have just been created.
526 #
527 # Also, get rid of this simulated-VPATH thing that automake does.
528 cat > vpsed << \_EOF
529s!`test -f '$<' || echo '$(srcdir)/'`!!
530_EOF
531 for i in $SUBDIRS; do
532 case $CONFIG_FILES in
533 *${i}/Makefile*)
534 #echo "Adding MULTISUBDIR to $i/Makefile"
535 sed -f vpsed $i/Makefile > tmp
536 grep '^MULTISUBDIR =' Makefile >> tmp
537 mv tmp $i/Makefile
538 ;;
539 esac
540 done
541 rm vpsed
542 fi
543],
544[
545# Variables needed in config.status (file generation) which aren't already
546# passed by autoconf.
547SUBDIRS="$SUBDIRS"
548])
549
550AC_OUTPUT