Mac의 C 라이브러리" />
C로 코딩하는 경우(매우 의심스럽습니다. 하지만 입니다!) 많은 사람들이
1. 이미 이 단계를 건너뛴 경우 첫 번째 단계는 ncurses를 설치하는 것입니다.
brew install ncurses
2.라이브러리가 설치된 위치를 찾습니다
brew info ncurses
3. 출력에는 다음과 같이 라이브러리가 설치된 위치가 포함됩니다.
/opt/homebrew/Cellar/ncurses/6.5
나와 같은 버전이 6.5
이라는 점을 기억하세요.4.라이브러리 및 헤더 확인:
ls /opt/homebrew/Cellar/ncurses/6.5/lib ls /opt/homebrew/Cellar/ncurses/6.5/include
버전을 변경하는 것을 잊지 마세요
gcc main.c -o main -I/opt/homebrew/Cellar/ncurses/6.5/include -L/opt/homebrew/Cellar/ncurses/6.5/lib -lncurses
버전 교체
export CPPFLAGS="-I/opt/homebrew/Cellar/ncurses/6.5/include" export LDFLAGS="-L/opt/homebrew/Cellar/ncurses/6.5/lib"
버전 번호 교체
7.이제 다음을 사용하여 파일을 컴파일할 수 있습니다.
gcc main.c -o main -lncurses
위 내용은 Mac에서 C로