diff options
author | 2025-03-17 13:57:59 -0700 | |
---|---|---|
committer | 2025-03-17 13:57:59 -0700 | |
commit | b546854edbf9f5c26542983bbe0ae5af5e654204 (patch) | |
tree | 503603808eb186479a05739f210a331c194e5de6 /rust | |
parent | 2a75c81fbe73df0a0a5b5f05227251c4ace4e833 (diff) | |
parent | 8f607c7943e80faea5fec30f312587ec6a06ea83 (diff) |
Merge "Add support for ARMv9.3-A and ARMv9.4-A." into main
Diffstat (limited to 'rust')
-rw-r--r-- | rust/config/arm64_device.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/rust/config/arm64_device.go b/rust/config/arm64_device.go index 94a445700..efcd56a7b 100644 --- a/rust/config/arm64_device.go +++ b/rust/config/arm64_device.go @@ -45,6 +45,14 @@ var ( "-Z branch-protection=bti,pac-ret", "-Z stack-protector=none", }, + "armv9-3a": []string{ + "-Z branch-protection=bti,pac-ret", + "-Z stack-protector=none", + }, + "armv9-4a": []string{ + "-Z branch-protection=bti,pac-ret", + "-Z stack-protector=none", + }, } ) |