22.11.11 16 Ventura 13업데이트 이후 g++/ git / flutter 모두 같은 방법으로 해결
각각 한 줄씩 실행하여 해결하였습니다.
xcode-select -p
export SDKROOT=$(xcrun -sdk macosx --show-sdk-path)
g++과 git
아래와 같은 오류가 떴다.
xcodebuild: error: SDK "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk" cannot be located.
그래서 처음 시도한 방법은 stackoverflow에서 찾은 방법인데 (https://stackoverflow.com/questions/71320584/flutter-build-ios-got-error-requested-but-did-not-find-extension-point-with-ide)
xcrun -sdk macosx --show-sdk-path
먼저 저 코드를 입력해서 현재 sdk정보를 받아온다 이후 받은 sdk정보를 환경변수에 넣고
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk
source에 추가한 후
source ~/.zshrc
sdk 버전을 확인해주었다.
xcrun -sdk macosx --show-sdk-version
flutter
에서는 라는 문구가 뜨면서 실행이 되지 않아서 아래 이미지와 같은 작업을 진행하였다.
"The current configured Flutter SDK is not known to be fully supported. Please update your SDK and restart IntelliJ"
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
위와 같은 2가지 코드를 실행시켰다.
'일상+자잘한 일' 카테고리의 다른 글
[우테코/프리코스/Day 1] JAVA 17설치 및 환경변수 설정 (0) | 2023.10.22 |
---|---|
[C++] set operator 사용 시 const가 필요한 이유 (0) | 2023.10.12 |
[Python] 파이썬 별표 의미 및 역할 + 자잘한 팁 (0) | 2023.08.08 |
SSAFY 10기 합격 후기. (2) | 2023.06.22 |
왜 오차에는 제곱을 할까 (0) | 2022.11.13 |