configure 본문

Programming

configure

halatha 2009. 9. 14. 17:47
출처: 열씨미와 게을러의 리눅스 개발 노하우 탐험기
2009/08/17 - [Programming] - diff, find, md5sum, patch
2009/08/17 - [Programming] - find, grep, ctags, cscope, global
2009/08/17 - [Programming] - shared library, strace, ldconfig, ldd, gcc, strings, od, nm, c++filt, readelf

교차 컴파일과 관련해 기억할 것
1. configure 명령의 결과는 Makefile, config.h
2. Embedded 환경을 위한 표준 configure 방법은
"$CC=cross_C_compiler_name ./configure --target=embedded_system_architecture"
"$CC=cross_C_compiler_name ./configure --build=native_architecture --host=embedded_system_architecture"
3. configure 과정의 --with-*, --enable-*, --disable-* option을 주목
4. configure script의 option으로 안되는 경우 환경 변수를 고려
ac_로 시작하는 환경 변수는 일반적인 configure script에 모두 적용
ac_가 아닌 다른 접두어(ex. samba_)로 시작하는 환경 변수는 특정 configure script에만 적용
5. configure script의 동작이 이상하면 config.log로 문제점 파악
Comments