요즘 u-boot를 분석 하고 있습니다.


그런데 u-boot를 분석하다보면 많은  #if, #ifdef, #ifndef, #else, #elif, #endif 같은 문을 볼 수 있습니다.
이런 코드들이 너무 많아 분석하기 힘듭니다.


이럴때

(컴파일하려는 툴체인)-objdump -d u-boot u-boot.dis


이런 명령어를 주면 u-boot disassembler 가 추출이 됩니다.


u-boot.dis 파일을 보시면 #if, #ifdef, #ifndef, #else, #elif, #endif 가 제거된 깨끗한 소스를 볼 수 있습니다.



끝 -