mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
Changes: https://github.com/electron/electron/releases/tag/v4.2.12 Changes: https://github.com/electron/electron/releases/tag/v4.2.11 Changes: https://github.com/electron/electron/releases/tag/v4.2.10 Submitted by: maintainer (via github)
11 lines
359 B
C++
11 lines
359 B
C++
--- tools/gn/util/sys_info.cc.orig 2019-08-26 19:07:16 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";
|
|
}
|