Files
MiniGUI/build/buildlib-ecos-ipaq
2017-05-29 12:20:05 +08:00

58 lines
1.4 KiB
Bash
Executable File

#!/bin/sh
#
# Please make sure that the following things are OK:
#
# 1. You have installed the GNU arm-elf-tools already.
# 2. You have set ECOS_RESPOSITORY and PATH correctly.
# 3. Modify the following variable for your cross-compilation environment.
ECOS_DIR=/tmp/ipaq_ecos/install
rm config.cache config.status -f
CC=arm-elf-gcc \
CFLAGS="-I${ECOS_DIR}/include -mcpu=strongarm -Wall -O2" \
LDFLAGS='-nostdlib' \
./configure --prefix=${ECOS_DIR} \
--build=i386-linux \
--host=arm-elf-linux \
--target=arm-elf-linux \
--with-osname=ecos \
--disable-shared \
--disable-procs \
--disable-standalone \
--enable-incoreres \
--enable-rbfgb12 \
--enable-rbf24 \
--with-style=flat \
--disable-videofbcon \
--disable-videoqvfb \
--enable-videodummy \
--enable-videocommlcd \
--disable-micemoveable \
--disable-cursor \
--disable-textmode \
--enable-ipaqial \
--enable-dummyial \
--disable-nativeial \
--disable-qvfbial \
--disable-qpfsupport \
--disable-ttfsupport \
--disable-type1support \
--disable-latin9support \
--enable-gbsupport \
--disable-gbksupport \
--disable-big5support \
--disable-unicodesupport \
--disable-savebitmap \
--disable-jpgsupport \
--disable-pngsupport \
--disable-imegb2312 \
--disable-imegb2312py \
--disable-aboutdlg \
--disable-savescreen \
--enable-tinyscreen \
--disable-libvcongui