try to reduce memory usage on aarch64:
 - reduce memory use by retaining fewer names within compilation artifacts

Index: src/bootstrap/src/bin/rustc.rs
--- src/bootstrap/src/bin/rustc.rs.orig
+++ src/bootstrap/src/bin/rustc.rs
@@ -160,6 +160,13 @@ fn main() {
         {
             cmd.arg("-Ztls-model=initial-exec");
         }
+
+        if target.unwrap().contains("aarch64-unknown-openbsd")
+            && crate_name == Some("rustc")
+        {
+            cmd.arg("-Z").arg("fewer-names");
+        }
+
     } else {
         // Find any host flags that were passed by bootstrap.
         // The flags are stored in a RUSTC_HOST_FLAGS variable, separated by spaces.
