Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- UK
- programming_book
- web
- MySQL
- erlang
- hadoop
- Spain
- QT
- Kuala Lumpur
- comic agile
- Malaysia
- Programming
- management
- hbase
- Book
- ubuntu
- leadership
- Software Engineering
- history
- RFID
- Book review
- Linux
- Italy
- Python
- agile
- Java
- France
- django
- program
- psychology
Archives
- Today
- Total
configure 본문
출처: 열씨미와 게을러의 리눅스 개발 노하우 탐험기
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 방법은
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으로 안되는 경우 환경 변수를 고려
4. configure script의 option으로 안되는 경우 환경 변수를 고려
ac_로 시작하는 환경 변수는 일반적인 configure script에 모두 적용
ac_가 아닌 다른 접두어(ex. samba_)로 시작하는 환경 변수는 특정 configure script에만 적용
5. configure script의 동작이 이상하면 config.log로 문제점 파악
Comments