aboutsummaryrefslogtreecommitdiff
path: root/packages/gcc/12.2.0/0005-Allow-default-libc-to-be-specified-to-configure.patch
diff options
context:
space:
mode:
authorChris Packham <judge.packham@gmail.com>2023-05-09 20:14:51 +1200
committerChris Packham <judge.packham@gmail.com>2023-05-14 10:34:29 +1200
commit8e55ab0607c01fc8a443bdac41c2d947db8830fb (patch)
tree501d62d2b1b89a64374d41e4f90e318a7669a689 /packages/gcc/12.2.0/0005-Allow-default-libc-to-be-specified-to-configure.patch
parent2282a97e3c3eea29cf45bd3757fb93b83f17f907 (diff)
downloadcrosstool-ng-8e55ab0607c01fc8a443bdac41c2d947db8830fb.tar.gz
crosstool-ng-8e55ab0607c01fc8a443bdac41c2d947db8830fb.tar.bz2
crosstool-ng-8e55ab0607c01fc8a443bdac41c2d947db8830fb.zip
gcc: Add 12.3.0
Add gcc 12.3.0 and regenerate patches against the new version. https://gcc.gnu.org/pipermail/gcc-announce/2023/000176.html https://gcc.gnu.org/gcc-12/changes.html Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'packages/gcc/12.2.0/0005-Allow-default-libc-to-be-specified-to-configure.patch')
-rw-r--r--packages/gcc/12.2.0/0005-Allow-default-libc-to-be-specified-to-configure.patch134
1 files changed, 0 insertions, 134 deletions
diff --git a/packages/gcc/12.2.0/0005-Allow-default-libc-to-be-specified-to-configure.patch b/packages/gcc/12.2.0/0005-Allow-default-libc-to-be-specified-to-configure.patch
deleted file mode 100644
index 113a982a..00000000
--- a/packages/gcc/12.2.0/0005-Allow-default-libc-to-be-specified-to-configure.patch
+++ /dev/null
@@ -1,134 +0,0 @@
-From e55524baedbf2dc94b5159373c2b71049bdde1a8 Mon Sep 17 00:00:00 2001
-From: Keith Packard <keithp@keithp.com>
-Date: Fri, 2 Sep 2022 23:07:05 -0700
-Subject: [PATCH 5/9] Allow default libc to be specified to configure
-
-The default C library is normally computed based on the target
-triplet. However, for embedded systems, it can be useful to leave the
-triplet alone while changing which C library is used by default. Other
-C libraries may still be available on the system so the compiler and
-can be used by specifying suitable include and library paths at build
-time.
-
-If an unknown --with-default-libc= value is provided, emit an error
-and stop.
-
-Signed-off-by: Keith Packard <keithp@keithp.com>
----
- gcc/config.gcc | 48 ++++++++++++++++++++++++++++++++++++++++--------
- gcc/configure.ac | 4 ++++
- 2 files changed, 44 insertions(+), 8 deletions(-)
-
---- a/gcc/config.gcc
-+++ b/gcc/config.gcc
-@@ -648,6 +648,8 @@
- # Common C libraries.
- tm_defines="$tm_defines LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 LIBC_MUSL=4"
-
-+default_libc=""
-+
- # 32-bit x86 processors supported by --with-arch=. Each processor
- # MUST be separated by exactly one space.
- x86_archs="athlon athlon-4 athlon-fx athlon-mp athlon-tbird \
-@@ -854,16 +856,16 @@
- esac
- case $target in
- *-*-*android*)
-- tm_defines="$tm_defines DEFAULT_LIBC=LIBC_BIONIC"
-+ default_libc=LIBC_BIONIC
- ;;
- *-*-*uclibc* | *-*-uclinuxfdpiceabi)
-- tm_defines="$tm_defines DEFAULT_LIBC=LIBC_UCLIBC"
-+ default_libc=LIBC_UCLIBC
- ;;
- *-*-*musl*)
-- tm_defines="$tm_defines DEFAULT_LIBC=LIBC_MUSL"
-+ default_libc=LIBC_MUSL
- ;;
- *)
-- tm_defines="$tm_defines DEFAULT_LIBC=LIBC_GLIBC"
-+ default_libc=LIBC_GLIBC
- ;;
- esac
- # Assume that glibc or uClibc or Bionic are being used and so __cxa_atexit
-@@ -956,7 +958,8 @@
- case ${enable_threads} in
- "" | yes | posix) thread_file='posix' ;;
- esac
-- tm_defines="$tm_defines DEFAULT_LIBC=LIBC_UCLIBC SINGLE_LIBC"
-+ tm_defines="$tm_defines SINGLE_LIBC"
-+ default_libc=LIBC_UCLIBC
- ;;
- *-*-rdos*)
- use_gcc_stdint=wrap
-@@ -1606,13 +1609,13 @@
-
- case ${target} in
- csky-*-linux-gnu*)
-- tm_defines="$tm_defines DEFAULT_LIBC=LIBC_GLIBC"
-+ default_libc=LIBC_GLIBC
- # Force .init_array support. The configure script cannot always
- # automatically detect that GAS supports it, yet we require it.
- gcc_cv_initfini_array=yes
- ;;
- csky-*-linux-uclibc*)
-- tm_defines="$tm_defines DEFAULT_LIBC=LIBC_UCLIBC"
-+ default_libc=LIBC_UCLIBC
- default_use_cxa_atexit=no
- ;;
- *)
-@@ -3065,7 +3068,7 @@
- tmake_file="${tmake_file} t-linux rs6000/t-linux64 rs6000/t-fprules rs6000/t-ppccomm"
- tmake_file="${tmake_file} rs6000/t-vxworks"
-
-- tm_defines="$tm_defines DEFAULT_LIBC=LIBC_GLIBC"
-+ default_libc=LIBC_GLIBC
- extra_objs="$extra_objs linux.o rs6000-linux.o"
- ;;
- powerpc-wrs-vxworks*)
-@@ -5915,3 +5918,32 @@
- fi
- ;;
- esac
-+
-+case "${with_default_libc}" in
-+glibc)
-+ default_libc=LIBC_GLIBC
-+ ;;
-+uclibc)
-+ default_libc=LIBC_UCLIBC
-+ ;;
-+bionic)
-+ default_libc=LIBC_BIONIC
-+ ;;
-+musl)
-+ default_libc=LIBC_MUSL
-+ ;;
-+"")
-+ ;;
-+*)
-+ echo "Unknown libc in --with-default-libc=$with_default_libc" 1>&2
-+ exit 1
-+ ;;
-+esac
-+
-+case "$default_libc" in
-+"")
-+ ;;
-+*)
-+ tm_defines="$tm_defines DEFAULT_LIBC=$default_libc"
-+ ;;
-+esac
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -2481,6 +2481,10 @@
- fi
- AC_SUBST(inhibit_libc)
-
-+AC_ARG_WITH(default-libc,
-+ [AS_HELP_STRING([--with-default-libc],
-+ [Use specified default C library])])
-+
- # When building gcc with a cross-compiler, we need to adjust things so
- # that the generator programs are still built with the native compiler.
- # Also, we cannot run fixincludes.