Skip to content

Commit

Permalink
DELETEME
Browse files Browse the repository at this point in the history
  • Loading branch information
matislovas committed Dec 23, 2024
1 parent cb32870 commit 63b4e5d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion rust_build_utils/darwin_build_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def assert_version(
config.rust_target, binary, config.debug
)
load_commands = rutils.run_command_with_output(
["otool", "-l", binary_path], hide_output=True
["otool", "-l", binary_path], hide_output=False
)
deployment_assert = GLOBAL_CONFIG[config.target_os]["archs"][config.arch][
"deployment_assert"
Expand Down
8 changes: 4 additions & 4 deletions rust_build_utils/rust_utils_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,14 @@
"archs": {
"aarch64": {
"rust_target": "aarch64-apple-ios-sim",
"deployment_assert": ("LC_VERSION_MIN_IPHONEOS", "version", "10.0"),
"deployment_assert": (),
"env": {
"IPHONEOS_DEPLOYMENT_TARGET": (["10.0"], "set"),
},
},
"x86_64": {
"rust_target": "x86_64-apple-ios",
"deployment_assert": ("LC_VERSION_MIN_IPHONEOS", "version", "10.0"),
"deployment_assert": (),
"env": {
"IPHONEOS_DEPLOYMENT_TARGET": (["10.0"], "set"),
},
Expand Down Expand Up @@ -177,14 +177,14 @@
"archs": {
"aarch64": {
"rust_target": "aarch64-apple-tvos-sim",
"deployment_assert": ("LC_VERSION_MIN_TVOS", "version", "10.0"),
"deployment_assert": (),
"env": {
"TVOS_DEPLOYMENT_TARGET": (["10.0"], "set"),
},
},
"x86_64": {
"rust_target": "x86_64-apple-tvos",
"deployment_assert": ("LC_VERSION_MIN_TVOS", "version", "10.0"),
"deployment_assert": (),
"env": {
"TVOS_DEPLOYMENT_TARGET": (["10.0"], "set"),
},
Expand Down

0 comments on commit 63b4e5d

Please sign in to comment.