'cross compile'에 해당되는 글 21건
- 2012.04.24 lrzsz-0.12.20 cross compile
- 2012.04.23 freetype-2.3.9 cross compile
- 2012.04.23 libjpeg release 8d cross compile
- 2012.04.23 sqlite3 cross compile
- 2012.04.23 ntpclient cross compile
- 2012.02.07 libpng 1.5.8 cross compile
- 2012.02.07 zlib 1.2.6 cross compile
- 2012.01.02 nano-x 0.92 cross compile with tslib 하기
- 2011.12.29 libjpeg cross compile
- 2011.12.07 [s3c6410] SDL_ttf Cross Compile
lrzsz-0.12.20 cross compile
http://ohse.de/uwe/software/lrzsz.html 에서 다운로드 받는다.
CC=arm-vfp-linux-gnu-gcc ./configure --prefix=`pwd`/_install --host=arm-vfp-linux-gnu \
--target=arm-vfp-linux-gnu
make
make install
'임베디드 > LPC3250' 카테고리의 다른 글
freetype-2.3.9 cross compile (0) | 2012.04.23 |
---|---|
libjpeg release 8d cross compile (0) | 2012.04.23 |
sqlite3 cross compile (0) | 2012.04.23 |
ntpclient cross compile (0) | 2012.04.23 |
u-boot 환경설정값 (0) | 2012.04.06 |
freetype-2.3.9 cross compile
http://www.freetype.org 에서 freetyp-2.3.9을 다운로드
./configure --prefix=`pwd`/_install --host=arm-vfp-linux-gnu --enable-static
make
make install
'임베디드 > LPC3250' 카테고리의 다른 글
lrzsz-0.12.20 cross compile (0) | 2012.04.24 |
---|---|
libjpeg release 8d cross compile (0) | 2012.04.23 |
sqlite3 cross compile (0) | 2012.04.23 |
ntpclient cross compile (0) | 2012.04.23 |
u-boot 환경설정값 (0) | 2012.04.06 |
libjpeg release 8d cross compile
http://www.ijg.org/ 에서 최신 릴리즈 소스를 다운로드 받는다.
./configure --prefix=`pwd`/_install --host=arm-vfp-linux-gnu
make
make install
하면 된다.
'임베디드 > LPC3250' 카테고리의 다른 글
lrzsz-0.12.20 cross compile (0) | 2012.04.24 |
---|---|
freetype-2.3.9 cross compile (0) | 2012.04.23 |
sqlite3 cross compile (0) | 2012.04.23 |
ntpclient cross compile (0) | 2012.04.23 |
u-boot 환경설정값 (0) | 2012.04.06 |
sqlite3 cross compile
http://www.sqlite3.org 에서 sqlite-autoconf-3071100.tar.gz을 다운받음
./configure --prefix=`pwd`/_install --host=arm-vfp-linux-gnu
make
make install
로 컴파일 완료
'임베디드 > LPC3250' 카테고리의 다른 글
freetype-2.3.9 cross compile (0) | 2012.04.23 |
---|---|
libjpeg release 8d cross compile (0) | 2012.04.23 |
ntpclient cross compile (0) | 2012.04.23 |
u-boot 환경설정값 (0) | 2012.04.06 |
stage1 app information (0) | 2012.04.05 |
ntpclient cross compile
tiny util로 사용할 ntp client이다.
다운로드 받을 주소는
http://doolittle.icarus.com/ntpclient/
컴파일 방법은 Makefile을 열어서
CC = arm-vfp-linux-gnu-gcc
을 추가한 후에 make 해주면 된다.
'임베디드 > LPC3250' 카테고리의 다른 글
libjpeg release 8d cross compile (0) | 2012.04.23 |
---|---|
sqlite3 cross compile (0) | 2012.04.23 |
u-boot 환경설정값 (0) | 2012.04.06 |
stage1 app information (0) | 2012.04.05 |
[LPC3250] bootargs (0) | 2012.03.28 |
libpng 1.5.8 cross compile
configure : ./configure --prefix=$PWD/_install --host=arm-linux --build=i686-pc-linux-gnu
make && make install
'임베디드' 카테고리의 다른 글
mkfs.jffs2 버그 (0) | 2012.10.12 |
---|---|
CoOS - Arm Cortex M3 용 RTOS (0) | 2012.07.10 |
zlib 1.2.6 cross compile (0) | 2012.02.07 |
u-boot loader(the Universal Boot Loader) 사이트 및 버전 (0) | 2012.02.02 |
busybox용 tftp 사용법 (0) | 2011.12.13 |
zlib 1.2.6 cross compile
configure : CC=arm-linux-gcc RANLIB=arm-linux-ranlib AR=arm-linux-ar ./configure --prefix=$PWD/_install --shared
make && make install
'임베디드' 카테고리의 다른 글
CoOS - Arm Cortex M3 용 RTOS (0) | 2012.07.10 |
---|---|
libpng 1.5.8 cross compile (0) | 2012.02.07 |
u-boot loader(the Universal Boot Loader) 사이트 및 버전 (0) | 2012.02.02 |
busybox용 tftp 사용법 (0) | 2011.12.13 |
[s3c6410] SDL_ttf Cross Compile (0) | 2011.12.07 |
nano-x 0.92 cross compile with tslib 하기
그리고 tslib관련 파일들이 있는 위치를 Makefile.rules에 추가로 적어준다.
415라인에 있는 LDFLAGS에 tslib이 있는 디렉토리와 위치와 -lts을 추가해 주도록 한다.
'임베디드 > Nano-X(microwindow)' 카테고리의 다른 글
libjpeg cross compile (0) | 2011.12.29 |
---|
libjpeg cross compile
make install 시에는 설치할 디렉토리에
bin, man 디렉토리가 존재하지 않으면 에러가 발생하므로 미리 만들어 두도록 한다.
'임베디드 > Nano-X(microwindow)' 카테고리의 다른 글
nano-x 0.92 cross compile with tslib 하기 (0) | 2012.01.02 |
---|
[s3c6410] SDL_ttf Cross Compile
$ export CC=arm-linux-gcc$ make
$ export AR=arm-linux-ar
$ export LD=arm-linux-ld
$ export RANLIB=arm-linux-ranlib
$ ./configure --build=i386-linux --host=arm-linux \
--target=arm-generic-linux-gnueabi \
--prefix=/usr/arm-genric-linux-gnueabi \
--with-sdl-prefix=/usr/arm-generic-linux-gnueabi \
--with-freetype-prefix=/usr/arm-generic-linux-gnueabi \
--without-x
$ make install
'임베디드' 카테고리의 다른 글
u-boot loader(the Universal Boot Loader) 사이트 및 버전 (0) | 2012.02.02 |
---|---|
busybox용 tftp 사용법 (0) | 2011.12.13 |
yaffs2 이미지 만들기 (0) | 2011.12.06 |
udhcpc용 default.script (0) | 2011.12.06 |
[h7210] H-Jtag 설정하기 (0) | 2011.11.08 |