kakehashi

(★ 420)

Userspace macOS translation layer for Linux ARM64

파일 탐색기

  • .dockerignore
  • .gitignore
  • AGENTS.md
  • Cargo.lock
  • Cargo.toml
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • Dockerfile
  • Dockerfile.dev
  • LICENSE.txt
  • NOTICE
  • README.md

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

cargo install

설명 보기 ▼

Build and install a Rust binary.

cargo install {{package}}@{{version}}

Install a package from <https://crates.io> (the version is optional - latest by default):

cargo install --git {{repo_url}}

Install a package from the specified Git repository:

cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}

Build from the specified branch/tag/commit when installing from a Git repository:

🔍

clang

설명 보기 ▼

C, C++, Objective-C 소스 파일을 컴파일. 수정 없이 GCC 대체(drop-in replacement)로 사용할 수 있음.
LLVM의 일부.
더 많은 정보: <https://clang.llvm.org/docs/ClangCommandLineReference.html>.

clang {{path/to/source1.c path/to/source2.c ...}} {{[-o|--output]}} {{path/to/output_executable}}

여러 소스 파일을 하나의 실행 파일로 컴파일:

clang {{path/to/source.c}} -Wall {{[-o|--output]}} {{output_executable}}

모든 오류 및 경고 출력 활성화:

clang {{path/to/source.c}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{path/to/output_executable}}

일반적인 경고 표시, 디버그 심볼 포함, 디버깅에 영향을 주지 않는 최적화 적용:

🔍

git

설명 보기 ▼

분산 버전 관리 시스템.
`commit`, `add`, `branch`, `checkout`, `push` 등의 특정 하위 명령어는 고유의 문서가 따로 있습니다.
더 많은 정보: <https://git-scm.com/docs/git>.

git init

하위 명령어 실행:

git clone {{https://example.com/repo.git}}

특정 레파지토리 위치에서 Git 하위 명령어 실행:

git status

주어진 설정으로 Git 하위 명령어 실행:

🔍

zsh

설명 보기 ▼

Z SHell, Bash 호환 명령줄 인터프리터.
관련 항목: `bash`, `!`, `^`.
더 많은 정보: <https://zsh.sourceforge.io/Doc/Release/Invocation.html#Invocation>.

zsh

대화형 셸 세션 시작:

zsh -c "{{echo Hello world}}"

특정 [c]명령 실행:

zsh {{path/to/script.zsh}}

특정 스크립트 실행:

🔍

codesign

설명 보기 ▼

macOS용 코드 서명을 생성하고 조작합니다.
더 많은 정보: <https://keith.github.io/xcode-man-pages/codesign.1.html>.

codesign --sign "{{My Company Name}}" {{path/to/application_file.app}}

애플리케이션을 인증서로 서명:

codesign --verify {{path/to/application_file.app}}

애플리케이션의 인증서 검증:

// repository documentation