diff options
author | Chris Packham <judge.packham@gmail.com> | 2022-07-01 16:49:24 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-07-11 19:50:02 +1200 |
commit | 165502587397fa25558ecc89ce32cddb561104da (patch) | |
tree | 4b6c4a295f36e4c79016107529098f8e8dcfccb0 /packages/gcc/10.3.0/0019-AArch64-Fix-build-issue-with-aarch64-builtins.c-on-M.patch | |
parent | f5e0d33ab46086c88ce800bb80be547c046a0efa (diff) | |
download | crosstool-ng-165502587397fa25558ecc89ce32cddb561104da.tar.gz crosstool-ng-165502587397fa25558ecc89ce32cddb561104da.tar.bz2 crosstool-ng-165502587397fa25558ecc89ce32cddb561104da.zip |
gcc: Add gcc 10.4.0
https://gcc.gnu.org/pipermail/gcc-announce/2022/000173.html
Add GCC 10.4.0 and regenerate the ct-ng patches. The
powerpc-Fix-asm-machine-directive-for-some-CPUs patch is dropped as the
change was applied upstream (and subsequently refactored).
Closes #1777
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'packages/gcc/10.3.0/0019-AArch64-Fix-build-issue-with-aarch64-builtins.c-on-M.patch')
-rw-r--r-- | packages/gcc/10.3.0/0019-AArch64-Fix-build-issue-with-aarch64-builtins.c-on-M.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/packages/gcc/10.3.0/0019-AArch64-Fix-build-issue-with-aarch64-builtins.c-on-M.patch b/packages/gcc/10.3.0/0019-AArch64-Fix-build-issue-with-aarch64-builtins.c-on-M.patch deleted file mode 100644 index 00011692..00000000 --- a/packages/gcc/10.3.0/0019-AArch64-Fix-build-issue-with-aarch64-builtins.c-on-M.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 8ae8c6bba601ce9ae8a3d54776ef934fb0a7986d Mon Sep 17 00:00:00 2001 -From: Kumar Gala <kumar.gala@linaro.org> -Date: Wed, 11 Nov 2020 08:09:50 -0600 -Subject: [PATCH] [AArch64] Fix build issue with aarch64-builtins.c on MacOS X - host - -When building w/clang on MacOS X we get the following error: - -gcc/config/aarch64/aarch64-builtins.c:1231:3: error: expected expression -AARCH64_INIT_MEMTAG_BUILTINS_DECL (IRG, irg, irg, fntype); - -Fix this by adding '-std=gnu++11' to the compile line. - -Signed-off-by: Kumar Gala <kumar.gala@linaro.org> ---- - gcc/config/aarch64/t-aarch64 | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/gcc/config/aarch64/t-aarch64 -+++ b/gcc/config/aarch64/t-aarch64 -@@ -41,7 +41,7 @@ - $(srcdir)/config/aarch64/aarch64-simd-builtins.def \ - $(srcdir)/config/aarch64/aarch64-simd-builtin-types.def \ - aarch64-builtin-iterators.h -- $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ -+ $(COMPILER) -std=gnu++11 -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ - $(srcdir)/config/aarch64/aarch64-builtins.c - - aarch64-sve-builtins.o: $(srcdir)/config/aarch64/aarch64-sve-builtins.cc \ |