[Software]/Programming Tips2008. 8. 19. 10:30

보통 코어 1개당 4개의 job을 이용하여 빌드하면 가장 최적이라고 한다.

 

-j [N], --jobs[=N]          Allow N jobs at once; infinite jobs with no arg.
  -k, --keep-going            Keep going when some targets can't be made.

 

example) 

#> make -j 24 -k all;   (우리 서버는 core가 8개지만 24개 정도로 해준다.)

#> make all;


-k를 이용하여 타켓이 생성되지 않더라도 모든 가능한 빌드를 해 놓고,, 나중에 make all 을 한번 더 해준다.


http://www.viper.pe.kr/docs/make-ko/make-ko_9.html#SEC88


Posted by 바트정