- Fix aarch64 builds with ./deno-v8-arm.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:javascript/deno?expand=0&rev=253
This commit is contained in:
Soc Virnyl Estela 2024-11-10 12:47:33 +00:00 committed by Git OBS Bridge
parent be9029c515
commit 0a04f15f5f
3 changed files with 30 additions and 1 deletions

23
deno-v8-arm.patch Normal file
View File

@ -0,0 +1,23 @@
--- a/rusty_v8/build.rs.orig 2024-06-27 14:26:40.281226961 +0200
+++ b/rusty_v8/build.rs 2024-06-27 14:28:10.388618455 +0200
@@ -200,16 +200,12 @@ fn build_v8(is_asan: bool) {
// cross-compilation setup
if target_arch == "aarch64" {
gn_args.push(r#"target_cpu="arm64""#.to_string());
- gn_args.push("use_sysroot=true".to_string());
- maybe_install_sysroot("arm64");
- maybe_install_sysroot("amd64");
+ gn_args.push("use_sysroot=false".to_string());
}
if target_arch == "arm" {
gn_args.push(r#"target_cpu="arm""#.to_string());
gn_args.push(r#"v8_target_cpu="arm""#.to_string());
- gn_args.push("use_sysroot=true".to_string());
- maybe_install_sysroot("i386");
- maybe_install_sysroot("arm");
+ gn_args.push("use_sysroot=false".to_string());
}
let target_triple = env::var("TARGET").unwrap();

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Sun Nov 10 12:46:52 UTC 2024 - Soc Virnyl Estela <uncomfyhalomacro@opensuse.org>
- Fix aarch64 builds with ./deno-v8-arm.patch
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Nov 10 12:18:13 UTC 2024 - Soc Virnyl Estela <uncomfyhalomacro@opensuse.org> Sun Nov 10 12:18:13 UTC 2024 - Soc Virnyl Estela <uncomfyhalomacro@opensuse.org>

View File

@ -31,6 +31,7 @@ Source0: %{name}-%{version}.tar.zst
Source1: registry.tar.zst Source1: registry.tar.zst
Source2: rusty_v8-%{_v8_version}.tar.zst Source2: rusty_v8-%{_v8_version}.tar.zst
Patch1: compiler-rt-adjust-paths.patch Patch1: compiler-rt-adjust-paths.patch
Patch2: deno-v8-arm.patch
BuildRequires: cargo-packaging BuildRequires: cargo-packaging
BuildRequires: clang BuildRequires: clang
# needed by `libz-ng-sys` after 1.36.1 # needed by `libz-ng-sys` after 1.36.1
@ -101,7 +102,7 @@ updated with the --reload flag.
%autosetup -a2 -p1 -n %{name} %autosetup -a2 -p1 -n %{name}
# Extract vendor source # Extract vendor source
tar xvf %{SOURCE1} tar xf %{SOURCE1}
# Now we patch V8 or %%{SOURCE2} # Now we patch V8 or %%{SOURCE2}
echo -e "\n[patch.crates-io]\nv8 = { path = './rusty_v8' }" >> Cargo.toml echo -e "\n[patch.crates-io]\nv8 = { path = './rusty_v8' }" >> Cargo.toml
pushd rusty_v8 pushd rusty_v8