2021-10-15 04:08:34 +01:00
|
|
|
# xcrun
|
|
|
|
|
|
|
|
> Run or locate development tools and properties.
|
2024-01-31 10:20:27 +00:00
|
|
|
> More information: <https://keith.github.io/xcode-man-pages/xcrun.1.html>.
|
2021-10-15 04:08:34 +01:00
|
|
|
|
|
|
|
- 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}}`
|
|
|
|
|
2023-06-10 16:41:30 +01:00
|
|
|
- Display help:
|
|
|
|
|
|
|
|
`xcrun --help`
|
2024-01-30 04:55:24 +00:00
|
|
|
|
|
|
|
- Display version:
|
|
|
|
|
|
|
|
`xcrun --version`
|