diff options
author | 2025-03-17 13:57:59 -0700 | |
---|---|---|
committer | 2025-03-17 13:57:59 -0700 | |
commit | b546854edbf9f5c26542983bbe0ae5af5e654204 (patch) | |
tree | 503603808eb186479a05739f210a331c194e5de6 /cc | |
parent | 2a75c81fbe73df0a0a5b5f05227251c4ace4e833 (diff) | |
parent | 8f607c7943e80faea5fec30f312587ec6a06ea83 (diff) |
Merge "Add support for ARMv9.3-A and ARMv9.4-A." into main
Diffstat (limited to 'cc')
-rw-r--r-- | cc/config/arm64_device.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cc/config/arm64_device.go b/cc/config/arm64_device.go index 45b15809f..25edb798d 100644 --- a/cc/config/arm64_device.go +++ b/cc/config/arm64_device.go @@ -53,6 +53,16 @@ var ( "-mbranch-protection=standard", "-fno-stack-protector", }, + "armv9-3a": []string{ + "-march=armv9.3-a", + "-mbranch-protection=standard", + "-fno-stack-protector", + }, + "armv9-4a": []string{ + "-march=armv9.4-a", + "-mbranch-protection=standard", + "-fno-stack-protector", + }, } arm64Ldflags = []string{ |