2007. 11. 3. 21:28 Unix
make 과정 보기
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2379 - July 7, 2006
http://www.ugu.com/sui/ugu/show?tip.today
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
make 과정 보기
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2379 - July 7, 2006
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
make 과정 보기
소프트웨어를 컴파일 할 때, 단순히 'make'만 입력하여 실행하지 마라! 오류를
절대 잡아낼 수 없다!
'make > Make.Out &'
를 실행하고
'tail -f Make.Out'
를 실행하라
위의 명령어는 연속적으로 Make.Out 파일의 마지막 라인을 보여줄 것이며, 여러분이
"저게 뭐야"라고 나오는 부분이 있으면 ^C를 입력하고 compile을 중단하지 않고
Make.Out 파일에 grep을 실행할 기회를 준다.
@@@@@@@@@@@@@@@@@@@@[ 원문 ]@@@@@@@@@@@@@@@@@@@@
WATCHING MAKE
When compiling software,
don't just type 'make'
and let run! You will
never be able to catch
your errors!
Do 'make > Make.Out &'
and then do
'tail -f Make.Out'.
That will continuously show
you the end of your Make.Out
file, giving you the chance
to go "Hey, what was that?!?",
hit ^C, grep Make.Out, and not
interrupt your compile.
When compiling software,
don't just type 'make'
and let run! You will
never be able to catch
your errors!
Do 'make > Make.Out &'
and then do
'tail -f Make.Out'.
That will continuously show
you the end of your Make.Out
file, giving you the chance
to go "Hey, what was that?!?",
hit ^C, grep Make.Out, and not
interrupt your compile.
반응형