mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-21 15:04:33 -05:00
feat: support iOS build
This commit is contained in:
parent
a0aa26d648
commit
e1dcc84cbc
1 changed files with 14 additions and 0 deletions
14
build.rs
14
build.rs
|
@ -181,6 +181,20 @@ fn build_v8() {
|
|||
maybe_install_sysroot("amd64");
|
||||
};
|
||||
|
||||
if target_triple == "aarch64-apple-ios" {
|
||||
gn_args.push(r#"v8_target_cpu="arm64""#.to_string());
|
||||
gn_args.push("treat_warnings_as_errors=false".to_string());
|
||||
gn_args.push("ios_deployment_target=\"10\"".to_string());
|
||||
gn_args.push("is_component_build=false".to_string());
|
||||
gn_args.push("is_debug=false".to_string());
|
||||
gn_args.push("target_cpu=\"arm64\"".to_string());
|
||||
gn_args.push("target_os=\"ios\"".to_string());
|
||||
gn_args.push("use_custom_libcxx=false".to_string());
|
||||
gn_args.push("v8_enable_pointer_compression=false".to_string());
|
||||
gn_args.push("ios_enable_code_signing=false".to_string());
|
||||
gn_args.push("enable_ios_bitcode=false".to_string());
|
||||
}
|
||||
|
||||
if target_triple == "aarch64-linux-android" {
|
||||
gn_args.push(r#"v8_target_cpu="arm64""#.to_string());
|
||||
gn_args.push(r#"target_os="android""#.to_string());
|
||||
|
|
Loading…
Reference in a new issue