diff options
author | Nick Clifton <nickc@redhat.com> | 2024-11-05 13:04:36 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2024-11-05 13:12:07 +0000 |
commit | 6543a214485c0a722152e34de37424f9a0104bbb (patch) | |
tree | f74b781341df5f8a3a37e912eaf47c3481d3cfa9 | |
parent | f31b72b75ef7cde61469c774162db7b1cc4c3d03 (diff) | |
download | gcc-6543a214485c0a722152e34de37424f9a0104bbb.zip gcc-6543a214485c0a722152e34de37424f9a0104bbb.tar.gz gcc-6543a214485c0a722152e34de37424f9a0104bbb.tar.bz2 |
Deprecate the ARM simulator
The ARM simulator is no longer able to simulator modern ARM cores, so it
is being deprecated. Once this change has been active for a while - and
assuming that no problems have been found - the ARm simulator codebase
will be removed.
2024-11-05 Nick Clifton <nickc@redhat.com>
* configure.ac: Add sim to noconfigdirs for ARM targets.
* configure: Regenerate.
-rwxr-xr-x | configure | 9 | ||||
-rw-r--r-- | configure.ac | 9 |
2 files changed, 16 insertions, 2 deletions
@@ -3766,6 +3766,13 @@ case "${target}" in ;; esac +# The ARM simulator has been deprecated for all ARM targets. +case "${target}" in + arm*-*-*) + noconfigdirs="$noconfigdirs sim" + ;; +esac + case "${target}" in *-*-chorusos) ;; @@ -3777,7 +3784,7 @@ case "${target}" in ;; arm-*-darwin*) noconfigdirs="$noconfigdirs ld gas gdb gprof" - noconfigdirs="$noconfigdirs sim target-rda" + noconfigdirs="$noconfigdirs target-rda" ;; powerpc-*-darwin*) noconfigdirs="$noconfigdirs ld gas gdb gprof" diff --git a/configure.ac b/configure.ac index a688e9e2..25419a1 100644 --- a/configure.ac +++ b/configure.ac @@ -991,6 +991,13 @@ case "${target}" in ;; esac +# The ARM simulator has been deprecated for all ARM targets. +case "${target}" in + arm*-*-*) + noconfigdirs="$noconfigdirs sim" + ;; +esac + case "${target}" in *-*-chorusos) ;; @@ -1002,7 +1009,7 @@ case "${target}" in ;; arm-*-darwin*) noconfigdirs="$noconfigdirs ld gas gdb gprof" - noconfigdirs="$noconfigdirs sim target-rda" + noconfigdirs="$noconfigdirs target-rda" ;; powerpc-*-darwin*) noconfigdirs="$noconfigdirs ld gas gdb gprof" |