diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-05-15 23:50:33 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-05-16 00:04:17 -0400 |
commit | 79633c125eb260a9ac9ed49e314b916f353c4373 (patch) | |
tree | a9cd7798829069234b4251363fec707e9ae185f9 /sim | |
parent | 246ee38501205610cd3db75982c5e40cbd13a9b4 (diff) | |
download | fsf-binutils-gdb-79633c125eb260a9ac9ed49e314b916f353c4373.zip fsf-binutils-gdb-79633c125eb260a9ac9ed49e314b916f353c4373.tar.gz fsf-binutils-gdb-79633c125eb260a9ac9ed49e314b916f353c4373.tar.bz2 |
sim: riscv: move __int128 check to configure
Diffstat (limited to 'sim')
96 files changed, 596 insertions, 63 deletions
diff --git a/sim/ChangeLog b/sim/ChangeLog index 61bb0f4..81d2f34 100644 --- a/sim/ChangeLog +++ b/sim/ChangeLog @@ -1,3 +1,7 @@ +2021-05-15 Mike Frysinger <vapier@gentoo.org> + + * m4/sim_ac_common.m4: Check for __int128 type. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * README-HACKING: Update callback.h path. diff --git a/sim/aarch64/ChangeLog b/sim/aarch64/ChangeLog index 085aea6..dc3eee2 100644 --- a/sim/aarch64/ChangeLog +++ b/sim/aarch64/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * cpustate.h: Update include path. diff --git a/sim/aarch64/config.in b/sim/aarch64/config.in index c694fde..a7c8785 100644 --- a/sim/aarch64/config.in +++ b/sim/aarch64/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/aarch64/configure b/sim/aarch64/configure index 28044c9..68f9e19 100755 --- a/sim/aarch64/configure +++ b/sim/aarch64/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog index 5282e70..c85e705 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * armos.c (ARMul_OSHandleSWI): Delete 2nd arg to time callback. diff --git a/sim/arm/config.in b/sim/arm/config.in index c694fde..a7c8785 100644 --- a/sim/arm/config.in +++ b/sim/arm/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/arm/configure b/sim/arm/configure index 1c2b06b..abacc83 100755 --- a/sim/arm/configure +++ b/sim/arm/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/avr/ChangeLog b/sim/avr/ChangeLog index 128d14b..ce09783 100644 --- a/sim/avr/ChangeLog +++ b/sim/avr/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * interp.c: Update include path. diff --git a/sim/avr/config.in b/sim/avr/config.in index c694fde..a7c8785 100644 --- a/sim/avr/config.in +++ b/sim/avr/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/avr/configure b/sim/avr/configure index 1f2c9cd..4019336 100755 --- a/sim/avr/configure +++ b/sim/avr/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/bfin/ChangeLog b/sim/bfin/ChangeLog index 3dff4ed..84e1dd3 100644 --- a/sim/bfin/ChangeLog +++ b/sim/bfin/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * interp.c: Update include path. diff --git a/sim/bfin/config.in b/sim/bfin/config.in index 851b3f8..a752de4 100644 --- a/sim/bfin/config.in +++ b/sim/bfin/config.in @@ -178,6 +178,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/bfin/configure b/sim/bfin/configure index a930031..fd008bf 100755 --- a/sim/bfin/configure +++ b/sim/bfin/configure @@ -7526,6 +7526,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11230,7 +11240,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11233 "configure" +#line 11243 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11336,7 +11346,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11339 "configure" +#line 11349 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/bpf/ChangeLog b/sim/bpf/ChangeLog index 359cabb..689c76b 100644 --- a/sim/bpf/ChangeLog +++ b/sim/bpf/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-04 Mike Frysinger <vapier@gentoo.org> * configure: Regenerate. diff --git a/sim/bpf/config.in b/sim/bpf/config.in index c694fde..a7c8785 100644 --- a/sim/bpf/config.in +++ b/sim/bpf/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/bpf/configure b/sim/bpf/configure index 2d30e7c..14eeef8 100755 --- a/sim/bpf/configure +++ b/sim/bpf/configure @@ -7506,6 +7506,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11210,7 +11220,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11213 "configure" +#line 11223 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11316,7 +11326,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11319 "configure" +#line 11329 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/cr16/ChangeLog b/sim/cr16/ChangeLog index ae43ba1..d311b2d 100644 --- a/sim/cr16/ChangeLog +++ b/sim/cr16/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * Makefile.in: Update path. diff --git a/sim/cr16/config.in b/sim/cr16/config.in index c694fde..a7c8785 100644 --- a/sim/cr16/config.in +++ b/sim/cr16/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/cr16/configure b/sim/cr16/configure index d862891..103e5cd 100755 --- a/sim/cr16/configure +++ b/sim/cr16/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/cris/ChangeLog b/sim/cris/ChangeLog index 7dfc887..01645b5 100644 --- a/sim/cris/ChangeLog +++ b/sim/cris/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-15 Mike Frysinger <vapier@gentoo.org> * sim-if.c: Include environ.h. diff --git a/sim/cris/config.in b/sim/cris/config.in index 7514425..1a12e07 100644 --- a/sim/cris/config.in +++ b/sim/cris/config.in @@ -148,6 +148,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/cris/configure b/sim/cris/configure index d791a3d..1aaf58d 100755 --- a/sim/cris/configure +++ b/sim/cris/configure @@ -7507,6 +7507,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11211,7 +11221,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11214 "configure" +#line 11224 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11317,7 +11327,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11320 "configure" +#line 11330 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/d10v/ChangeLog b/sim/d10v/ChangeLog index 0a5c7a7..622a911 100644 --- a/sim/d10v/ChangeLog +++ b/sim/d10v/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * Makefile.in: Update path. diff --git a/sim/d10v/config.in b/sim/d10v/config.in index c694fde..a7c8785 100644 --- a/sim/d10v/config.in +++ b/sim/d10v/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/d10v/configure b/sim/d10v/configure index 2d1e87f..9de1922 100755 --- a/sim/d10v/configure +++ b/sim/d10v/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/erc32/ChangeLog b/sim/erc32/ChangeLog index 950384a..40dd931 100644 --- a/sim/erc32/ChangeLog +++ b/sim/erc32/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * interf.c: Update include path. diff --git a/sim/erc32/config.in b/sim/erc32/config.in index c694fde..a7c8785 100644 --- a/sim/erc32/config.in +++ b/sim/erc32/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/erc32/configure b/sim/erc32/configure index 0d2327f..0f3634d 100755 --- a/sim/erc32/configure +++ b/sim/erc32/configure @@ -7489,6 +7489,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11193,7 +11203,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11196 "configure" +#line 11206 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11299,7 +11309,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11302 "configure" +#line 11312 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/example-synacor/ChangeLog b/sim/example-synacor/ChangeLog index d491f2a..0f91ff2 100644 --- a/sim/example-synacor/ChangeLog +++ b/sim/example-synacor/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * interp.c: Update include path. diff --git a/sim/example-synacor/config.in b/sim/example-synacor/config.in index c694fde..a7c8785 100644 --- a/sim/example-synacor/config.in +++ b/sim/example-synacor/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/example-synacor/configure b/sim/example-synacor/configure index e2f34d1..71f5f59 100755 --- a/sim/example-synacor/configure +++ b/sim/example-synacor/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/frv/ChangeLog b/sim/frv/ChangeLog index 0c39d1a..6b93dd8 100644 --- a/sim/frv/ChangeLog +++ b/sim/frv/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-04 Mike Frysinger <vapier@gentoo.org> * configure: Regenerate. diff --git a/sim/frv/config.in b/sim/frv/config.in index c694fde..a7c8785 100644 --- a/sim/frv/config.in +++ b/sim/frv/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/frv/configure b/sim/frv/configure index 73f3066..00455cf 100755 --- a/sim/frv/configure +++ b/sim/frv/configure @@ -7507,6 +7507,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11211,7 +11221,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11214 "configure" +#line 11224 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11317,7 +11327,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11320 "configure" +#line 11330 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/ft32/ChangeLog b/sim/ft32/ChangeLog index 185d16f..08a5b9b 100644 --- a/sim/ft32/ChangeLog +++ b/sim/ft32/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * interp.c: Update include path. diff --git a/sim/ft32/config.in b/sim/ft32/config.in index c694fde..a7c8785 100644 --- a/sim/ft32/config.in +++ b/sim/ft32/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/ft32/configure b/sim/ft32/configure index abb6f31..76967b9 100755 --- a/sim/ft32/configure +++ b/sim/ft32/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index 578836e..b53309a 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-08 Mike Frysinger <vapier@gentoo.org> * compile.c (h8_set_macS): Disable with #if 0. diff --git a/sim/h8300/config.in b/sim/h8300/config.in index 441cd1f..abbedae 100644 --- a/sim/h8300/config.in +++ b/sim/h8300/config.in @@ -142,6 +142,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/h8300/configure b/sim/h8300/configure index 4849a06..61cad81 100755 --- a/sim/h8300/configure +++ b/sim/h8300/configure @@ -7494,6 +7494,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11198,7 +11208,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11201 "configure" +#line 11211 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11304,7 +11314,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11307 "configure" +#line 11317 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/iq2000/ChangeLog b/sim/iq2000/ChangeLog index 5dbfb7a..1f90b57 100644 --- a/sim/iq2000/ChangeLog +++ b/sim/iq2000/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-04 Tom Tromey <tromey@adacore.com> * mloop.in: Include <stdlib.h>. diff --git a/sim/iq2000/config.in b/sim/iq2000/config.in index c694fde..a7c8785 100644 --- a/sim/iq2000/config.in +++ b/sim/iq2000/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/iq2000/configure b/sim/iq2000/configure index 6dd888c..5d3ed4f 100755 --- a/sim/iq2000/configure +++ b/sim/iq2000/configure @@ -7504,6 +7504,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11208,7 +11218,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11211 "configure" +#line 11221 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11314,7 +11324,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11317 "configure" +#line 11327 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/lm32/ChangeLog b/sim/lm32/ChangeLog index f169b1b..9061341 100644 --- a/sim/lm32/ChangeLog +++ b/sim/lm32/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-04 Tom Tromey <tromey@adacore.com> * mloop.in: Include <stdlib.h>. diff --git a/sim/lm32/config.in b/sim/lm32/config.in index c694fde..a7c8785 100644 --- a/sim/lm32/config.in +++ b/sim/lm32/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/lm32/configure b/sim/lm32/configure index 1924db7..387b7d2 100755 --- a/sim/lm32/configure +++ b/sim/lm32/configure @@ -7504,6 +7504,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11208,7 +11218,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11211 "configure" +#line 11221 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11314,7 +11324,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11317 "configure" +#line 11327 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/m32c/ChangeLog b/sim/m32c/ChangeLog index 099d70d..af71d21 100644 --- a/sim/m32c/ChangeLog +++ b/sim/m32c/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * gdb-if.c: Update include path. diff --git a/sim/m32c/config.in b/sim/m32c/config.in index 33cda70..2bd2bea 100644 --- a/sim/m32c/config.in +++ b/sim/m32c/config.in @@ -154,6 +154,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/m32c/configure b/sim/m32c/configure index 7c283c2..7135728 100755 --- a/sim/m32c/configure +++ b/sim/m32c/configure @@ -7491,6 +7491,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11195,7 +11205,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11198 "configure" +#line 11208 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11301,7 +11311,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11304 "configure" +#line 11314 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/m32r/ChangeLog b/sim/m32r/ChangeLog index 9737efb..04031e7 100644 --- a/sim/m32r/ChangeLog +++ b/sim/m32r/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-04 Tom Tromey <tromey@adacore.com> * mloop.in: Include <stdlib.h>. diff --git a/sim/m32r/config.in b/sim/m32r/config.in index c694fde..a7c8785 100644 --- a/sim/m32r/config.in +++ b/sim/m32r/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/m32r/configure b/sim/m32r/configure index ded50a2..9ca077d 100755 --- a/sim/m32r/configure +++ b/sim/m32r/configure @@ -7506,6 +7506,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11210,7 +11220,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11213 "configure" +#line 11223 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11316,7 +11326,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11319 "configure" +#line 11329 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/m4/sim_ac_common.m4 b/sim/m4/sim_ac_common.m4 index 35fcbfc..aa10a65 100644 --- a/sim/m4/sim_ac_common.m4 +++ b/sim/m4/sim_ac_common.m4 @@ -75,6 +75,7 @@ AC_CHECK_MEMBERS([[struct stat.st_dev], [struct stat.st_ino], #ifdef HAVE_SYS_STAT_H #include <sys/stat.h> #endif]]) +AC_CHECK_TYPES([__int128]) AC_CHECK_TYPES(socklen_t, [], [], [#include <sys/types.h> #include <sys/socket.h> diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog index 6f2bef5..410660c 100644 --- a/sim/m68hc11/ChangeLog +++ b/sim/m68hc11/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * sim-main.h: Update include path. diff --git a/sim/m68hc11/config.in b/sim/m68hc11/config.in index c694fde..a7c8785 100644 --- a/sim/m68hc11/config.in +++ b/sim/m68hc11/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/m68hc11/configure b/sim/m68hc11/configure index 8fb4bbd..a282abb 100755 --- a/sim/m68hc11/configure +++ b/sim/m68hc11/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/mcore/ChangeLog b/sim/mcore/ChangeLog index d165f3c..3a14634 100644 --- a/sim/mcore/ChangeLog +++ b/sim/mcore/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * interp.c: Update include path. diff --git a/sim/mcore/config.in b/sim/mcore/config.in index c694fde..a7c8785 100644 --- a/sim/mcore/config.in +++ b/sim/mcore/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/mcore/configure b/sim/mcore/configure index 2d1e87f..9de1922 100755 --- a/sim/mcore/configure +++ b/sim/mcore/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/microblaze/ChangeLog b/sim/microblaze/ChangeLog index efedaa5..dce1721 100644 --- a/sim/microblaze/ChangeLog +++ b/sim/microblaze/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * interp.c: Update include path. diff --git a/sim/microblaze/config.in b/sim/microblaze/config.in index c694fde..a7c8785 100644 --- a/sim/microblaze/config.in +++ b/sim/microblaze/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/microblaze/configure b/sim/microblaze/configure index 1c2b06b..abacc83 100755 --- a/sim/microblaze/configure +++ b/sim/microblaze/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog index 963e85a..76134b7 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * interp.c: Update include path. diff --git a/sim/mips/config.in b/sim/mips/config.in index b8e8616..be89cbd 100644 --- a/sim/mips/config.in +++ b/sim/mips/config.in @@ -148,6 +148,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/mips/configure b/sim/mips/configure index d690267..1560b0a 100755 --- a/sim/mips/configure +++ b/sim/mips/configure @@ -7521,6 +7521,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11225,7 +11235,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11228 "configure" +#line 11238 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11331,7 +11341,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11334 "configure" +#line 11344 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog index fce17ed..42eed82 100644 --- a/sim/mn10300/ChangeLog +++ b/sim/mn10300/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * mn10300_sim.h: Update include path. diff --git a/sim/mn10300/config.in b/sim/mn10300/config.in index c694fde..a7c8785 100644 --- a/sim/mn10300/config.in +++ b/sim/mn10300/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/mn10300/configure b/sim/mn10300/configure index 7353ac2..e6ffbe6 100755 --- a/sim/mn10300/configure +++ b/sim/mn10300/configure @@ -7499,6 +7499,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11203,7 +11213,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11206 "configure" +#line 11216 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11309,7 +11319,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11312 "configure" +#line 11322 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/moxie/ChangeLog b/sim/moxie/ChangeLog index 20d2ecf..be18085 100644 --- a/sim/moxie/ChangeLog +++ b/sim/moxie/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * interp.c: Update include path. diff --git a/sim/moxie/config.in b/sim/moxie/config.in index c694fde..a7c8785 100644 --- a/sim/moxie/config.in +++ b/sim/moxie/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/moxie/configure b/sim/moxie/configure index 6636182..a692e33 100755 --- a/sim/moxie/configure +++ b/sim/moxie/configure @@ -7494,6 +7494,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11198,7 +11208,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11201 "configure" +#line 11211 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11304,7 +11314,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11307 "configure" +#line 11317 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/msp430/ChangeLog b/sim/msp430/ChangeLog index acdca73..c6a4c65 100644 --- a/sim/msp430/ChangeLog +++ b/sim/msp430/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-04 Mike Frysinger <vapier@gentoo.org> * configure: Regenerate. diff --git a/sim/msp430/config.in b/sim/msp430/config.in index c694fde..a7c8785 100644 --- a/sim/msp430/config.in +++ b/sim/msp430/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/msp430/configure b/sim/msp430/configure index 1f2c9cd..4019336 100755 --- a/sim/msp430/configure +++ b/sim/msp430/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/or1k/ChangeLog b/sim/or1k/ChangeLog index ece6160..ddfa618 100644 --- a/sim/or1k/ChangeLog +++ b/sim/or1k/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-12 Mike Frysinger <vapier@gentoo.org> * configure.ac: Delete SIM_AC_OPTION_ENVIRONMENT call. diff --git a/sim/or1k/config.in b/sim/or1k/config.in index c694fde..a7c8785 100644 --- a/sim/or1k/config.in +++ b/sim/or1k/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/or1k/configure b/sim/or1k/configure index ef0a6c7..22f3674 100755 --- a/sim/or1k/configure +++ b/sim/or1k/configure @@ -7506,6 +7506,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11210,7 +11220,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11213 "configure" +#line 11223 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11316,7 +11326,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11319 "configure" +#line 11329 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/pru/ChangeLog b/sim/pru/ChangeLog index 5849e1d..7b6aac1 100644 --- a/sim/pru/ChangeLog +++ b/sim/pru/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * interp.c: Update include path. diff --git a/sim/pru/config.in b/sim/pru/config.in index c694fde..a7c8785 100644 --- a/sim/pru/config.in +++ b/sim/pru/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/pru/configure b/sim/pru/configure index 1f2c9cd..4019336 100755 --- a/sim/pru/configure +++ b/sim/pru/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/riscv/ChangeLog b/sim/riscv/ChangeLog index 557b722..9fe89f4 100644 --- a/sim/riscv/ChangeLog +++ b/sim/riscv/ChangeLog @@ -1,3 +1,8 @@ +2021-05-15 Mike Frysinger <vapier@gentoo.org> + + * sim-main.c (mulhu): Change check to HAVE___INT128. + * config.in, configure: Regenerate. + 2021-05-12 Mike Frysinger <vapier@gentoo.org> * configure.ac: Delete SIM_AC_OPTION_ENVIRONMENT call. diff --git a/sim/riscv/config.in b/sim/riscv/config.in index c694fde..a7c8785 100644 --- a/sim/riscv/config.in +++ b/sim/riscv/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/riscv/configure b/sim/riscv/configure index c41f800..a3587bb 100755 --- a/sim/riscv/configure +++ b/sim/riscv/configure @@ -7498,6 +7498,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11202,7 +11212,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11205 "configure" +#line 11215 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11308,7 +11318,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11311 "configure" +#line 11321 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/riscv/sim-main.c b/sim/riscv/sim-main.c index 6a2904c..bb45ffe 100644 --- a/sim/riscv/sim-main.c +++ b/sim/riscv/sim-main.c @@ -603,7 +603,7 @@ execute_i (SIM_CPU *cpu, unsigned_word iw, const struct riscv_opcode *op) static unsigned64 mulhu (unsigned64 a, unsigned64 b) { -#if defined(__GNUC__) && defined(__SIZEOF_INT128__) +#ifdef HAVE___INT128 return ((__int128)a * b) >> 64; #else uint64_t t; diff --git a/sim/rl78/ChangeLog b/sim/rl78/ChangeLog index 8ffa97c..9fc92e1 100644 --- a/sim/rl78/ChangeLog +++ b/sim/rl78/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * Makefile.in: Update path. diff --git a/sim/rl78/config.in b/sim/rl78/config.in index c694fde..a7c8785 100644 --- a/sim/rl78/config.in +++ b/sim/rl78/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/rl78/configure b/sim/rl78/configure index 6e20768..a061dc6 100755 --- a/sim/rl78/configure +++ b/sim/rl78/configure @@ -7486,6 +7486,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11190,7 +11200,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11193 "configure" +#line 11203 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11296,7 +11306,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11299 "configure" +#line 11309 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/rx/ChangeLog b/sim/rx/ChangeLog index cbb3b47..db00b6e 100644 --- a/sim/rx/ChangeLog +++ b/sim/rx/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * gdb-if.c: Update include path. diff --git a/sim/rx/config.in b/sim/rx/config.in index 58ef4f3..8f61c0f 100644 --- a/sim/rx/config.in +++ b/sim/rx/config.in @@ -145,6 +145,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/rx/configure b/sim/rx/configure index 87bb429..d09bdb3 100755 --- a/sim/rx/configure +++ b/sim/rx/configure @@ -7491,6 +7491,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11195,7 +11205,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11198 "configure" +#line 11208 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11301,7 +11311,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11304 "configure" +#line 11314 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/sh/ChangeLog b/sim/sh/ChangeLog index be77f8c..4f687e8 100644 --- a/sim/sh/ChangeLog +++ b/sim/sh/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-14 Mike Frysinger <vapier@gentoo.org> * interp.c: Update include path. diff --git a/sim/sh/config.in b/sim/sh/config.in index c694fde..a7c8785 100644 --- a/sim/sh/config.in +++ b/sim/sh/config.in @@ -139,6 +139,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/sh/configure b/sim/sh/configure index 94c4f26..f2e93ca 100755 --- a/sim/sh/configure +++ b/sim/sh/configure @@ -7493,6 +7493,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11197,7 +11207,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11210 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11313,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11316 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/v850/ChangeLog b/sim/v850/ChangeLog index 2407ed6..2170657 100644 --- a/sim/v850/ChangeLog +++ b/sim/v850/ChangeLog @@ -1,3 +1,7 @@ +2021-05-16 Mike Frysinger <vapier@gentoo.org> + + * config.in, configure: Regenerate. + 2021-05-04 Mike Frysinger <vapier@gentoo.org> * configure: Regenerate. diff --git a/sim/v850/config.in b/sim/v850/config.in index 889d64c..74af5e5 100644 --- a/sim/v850/config.in +++ b/sim/v850/config.in @@ -160,6 +160,9 @@ /* Define to 1 if you have the <windows.h> header file. */ #undef HAVE_WINDOWS_H +/* Define to 1 if the system has the type `__int128'. */ +#undef HAVE___INT128 + /* Define to 1 if you have the `__setfpucw' function. */ #undef HAVE___SETFPUCW diff --git a/sim/v850/configure b/sim/v850/configure index d74f002..bc49f30 100755 --- a/sim/v850/configure +++ b/sim/v850/configure @@ -7506,6 +7506,16 @@ _ACEOF fi +ac_fn_c_check_type "$LINENO" "__int128" "ac_cv_type___int128" "$ac_includes_default" +if test "x$ac_cv_type___int128" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE___INT128 1 +_ACEOF + + +fi + ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h> #include <sys/socket.h> @@ -11210,7 +11220,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11213 "configure" +#line 11223 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11316,7 +11326,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11319 "configure" +#line 11329 "configure" #include "confdefs.h" #if HAVE_DLFCN_H |