Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
14 lines
625 B
Plaintext
14 lines
625 B
Plaintext
--- build/config/v8_target_cpu.gni.orig 2022-02-07 13:39:41 UTC
|
|
+++ build/config/v8_target_cpu.gni
|
|
@@ -36,6 +36,10 @@ declare_args() {
|
|
if (v8_target_cpu == "") {
|
|
if (current_toolchain == "//build/toolchain/linux:clang_x64_v8_arm64") {
|
|
v8_target_cpu = "arm64"
|
|
+ } else if (current_toolchain == "//build/toolchain/openbsd:clang_arm64") {
|
|
+ v8_target_cpu = "arm64"
|
|
+ } else if (current_toolchain == "//build/toolchain/freebsd:clang_arm64") {
|
|
+ v8_target_cpu = "arm64"
|
|
} else if (current_toolchain == "//build/toolchain/linux:clang_x86_v8_arm") {
|
|
v8_target_cpu = "arm"
|
|
} else if (current_toolchain ==
|