[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Freetype] Compiling freetype on uclinux
From: |
Werner LEMBERG |
Subject: |
Re: [Freetype] Compiling freetype on uclinux |
Date: |
Tue, 02 Mar 2004 23:43:29 +0100 (CET) |
> I untar the downloaded file and run the configure through this
> script that I put on the untarred directory root:
I've modified your script, see below. It works on my GNU/Linux box.
Please try again.
Werner
======================================================================
#!/bin/sh
rm -f config.cache config.status
CC="m68k-elf-gcc"
CFLAGS="-O2 -D__uClinux__ \
-I/home/nafi/uClinux-dist/lib/uClibc/include \
-I/home/nafi/uClinux-dist/linux-2.4.x/include \
-m5307 -Wa,-S -Wa,-m5307 -msep-data"
LDFLAGS="-Wl,-elf2flt -Wl,-move-rodata \
-L/home/nafi/uClinux-dist/lib/uClibc/lib"
LIBS="-lc"
CONFIG="--prefix=/home/nafi/uClinux-dist/libfreetype \
--build=i386-linux \
--host=m68k-elf-linux \
--target=m68k-elf-linux \
--disable-nls \
--enable-static"
./configure $CONFIG \
CC=\"$CC\" \
CFLAGS=\"$CFLAGS\" \
LDFLAGS=\"$LDFLAGS\" \
LIBS=\"$LIBS\"
- Re: [Freetype] Compiling freetype on uclinux, nafiton smith, 2004/03/01
- Re: [Freetype] Compiling freetype on uclinux, Werner LEMBERG, 2004/03/01
- Re: [Freetype] Compiling freetype on uclinux, nafiton smith, 2004/03/01
- Re: [Freetype] Compiling freetype on uclinux, Werner LEMBERG, 2004/03/02
- Re: [Freetype] Compiling freetype on uclinux, nafiton smith, 2004/03/02
- Re: [Freetype] Compiling freetype on uclinux,
Werner LEMBERG <=
- Re: [Freetype] Compiling freetype on uclinux, nafiton smith, 2004/03/03
- Re: [Freetype] Compiling freetype on uclinux, Werner LEMBERG, 2004/03/03
- Re: [Freetype] Compiling freetype on uclinux, nafiton smith, 2004/03/03