혹시 이거 컴파일 되나 확인좀 부탁드립니다.
혹시 이거 되나.. 아니면 어떻게된건지 확인좀 부탁드립니다..
ftp://ftp.cis.uab.edu/pub/hyatt/source/crafty-19.9.tar.gz
체스프로그램인데요
mingw에서 그냥 make 하니까
김기범@KKB110 /c/gnu/crafty-19.19
$ make
make -j linux-icc
make[1]: Entering directory `/c/gnu/crafty-19.19'
make target=LINUX \
CC=icc CXX=icc \
CFLAGS=' -D_REENTRANT -O2 \
-xN -prof_use -prof_dir ./profdir \
-Ob2 -fno-alias' \
CXFLAGS=' -D_REENTRANT -O2 \
-w -xN -prof_use -prof_dir ./profdir' \
LDFLAGS=' -lstdc++ -lpthread' \
opt=' -DFUTILITY -DFAST -DINLINE_ASM \
-DPOSIX -DSMP -DCPUS=2' \
crafty-make
make[2]: Entering directory `/c/gnu/crafty-19.19'
make[3]: Entering directory `/c/gnu/crafty-19.19'
icc -D_REENTRANT -O2 -xN -prof_use -prof_dir ./profdir -Ob2 -fno-alias -DFUTILITY -DFAST -DINLINE_ASM -DPOSIX -DSMP -DCPUS=2 -DLINUX -c searchr.c
make[3]: icc: Command not found
icc -D_REENTRANT -O2 -xN -prof_use -prof_dir ./profdir -Ob2 -fno-alias -DFUTILITY -DFAST -DINLINE_ASM -DPOSIX -DSMP -DCPUS=2 -DLINUX -c search.c
make[3]: icc: Command not found
make[3]: *** [searchr.o] Error 127
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [search.o] Error 127
make[3]: Leaving directory `/c/gnu/crafty-19.19'
make[2]: *** [crafty-make] Error 2
make[2]: Leaving directory `/c/gnu/crafty-19.19'
make[1]: *** [linux-icc] Error 2
make[1]: Leaving directory `/c/gnu/crafty-19.19'
make: *** [default] Error 2
김기범@KKB110 /c/gnu/crafty-19.19
$
라고 나오고 마네요..
제가 무지해서 어떻게잘못됬다는건지 모르겠네요 -_-;
CC와 CXX를 icc로 설정한 것을 보니까 "icc"가 컴파일러 이름인
CC와 CXX를 icc로 설정한 것을 보니까 "icc"가 컴파일러 이름인가 봅니다. Build하는 시스템에서 icc가 없어서 에러가 난 것으로 보입니다.
google에게 물어보니 Intel compiler인가 봅니다. Makefile에서 CC와 CXX를 gcc, g++로 바꿔서 make해 보기 바랍니다. Source에 icc 전용 코드가 없다면 build할 수 있을 것 같군요.
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Korean Ver: http://cinsk.github.io/cfaqs/
intel icc compiler를 사용한 make file인가 보네요.
intel icc compiler를 사용한 make file인가 보네요.
icc를 구하던지, gcc 에서 build되도록 option이나 source를 수정하던지 하여야 겠네요.
http://support.intel.com/support/performancetools/c/linux/index.htm
Makefile 읽어보시면 make help가 나옵니다.리눅스에서
Makefile 읽어보시면 make help가 나옵니다.
리눅스에서 make linux 잘 되네요.
아 감사합니다...... makefile구문 하나도 몰라서요...이제
아 감사합니다...... makefile구문 하나도 몰라서요...
이제 알겠네요 ^^;
댓글 달기