diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-04-16 11:55:55 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-04-16 12:19:09 +0800 |
commit | ddfd479b913d1cd764b925ad5edb812b84b4b34f (patch) | |
tree | 140f5df42566c726a4dd529d6718eb61c8717b7c /lang/v8-beta/files/patch-build_config_rust.gni | |
parent | lang/v8: Update to 10.0.139.8 (diff) |
lang/v8-beta: Update to 10.1.124.1
- Use v8 tarball from GitHub mirror
Changes: https://chromium.googlesource.com/v8/v8.git/+log/refs/heads/10.1-lkgr
Diffstat (limited to 'lang/v8-beta/files/patch-build_config_rust.gni')
-rw-r--r-- | lang/v8-beta/files/patch-build_config_rust.gni | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lang/v8-beta/files/patch-build_config_rust.gni b/lang/v8-beta/files/patch-build_config_rust.gni index 522727d59a1a..d61569e43549 100644 --- a/lang/v8-beta/files/patch-build_config_rust.gni +++ b/lang/v8-beta/files/patch-build_config_rust.gni @@ -1,11 +1,14 @@ ---- build/config/rust.gni.orig 2022-01-23 11:59:03 UTC +--- build/config/rust.gni.orig 2022-04-04 20:12:27 UTC +++ build/config/rust.gni -@@ -66,7 +66,7 @@ toolchain_has_official_rust = +@@ -84,9 +84,9 @@ android_toolchain_supports_platform = (!is_nacl && (is_android && (current_cpu == "arm" || current_cpu == "arm64" || current_cpu == "x64" || current_cpu == "x86"))) || - (is_linux && current_cpu == "x64") + (current_os == "linux" && current_cpu == "x64") + chromium_toolchain_supports_platform = +- !is_nacl && is_linux && current_cpu == "x64" ++ !is_nacl && current_os == "linux" && current_cpu == "x64" toolchain_has_rust = - enable_rust && (toolchain_has_official_rust || rust_sysroot_absolute != "") + enable_rust && |