goose

(★ 2,715)

Goose Swift proof-of-concept README

File Explorer

  • .gitignore
  • README.md
  • recovery-todo.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

rustup target

View Details ▼

Modify a toolchain's supported targets.
Without the `--toolchain` option `rustup` will use the default toolchain. See `rustup help toolchain` for more information about toolchains.

rustup target add --toolchain {{toolchain}} {{target}}

Add a target to a toolchain:

rustup target remove --toolchain {{toolchain}} {{target}}

Remove a target from a toolchain:

rustup target list --toolchain {{toolchain}}

List available and installed targets for a toolchain:

🔍

rustup

View Details ▼

Install, manage, and update Rust toolchains.
Some subcommands, such as `toolchain`, `target`, `update`, etc. have their own usage documentation.

rustup install nightly

Install the nightly toolchain for your system:

rustup default nightly

Switch the default toolchain to nightly so that the `cargo` and `rustc` commands will use it:

rustup override set nightly

Use the nightly toolchain when inside the current project but leave global settings unchanged:

🔍

xcodebuild

View Details ▼

Build Xcode projects.

xcodebuild -workspace {{workspace_name.workspace}} -scheme {{scheme_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}

Build workspace:

xcodebuild -target {{target_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}

Build project:

xcodebuild -showsdks

Show SDKs:

🔍

xcrun

View Details ▼

Run or locate development tools and properties.

xcrun {{tool}} {{arguments}}

Find and run a tool from the active developer directory:

xcrun {{tool}} {{arguments}} --verbose

Show verbose output:

xcrun --sdk {{sdk_name}}

Find a tool for a given SDK:

// repository documentation