aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Oliva <oliva@adacore.com>2025-07-07 21:25:18 -0300
committerAlexandre Oliva <oliva@gnu.org>2025-07-07 21:25:18 -0300
commite46933d3cc82b644467a47dd90c7169efa5c2158 (patch)
tree79cfff10c4666d404dd3b46dcb589656a3315774
parentbbf79f33683f59fd44f2455b8812640d0890d2f2 (diff)
downloadgcc-e46933d3cc82b644467a47dd90c7169efa5c2158.zip
gcc-e46933d3cc82b644467a47dd90c7169efa5c2158.tar.gz
gcc-e46933d3cc82b644467a47dd90c7169efa5c2158.tar.bz2
[vxworks] add aarch64 to vxworks-dummy.h set
It's not strictly necessary, because nothing defined therein is referenced by anything in gcc/config/aarch64, but it was an oversight to not have it there. for gcc/ChangeLog * config.gcc (vxworks-dummy.h): Add to aarch64-*-* as well.
-rw-r--r--gcc/config.gcc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc
index a6f6efe..5953ace 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -5894,7 +5894,7 @@ esac
# distinguish VxWorks variants such as VxWorks 7 or 64).
case ${target} in
-arm*-*-* | i[34567]86-*-* | mips*-*-* | powerpc*-*-* | sh*-*-* \
+aarch64*-*-* | arm*-*-* | i[34567]86-*-* | mips*-*-* | powerpc*-*-* | sh*-*-* \
| sparc*-*-* | x86_64-*-*)
tm_file="vxworks-dummy.h ${tm_file}"
;;