# clang 버전
clang --version
Homebrew clang version 20.1.2
Target: arm64-apple-darwin24.4.0
Thread model: posix
InstalledDir: /opt/homebrew/Cellar/llvm/20.1.2/bin
Configuration file: /opt/homebrew/etc/clang/arm64-apple-darwin24.cfg
# mac 15.4 (24E248) 에서 pyenv 로 3.12.0 을 지우고 다시 설치 다음 에러가 발생했다.
# 참고로 3.11.0 은 설치가 잘 됐다.
pyenv install 3.12.0 -v
/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include/assert.h:75:25: note: expanded from macro 'assert'
# -Wno-string-compare 옵션을 주면 된다고 해서 요렇게 다시 실행
env \
CFLAGS="-Wno-string-compare" \
pyenv install 3.12.0
# 이번엔 tcl 에러가 발생한다.
/opt/homebrew/Cellar/tcl-tk/9.0.1/include/tcl-tk/tclDecls.h:1797:36: note: passing argument to parameter 'argcPtr' here
brew uninstall tcl-tk
brew install tcl-tk@8
# 이제 빌드 된다.
comments:
댓글 쓰기