kakehashi
Userspace macOS translation layer for Linux ARM64
파일 탐색기
- config.toml
- bug_report.md
- codeql.yml
- PULL_REQUEST_TEMPLATE.md
- bottle.rs
- env.rs
- install.rs
- mod.rs
- run.rs
- util.rs
- main.rs
- Cargo.toml
- errno.rs
- heap.rs
- process.rs
- sys.rs
- trace.rs
- digest.rs
- mod.rs
- random.rs
- curl_varargs.c
- mod.rs
- algo.rs
- error.rs
- fs.rs
- iostream.rs
- mod.rs
- random_device.rs
- shared.rs
- string.rs
- sync.rs
- cxxabi.rs
- mod.rs
- rtti.rs
- mod.rs
- mod.rs
- mod.rs
- mod.rs
- mod.rs
- mod.rs
- mod.rs
- fcntl_varargs.c
- ioctl_varargs.c
- open_varargs.c
- printf_fmt.c
- dl.rs
- dns_name.rs
- extra_path.rs
- fts.rs
- locale.rs
- mod.rs
- net.rs
- path_extras.rs
- posix.rs
- regex.rs
- simple.rs
- stdio.rs
- string.rs
- utf8.rs
- mod.rs
- mod.rs
- mod.rs
- mod.rs
- mod.rs
- mod.rs
- mod.rs
- mod.rs
- mod.rs
- coreanalytics_xar.rs
- ld_misc.rs
- mod.rs
- os_lock_ld.rs
- mod.rs
- corefoundation.rs
- coreservices.rs
- foundation.rs
- mod.rs
- security.rs
- lib.rs
- build.rs
- Cargo.toml
- bind.rs
- chained.rs
- deps.rs
- error.rs
- execute.rs
- file_image.rs
- image.rs
- init.rs
- lib.rs
- link.rs
- load_timing.rs
- missing_stub.rs
- parse.rs
- rebase.rs
- resolve.rs
- session.rs
- Cargo.toml
- libSystem.B.dylib
- ca_bundle.rs
- download_cache.rs
- guest_tools.rs
- layout.rs
- libsystem.rs
- manage.rs
- mod.rs
- path.rs
- pkg_extract.rs
- registry.rs
- swscan.rs
- xcode_tools.rs
- arch.rs
- entry.rs
- host_slot.rs
- mod.rs
- regs.rs
- trap.rs
- fat_thin.rs
- mod.rs
- layout.rs
- map.rs
- mod.rs
- registry.rs
- dlopen_load.rs
- dyld_table.rs
- mod.rs
- stack.rs
- state.rs
- boundary_bench.rs
- boundary_stats.rs
- common.rs
- fd.rs
- fs.rs
- helpers.rs
- io.rs
- ioctl.rs
- mem_sys.rs
- mod.rs
- net.rs
- process.rs
- signal.rs
- sysctl.rs
- table.rs
- thread_sys.rs
- time_sys.rs
- guest.rs
- mod.rs
- tls.rs
- tls_fd.rs
- tls_verify.rs
- lib.rs
- Cargo.toml
- architecture.md
- README.md
- roadmap.md
- syscall-coverage.md
- utilities.md
- docker-common.sh
- bench-boundary-classes.sh
- bench-fair-local.sh
- bench-multifile-7zz.sh
- bench-scale-split.sh
- docker-curl-options.sh
- docker-git-github.sh
- docker-git-http.sh
- docker-git-push.sh
- docker-git-ssh.sh
- docker-kh.sh
- docker-smoke.sh
- profile-git-checkout.sh
- profile-git-clones.sh
- profile-git-wine.sh
- stage-libsystem.sh
- hashchk.c
- lto_probe.c
- lto_probe_ldlike.c
- lto_probe_linked.c
- readchk.c
- t.c
- calc.o
- main.o
- report.o
- words.o
- calc.h
- report.h
- words.h
- calc.c
- main.c
- report.c
- words.c
- Makefile
- 7zz.bin
- printf_hello
- printf_hello.c
- puts_hello
- puts_hello.c
- README.md
- return_zero
- return_zero.c
- stdio_hello.c
- write_exit
- write_exit.c
- .dockerignore
- .gitignore
- AGENTS.md
- Cargo.lock
- Cargo.toml
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- Dockerfile
- Dockerfile.dev
- LICENSE.txt
- NOTICE
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cargo install
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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}}
애플리케이션의 인증서 검증:
