diff options
author | Nick Clifton <nickc@redhat.com> | 2025-01-17 10:17:57 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2025-01-17 10:18:30 +0000 |
commit | 2c4b5f54b8432bb442f95748cd60fcdcc48f239b (patch) | |
tree | b9b20cafbf8639efa8c7e98eadc1e69c545ecdab /config.guess | |
parent | b88282d5738cd239f67be00d4d9b48d6afda78ca (diff) | |
download | fsf-binutils-gdb-2c4b5f54b8432bb442f95748cd60fcdcc48f239b.zip fsf-binutils-gdb-2c4b5f54b8432bb442f95748cd60fcdcc48f239b.tar.gz fsf-binutils-gdb-2c4b5f54b8432bb442f95748cd60fcdcc48f239b.tar.bz2 |
Sync config.guess and config.sub with latest versions from the config project.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/config.guess b/config.guess index f6d217a..48a6846 100755 --- a/config.guess +++ b/config.guess @@ -4,7 +4,7 @@ # shellcheck disable=SC2006,SC2268 # see below for rationale -timestamp='2024-01-01' +timestamp='2024-07-27' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -123,7 +123,7 @@ set_cc_for_build() { dummy=$tmp/dummy case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in ,,) echo "int x;" > "$dummy.c" - for driver in cc gcc c89 c99 ; do + for driver in cc gcc c17 c99 c89 ; do if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then CC_FOR_BUILD=$driver break @@ -634,7 +634,8 @@ EOF sed 's/^ //' << EOF > "$dummy.c" #include <sys/systemcfg.h> - main() + int + main () { if (!__power_pc()) exit(1); @@ -718,7 +719,8 @@ EOF #include <stdlib.h> #include <unistd.h> - int main () + int + main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); @@ -1621,6 +1623,7 @@ cat > "$dummy.c" <<EOF #endif #endif #endif +int main () { #if defined (sony) |