From 037a9d30859d4be491673325d57d23e1f97d99f6 Mon Sep 17 00:00:00 2001 From: shreyasm-dev <62489066+shreyasm-dev@users.noreply.github.com> Date: Thu, 14 Oct 2021 22:08:34 -0500 Subject: [PATCH] xcrun: add page (#6618) --- pages/osx/xcrun.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/osx/xcrun.md diff --git a/pages/osx/xcrun.md b/pages/osx/xcrun.md new file mode 100644 index 0000000000..312f0c5483 --- /dev/null +++ b/pages/osx/xcrun.md @@ -0,0 +1,28 @@ +# xcrun + +> Run or locate development tools and properties. +> More information: . + +- Find and run a tool from the active developer directory: + +`xcrun {{tool}} {{arguments}}` + +- Show verbose output: + +`xcrun {{tool}} {{arguments}} --verbose` + +- Find a tool for a given SDK: + +`xcrun --sdk {{sdk_name}}` + +- Find a tool for a given toolchain: + +`xcrun --toolchain {{name}}` + +- Display help: + +`xcrun --help` + +- Display version: + +`xcrun --version`