그래서 저는 Linux를 사용하고 있으며 cs50
이 과정에서 사용되는 make 명령을 에뮬레이트하는 방법을 찾았습니다. 이 make 명령을 입력하면 보고 싶지 않은 줄이 인쇄됩니다.
터미널 예:
[ja@pc cs50]$ make hello
clang -fsanitize=integer -fsanitize=undefined -ggdb3 -O0 -std=c11 -Wall -Werror -Wextra -Wno-sign-compare -Wshadow hello.c -lcrypt -lcs50 -lm -o hello
[ja@pc cs50]$
make 명령을 사용한 후에 인쇄된 이 줄을 제거하고 싶습니다.
내 .bashrc
명령은 다음과 같습니다.
#configure clang
export CC=clang
export CFLAGS="-fsanitize=integer -fsanitize=undefined -ggdb3 -O0 -std=c11 -Wall -Werror -Wextra -Wno-sign-compare -Wshadow"
export LDLIBS="-lcrypt -lcs50 -lm"