Mac 10.9.4에서 apue.h를 사용하는 방법

Mac 10.9.4에서 apue.h를 사용하는 방법

Mac에서 UNIX® 환경의 고급 프로그래밍에서 소스 코드를 컴파일하려고 시도했지만 make다음 오류와 함께 컴파일이 종료됩니다.

... 
clang: error: unknown argument: '-R.' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
make[1]: *** [t4] Error 1
make: *** [all] Error 1

답변1

"clang: error: 알 수 없는 인수: '-R'"라는 gcc 컴파일러 문제였기 때문에 "-R"을 변경하여 해결했습니다. /apue.3e/db/Makefile에서 "-R"을 사용하려면:

이와 같이:

ifeq "$(플랫폼)" "macos" EXTRALD=-R

관련 정보