diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-05-29 20:22:27 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-05-29 20:22:27 +0000 |
commit | 9a85ed03da6afed536ba4fb5107a4e8b9f01aec4 (patch) | |
tree | ffb905fbae8b421551bac556d96607de00cb5918 /libgo/configure | |
parent | cc8849a1597bb12c16a990bfed6a3b685952d493 (diff) | |
download | gcc-9a85ed03da6afed536ba4fb5107a4e8b9f01aec4.zip gcc-9a85ed03da6afed536ba4fb5107a4e8b9f01aec4.tar.gz gcc-9a85ed03da6afed536ba4fb5107a4e8b9f01aec4.tar.bz2 |
runtime: add the --without-libatomic configure option
This adds the --without-libatomic configure option, which is useful for building libgo
with a non-gcc compiler.
It disables libgo's dependency on libatomic. This
is useful for platforms where it is known that the libatomic runtime
functions are not required, or where the compiler automatically
provides an implementation of them.
From-SVN: r211065
Diffstat (limited to 'libgo/configure')
-rwxr-xr-x | libgo/configure | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/libgo/configure b/libgo/configure index 23ef791..22f9352 100755 --- a/libgo/configure +++ b/libgo/configure @@ -676,6 +676,7 @@ LIBGO_IS_FREEBSD_TRUE LIBGO_IS_DARWIN_FALSE LIBGO_IS_DARWIN_TRUE go_include +LIBATOMIC LIBFFIINCS LIBFFI nover_glibgo_toolexeclibdir @@ -817,6 +818,7 @@ enable_libtool_lock enable_werror enable_version_specific_runtime_libs with_libffi +with_libatomic with_system_libunwind enable_sjlj_exceptions ' @@ -1469,6 +1471,7 @@ Optional Packages: --with-pic try to use only PIC/non-PIC objects [default=use both] --without-libffi don't use libffi + --without-libatomic don't use libatomic --with-system-libunwind use installed libunwind Some influential environment variables: @@ -11115,7 +11118,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11118 "configure" +#line 11121 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11221,7 +11224,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11224 "configure" +#line 11227 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -13483,6 +13486,24 @@ fi +# See if the user wants to configure without libatomic. This is useful if we are +# on an architecture for which libgo does not need an atomic support library and +# libatomic does not support our C compiler. + +# Check whether --with-libatomic was given. +if test "${with_libatomic+set}" = set; then : + withval=$with_libatomic; : +else + with_libatomic=${with_libatomic_default-yes} +fi + + +LIBATOMIC= +if test "$with_libatomic" != no; then + LIBATOMIC=../libatomic/libatomic_convenience.la +fi + + # Used to tell GNU make to include a file without telling automake to # include it. go_include="-include" |