sim: require a C11 compiler
With GDB requiring a C++11 compiler now, this hopefully shouldn't be a big deal. It's been 10 years since C11 came out, so should be plenty of time to upgrade. This will allow us to start cleaning up random header logic and many of our non-standard custom types.
This commit is contained in:
parent
8fc48b7961
commit
46f900c065
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* README-HACKING (C Language Assumptions): Require C11 compiler.
|
||||||
|
|
||||||
2020-09-03 Jose E. Marchesi <jose.marchesi@oracle.com>
|
2020-09-03 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||||
|
|
||||||
* configure.ac: Do not configure sim/testsuite nor sim/igen if the
|
* configure.ac: Do not configure sim/testsuite nor sim/igen if the
|
||||||
|
@ -161,33 +161,7 @@ To add the entries to an alternative ChangeLog file, use:
|
|||||||
C Language Assumptions
|
C Language Assumptions
|
||||||
======================
|
======================
|
||||||
|
|
||||||
The programmer may assume that the simulator is being built using an
|
An ISO C11 compiler is required, as is an ISO C standard library.
|
||||||
ANSI C compiler that supports a 64 bit data type. Consequently:
|
|
||||||
|
|
||||||
o prototypes can be used
|
|
||||||
|
|
||||||
o If sim-types.h is included, the two
|
|
||||||
types signed64 and unsigned64 are
|
|
||||||
available.
|
|
||||||
|
|
||||||
o The type `unsigned' is valid.
|
|
||||||
|
|
||||||
However, the user should be aware of the following:
|
|
||||||
|
|
||||||
o GCC's `<number>LL' is NOT acceptable.
|
|
||||||
Microsoft-C doesn't reconize it.
|
|
||||||
|
|
||||||
o MSC's `<number>i64' is NOT acceptable.
|
|
||||||
GCC doesn't reconize it.
|
|
||||||
|
|
||||||
o GCC's `long long' MSC's `_int64' can
|
|
||||||
NOT be used to define 64 bit integer data
|
|
||||||
types.
|
|
||||||
|
|
||||||
o An empty array (eg int a[0]) is not valid.
|
|
||||||
|
|
||||||
When building with GCC it is effectivly a requirement that
|
|
||||||
--enable-build-warnings=,-Werror be specified during configuration.
|
|
||||||
|
|
||||||
"dump" commands under gdb
|
"dump" commands under gdb
|
||||||
=========================
|
=========================
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/aarch64/configure
vendored
66
sim/aarch64/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8648,6 +8649,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12064,16 +12114,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12190,7 +12230,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12879,7 +12919,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12882 "configure"
|
#line 12922 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12985,7 +13025,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12988 "configure"
|
#line 13028 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* wrapper.c: Include stdlib.h.
|
* wrapper.c: Include stdlib.h.
|
||||||
|
66
sim/arm/configure
vendored
66
sim/arm/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8648,6 +8649,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12064,16 +12114,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12190,7 +12230,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12879,7 +12919,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12882 "configure"
|
#line 12922 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12985,7 +13025,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12988 "configure"
|
#line 13028 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/avr/configure
vendored
66
sim/avr/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8648,6 +8649,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12064,16 +12114,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12190,7 +12230,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12879,7 +12919,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12882 "configure"
|
#line 12922 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12985,7 +13025,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12988 "configure"
|
#line 13028 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* machs.c: Include stdlib.h.
|
* machs.c: Include stdlib.h.
|
||||||
|
66
sim/bfin/configure
vendored
66
sim/bfin/configure
vendored
@ -683,6 +683,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8691,6 +8692,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12107,16 +12157,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12233,7 +12273,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12922,7 +12962,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12925 "configure"
|
#line 12965 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13028,7 +13068,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 13031 "configure"
|
#line 13071 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2020-11-01 Simon Marchi <simon.marchi@polymtl.ca>
|
2020-11-01 Simon Marchi <simon.marchi@polymtl.ca>
|
||||||
|
|
||||||
* configure: Re-generate.
|
* configure: Re-generate.
|
||||||
|
66
sim/bpf/configure
vendored
66
sim/bpf/configure
vendored
@ -681,6 +681,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8653,6 +8654,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12069,16 +12119,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12195,7 +12235,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12884,7 +12924,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12887 "configure"
|
#line 12927 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12990,7 +13030,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12993 "configure"
|
#line 13033 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* Make-common.in (C_DIALECT): Define.
|
||||||
|
(COMPILE.pre): Append $(C_DIALECT).
|
||||||
|
* acinclude.m4 (SIM_AC_COMMON): Probe C11 to define C_DIALECT.
|
||||||
|
|
||||||
2021-01-07 Mike Frysinger <vapier@gentoo.org>
|
2021-01-07 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* sim-core.c (sim_memory_map): Define.
|
* sim-core.c (sim_memory_map): Define.
|
||||||
|
@ -70,6 +70,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
|
C_DIALECT = @C_DIALECT@
|
||||||
CC_FOR_BUILD = @CC_FOR_BUILD@
|
CC_FOR_BUILD = @CC_FOR_BUILD@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
CPPFLAGS = @CPPFLAGS@
|
CPPFLAGS = @CPPFLAGS@
|
||||||
@ -107,7 +108,7 @@ depcomp = $(SHELL) $(srcroot)/depcomp
|
|||||||
|
|
||||||
# Note that these are overridden by GNU make-specific code below if
|
# Note that these are overridden by GNU make-specific code below if
|
||||||
# GNU make is used. The overrides implement dependency tracking.
|
# GNU make is used. The overrides implement dependency tracking.
|
||||||
COMPILE.pre = $(CC)
|
COMPILE.pre = $(CC) $(C_DIALECT)
|
||||||
COMPILE.post = -c -o $@
|
COMPILE.post = -c -o $@
|
||||||
COMPILE = $(COMPILE.pre) $(ALL_CFLAGS) $(COMPILE.post)
|
COMPILE = $(COMPILE.pre) $(ALL_CFLAGS) $(COMPILE.post)
|
||||||
POSTCOMPILE = @true
|
POSTCOMPILE = @true
|
||||||
|
@ -56,6 +56,32 @@ AR=${AR-ar}
|
|||||||
AC_SUBST(AR)
|
AC_SUBST(AR)
|
||||||
AC_PROG_RANLIB
|
AC_PROG_RANLIB
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
m4_version_prereq([2.70], [AC_MSG_ERROR([clean this up!])], [:])
|
||||||
|
C_DIALECT=
|
||||||
|
AC_MSG_CHECKING([whether C11 is supported by default])
|
||||||
|
AC_COMPILE_IFELSE([AC_LANG_SOURCE([
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
])], [AC_MSG_RESULT([yes])], [
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
AC_MSG_CHECKING([for -std=c11 support])
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
AC_COMPILE_IFELSE([AC_LANG_SOURCE([
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
])], [
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
], [AC_MSG_ERROR([C11 is required])])])
|
||||||
|
AC_SUBST(C_DIALECT)
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/cr16/configure
vendored
66
sim/cr16/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8648,6 +8649,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12064,16 +12114,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12190,7 +12230,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12879,7 +12919,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12882 "configure"
|
#line 12922 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12985,7 +13025,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12988 "configure"
|
#line 13028 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/cris/configure
vendored
66
sim/cris/configure
vendored
@ -681,6 +681,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8662,6 +8663,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12078,16 +12128,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12204,7 +12244,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12893,7 +12933,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12896 "configure"
|
#line 12936 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12999,7 +13039,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 13002 "configure"
|
#line 13042 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/d10v/configure
vendored
66
sim/d10v/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8648,6 +8649,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12064,16 +12114,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12190,7 +12230,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12879,7 +12919,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12882 "configure"
|
#line 12922 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12985,7 +13025,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12988 "configure"
|
#line 13028 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/erc32/configure
vendored
66
sim/erc32/configure
vendored
@ -680,6 +680,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8635,6 +8636,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12051,16 +12101,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12177,7 +12217,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12866,7 +12906,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12869 "configure"
|
#line 12909 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12972,7 +13012,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12975 "configure"
|
#line 13015 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/frv/configure
vendored
66
sim/frv/configure
vendored
@ -682,6 +682,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8657,6 +8658,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12073,16 +12123,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12199,7 +12239,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12888,7 +12928,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12891 "configure"
|
#line 12931 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12994,7 +13034,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12997 "configure"
|
#line 13037 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/ft32/configure
vendored
66
sim/ft32/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8648,6 +8649,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12064,16 +12114,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12190,7 +12230,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12879,7 +12919,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12882 "configure"
|
#line 12922 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12985,7 +13025,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12988 "configure"
|
#line 13028 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-07 Mike Frysinger <vapier@gentoo.org>
|
2021-01-07 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* compile.c (set_simcache_size, h8_get_cache_top, h8_set_cache_top,
|
* compile.c (set_simcache_size, h8_get_cache_top, h8_set_cache_top,
|
||||||
|
66
sim/h8300/configure
vendored
66
sim/h8300/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8640,6 +8641,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12056,16 +12106,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12182,7 +12222,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12871,7 +12911,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12874 "configure"
|
#line 12914 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12977,7 +13017,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12980 "configure"
|
#line 13020 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/iq2000/configure
vendored
66
sim/iq2000/configure
vendored
@ -681,6 +681,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8654,6 +8655,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12070,16 +12120,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12196,7 +12236,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12885,7 +12925,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12888 "configure"
|
#line 12928 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12991,7 +13031,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12994 "configure"
|
#line 13034 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/lm32/configure
vendored
66
sim/lm32/configure
vendored
@ -681,6 +681,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8654,6 +8655,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12070,16 +12120,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12196,7 +12236,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12885,7 +12925,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12888 "configure"
|
#line 12928 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12991,7 +13031,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12994 "configure"
|
#line 13034 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/m32c/configure
vendored
66
sim/m32c/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8641,6 +8642,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12057,16 +12107,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12183,7 +12223,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12872,7 +12912,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12875 "configure"
|
#line 12915 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12978,7 +13018,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12981 "configure"
|
#line 13021 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/m32r/configure
vendored
66
sim/m32r/configure
vendored
@ -683,6 +683,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8656,6 +8657,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12072,16 +12122,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12198,7 +12238,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12887,7 +12927,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12890 "configure"
|
#line 12930 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12993,7 +13033,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12996 "configure"
|
#line 13036 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/m68hc11/configure
vendored
66
sim/m68hc11/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8651,6 +8652,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12067,16 +12117,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12193,7 +12233,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12882,7 +12922,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12885 "configure"
|
#line 12925 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12988,7 +13028,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12991 "configure"
|
#line 13031 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/mcore/configure
vendored
66
sim/mcore/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8648,6 +8649,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12064,16 +12114,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12190,7 +12230,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12879,7 +12919,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12882 "configure"
|
#line 12922 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12985,7 +13025,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12988 "configure"
|
#line 13028 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/microblaze/configure
vendored
66
sim/microblaze/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8648,6 +8649,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12064,16 +12114,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12190,7 +12230,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12879,7 +12919,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12882 "configure"
|
#line 12922 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12985,7 +13025,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12988 "configure"
|
#line 13028 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
68
sim/mips/configure
vendored
68
sim/mips/configure
vendored
@ -691,6 +691,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8681,6 +8682,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12097,16 +12147,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12223,7 +12263,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12912,7 +12952,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12915 "configure"
|
#line 12955 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13018,7 +13058,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 13021 "configure"
|
#line 13061 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -14074,7 +14114,7 @@ if test ${sim_gen} = MULTI; then
|
|||||||
|
|
||||||
cat << __EOF__ > multi-run.c
|
cat << __EOF__ > multi-run.c
|
||||||
/* Main entry point for MULTI simulators.
|
/* Main entry point for MULTI simulators.
|
||||||
Copyright (C) 2003-2020 Free Software Foundation, Inc.
|
Copyright (C) 2003-2021 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/mn10300/configure
vendored
66
sim/mn10300/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8657,6 +8658,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12073,16 +12123,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12199,7 +12239,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12888,7 +12928,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12891 "configure"
|
#line 12931 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12994,7 +13034,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12997 "configure"
|
#line 13037 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/moxie/configure
vendored
66
sim/moxie/configure
vendored
@ -679,6 +679,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8649,6 +8650,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12065,16 +12115,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12191,7 +12231,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12880,7 +12920,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12883 "configure"
|
#line 12923 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12986,7 +13026,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12989 "configure"
|
#line 13029 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/msp430/configure
vendored
66
sim/msp430/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8648,6 +8649,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12064,16 +12114,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12190,7 +12230,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12879,7 +12919,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12882 "configure"
|
#line 12922 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12985,7 +13025,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12988 "configure"
|
#line 13028 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2019-06-13 Stafford Horne <shorne@gmail.com>
|
2019-06-13 Stafford Horne <shorne@gmail.com>
|
||||||
|
|
||||||
* cpu.c: Regenerate.
|
* cpu.c: Regenerate.
|
||||||
|
66
sim/or1k/configure
vendored
66
sim/or1k/configure
vendored
@ -681,6 +681,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8653,6 +8654,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12069,16 +12119,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12195,7 +12235,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12884,7 +12924,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12887 "configure"
|
#line 12927 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12990,7 +13030,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12993 "configure"
|
#line 13033 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/pru/configure
vendored
66
sim/pru/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8648,6 +8649,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12064,16 +12114,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12190,7 +12230,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12879,7 +12919,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12882 "configure"
|
#line 12922 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12985,7 +13025,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12988 "configure"
|
#line 13028 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/rl78/configure
vendored
66
sim/rl78/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8633,6 +8634,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12049,16 +12099,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12175,7 +12215,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12864,7 +12904,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12867 "configure"
|
#line 12907 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12970,7 +13010,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12973 "configure"
|
#line 13013 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/rx/configure
vendored
66
sim/rx/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8638,6 +8639,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12054,16 +12104,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12180,7 +12220,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12869,7 +12909,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12872 "configure"
|
#line 12912 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12975,7 +13015,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12978 "configure"
|
#line 13018 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/sh/configure
vendored
66
sim/sh/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8648,6 +8649,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12064,16 +12114,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12190,7 +12230,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12879,7 +12919,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12882 "configure"
|
#line 12922 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12985,7 +13025,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12988 "configure"
|
#line 13028 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/sh64/configure
vendored
66
sim/sh64/configure
vendored
@ -681,6 +681,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8654,6 +8655,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12070,16 +12120,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12196,7 +12236,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12885,7 +12925,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12888 "configure"
|
#line 12928 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12991,7 +13031,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12994 "configure"
|
#line 13034 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-01-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
66
sim/v850/configure
vendored
66
sim/v850/configure
vendored
@ -678,6 +678,7 @@ CCDEPMODE
|
|||||||
DEPDIR
|
DEPDIR
|
||||||
am__leading_dot
|
am__leading_dot
|
||||||
PACKAGE
|
PACKAGE
|
||||||
|
C_DIALECT
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -8654,6 +8655,55 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using
|
||||||
|
# AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands
|
||||||
|
# is C99. So handle it ourselves.
|
||||||
|
:
|
||||||
|
C_DIALECT=
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5
|
||||||
|
$as_echo_n "checking whether C11 is supported by default... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
else
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5
|
||||||
|
$as_echo_n "checking for -std=c11 support... " >&6; }
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
CC="$CC -std=c11"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
|
||||||
|
# error "C11 support not found"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
$as_echo "yes" >&6; }
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
C_DIALECT="-std=c11"
|
||||||
|
|
||||||
|
else
|
||||||
|
as_fn_error $? "C11 is required" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
|
||||||
|
|
||||||
# Some of the common include files depend on bfd.h, and bfd.h checks
|
# Some of the common include files depend on bfd.h, and bfd.h checks
|
||||||
# that config.h is included first by testing that the PACKAGE macro
|
# that config.h is included first by testing that the PACKAGE macro
|
||||||
# is defined.
|
# is defined.
|
||||||
@ -12070,16 +12120,6 @@ freebsd* | dragonfly*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
gnu*)
|
|
||||||
version_type=linux
|
|
||||||
need_lib_prefix=no
|
|
||||||
need_version=no
|
|
||||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
|
|
||||||
soname_spec='${libname}${release}${shared_ext}$major'
|
|
||||||
shlibpath_var=LD_LIBRARY_PATH
|
|
||||||
hardcode_into_libs=yes
|
|
||||||
;;
|
|
||||||
|
|
||||||
haiku*)
|
haiku*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
@ -12196,7 +12236,7 @@ linux*oldld* | linux*aout* | linux*coff*)
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
# This must be Linux ELF.
|
# This must be Linux ELF.
|
||||||
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
||||||
version_type=linux
|
version_type=linux
|
||||||
need_lib_prefix=no
|
need_lib_prefix=no
|
||||||
need_version=no
|
need_version=no
|
||||||
@ -12885,7 +12925,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12888 "configure"
|
#line 12928 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12991,7 +13031,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 12994 "configure"
|
#line 13034 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
Loading…
x
Reference in New Issue
Block a user