diff options
Diffstat (limited to 'www/deno/files/patch-build_config_BUILDCONFIG.gn')
-rw-r--r-- | www/deno/files/patch-build_config_BUILDCONFIG.gn | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/www/deno/files/patch-build_config_BUILDCONFIG.gn b/www/deno/files/patch-build_config_BUILDCONFIG.gn index f59e9ac8013a..2f3820c1c6c1 100644 --- a/www/deno/files/patch-build_config_BUILDCONFIG.gn +++ b/www/deno/files/patch-build_config_BUILDCONFIG.gn @@ -1,5 +1,5 @@ ---- cargo-crates/v8-135.1.0/build/config/BUILDCONFIG.gn.orig 2024-05-21 18:07:39 UTC -+++ cargo-crates/v8-135.1.0/build/config/BUILDCONFIG.gn +--- cargo-crates/v8-137.2.1/build/config/BUILDCONFIG.gn.orig 2024-05-21 18:07:39 UTC ++++ cargo-crates/v8-137.2.1/build/config/BUILDCONFIG.gn @@ -136,7 +136,7 @@ declare_args() { is_official_build = false @@ -9,7 +9,7 @@ (current_cpu != "s390x" && current_cpu != "s390" && current_cpu != "ppc64" && current_cpu != "ppc" && current_cpu != "mips" && current_cpu != "mips64" && -@@ -234,6 +234,8 @@ if (host_toolchain == "") { +@@ -235,6 +235,8 @@ if (host_toolchain == "") { host_toolchain = "//build/toolchain/aix:$host_cpu" } else if (host_os == "zos") { host_toolchain = "//build/toolchain/zos:$host_cpu" @@ -18,7 +18,7 @@ } else { assert(false, "Unsupported host_os: $host_os") } -@@ -278,6 +280,8 @@ if (target_os == "android") { +@@ -279,6 +281,8 @@ if (target_os == "android") { _default_toolchain = "//build/toolchain/aix:$target_cpu" } else if (target_os == "zos") { _default_toolchain = "//build/toolchain/zos:$target_cpu" @@ -27,7 +27,7 @@ } else { assert(false, "Unsupported target_os: $target_os") } -@@ -312,11 +316,14 @@ is_ios = current_os == "ios" +@@ -313,12 +317,14 @@ is_android = current_os == "android" is_chromeos = current_os == "chromeos" is_fuchsia = current_os == "fuchsia" is_ios = current_os == "ios" @@ -35,10 +35,10 @@ +is_linux = current_os == "linux" || current_os == "freebsd" is_mac = current_os == "mac" is_nacl = current_os == "nacl" + is_wasm = current_os == "emscripten" is_watchos = current_os == "watchos" is_win = current_os == "win" || current_os == "winuwp" +is_freebsd = current_os == "freebsd" -+is_openbsd = current_os == "openbsd" +is_bsd = is_freebsd is_apple = is_ios || is_mac || is_watchos |