Skip to content

Commit b03b881

Browse files
committed
DELETEME
1 parent cb32870 commit b03b881

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

rust_build_utils/darwin_build_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def assert_version(
8080
config.rust_target, binary, config.debug
8181
)
8282
load_commands = rutils.run_command_with_output(
83-
["otool", "-l", binary_path], hide_output=True
83+
["otool", "-l", binary_path], hide_output=False
8484
)
8585
deployment_assert = GLOBAL_CONFIG[config.target_os]["archs"][config.arch][
8686
"deployment_assert"

rust_build_utils/rust_utils_config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,14 @@
136136
"archs": {
137137
"aarch64": {
138138
"rust_target": "aarch64-apple-ios-sim",
139-
"deployment_assert": ("LC_VERSION_MIN_IPHONEOS", "version", "10.0"),
139+
# "deployment_assert": ("LC_VERSION_MIN_IPHONEOS", "version", "10.0"),
140140
"env": {
141141
"IPHONEOS_DEPLOYMENT_TARGET": (["10.0"], "set"),
142142
},
143143
},
144144
"x86_64": {
145145
"rust_target": "x86_64-apple-ios",
146-
"deployment_assert": ("LC_VERSION_MIN_IPHONEOS", "version", "10.0"),
146+
# "deployment_assert": ("LC_VERSION_MIN_IPHONEOS", "version", "10.0"),
147147
"env": {
148148
"IPHONEOS_DEPLOYMENT_TARGET": (["10.0"], "set"),
149149
},
@@ -177,14 +177,14 @@
177177
"archs": {
178178
"aarch64": {
179179
"rust_target": "aarch64-apple-tvos-sim",
180-
"deployment_assert": ("LC_VERSION_MIN_TVOS", "version", "10.0"),
180+
# "deployment_assert": ("LC_VERSION_MIN_TVOS", "version", "10.0"),
181181
"env": {
182182
"TVOS_DEPLOYMENT_TARGET": (["10.0"], "set"),
183183
},
184184
},
185185
"x86_64": {
186186
"rust_target": "x86_64-apple-tvos",
187-
"deployment_assert": ("LC_VERSION_MIN_TVOS", "version", "10.0"),
187+
# "deployment_assert": ("LC_VERSION_MIN_TVOS", "version", "10.0"),
188188
"env": {
189189
"TVOS_DEPLOYMENT_TARGET": (["10.0"], "set"),
190190
},

0 commit comments

Comments
 (0)