goose

(★ 2,715)

Goose Swift proof-of-concept README

파일 탐색기

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

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

rustup target

설명 보기 ▼

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

설명 보기 ▼

Rust 툴체인을 설치, 관리 및 업데이트.
`toolchain`, `target`, `update` 등의 일부 하위 명령에는 자체 사용 설명서가 있습니다.
더 많은 정보: <https://rust-lang.github.io/rustup/>.

rustup install nightly

시스템에 nightly 툴체인 설치:

rustup default nightly

기본 툴체인을 nightly로 전환하여 `cargo` 및 `rustc` 명령이 이를 사용하도록 설정:

rustup override set nightly

현재 프로젝트 내에서만 nightly 툴체인을 사용하고 전역 설정은 변경하지 않음:

🔍

xcodebuild

설명 보기 ▼

Xcode 프로젝트 빌드.
더 많은 정보: <https://developer.apple.com/library/archive/technotes/tn2339/_index.html>.

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

워크스페이스 빌드:

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

프로젝트 빌드:

xcodebuild -showsdks

SDK 표시:

🔍

xcrun

설명 보기 ▼

개발 도구 및 속성을 실행하거나 찾습니다.
더 많은 정보: <https://keith.github.io/xcode-man-pages/xcrun.1.html>.

xcrun {{tool}} {{arguments}}

활성 개발자 디렉토리에서 도구를 찾고 실행:

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

자세한 출력 표시:

xcrun --sdk {{sdk_name}}

주어진 SDK에 대한 도구 찾기:

// repository documentation