mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 22:30:38 -04:00
11 lines
359 B
C++
11 lines
359 B
C++
--- tools/gn/util/sys_info.cc.orig 2019-04-30 22:29:37 UTC
|
|
+++ tools/gn/util/sys_info.cc
|
|
@@ -28,6 +28,8 @@ std::string OperatingSystemArchitecture() {
|
|
arch = "x86";
|
|
} else if (arch == "amd64") {
|
|
arch = "x86_64";
|
|
+ } else if (arch == "arm64") {
|
|
+ arch = "aarch64";
|
|
} else if (std::string(info.sysname) == "AIX") {
|
|
arch = "ppc64";
|
|
}
|