mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 14:52:16 +00:00
2d7214c6f8
Differential Revision: https://phabricator.services.mozilla.com/D203067
11 lines
329 B
Bash
Executable File
11 lines
329 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$*" in
|
|
"--show-sdk-path --sdk iphoneos"|"--show-sdk-path -sdk iphoneos"|"--show-sdk-path --sdk iphonesimulator"|"--show-sdk-path -sdk iphonesimulator")
|
|
;;
|
|
*)
|
|
echo We only expect this to be executed by third_party/rust/cc/src/lib.rs or rustc when targetting iOS >&2
|
|
exit 1
|
|
esac
|
|
echo $IPHONEOS_SDK_DIR
|