You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
CC=${FAM_CC} \
|
|
|
|
AR=${FAM_AR} \
|
|
|
|
AS=${FAM_AS} \
|
|
|
|
RANLIB=${FAM_RANLIB} \
|
|
|
|
./configure \
|
|
|
|
--prefix=${INSTALL_DIR} \
|
|
|
|
--host=${TARGET} \
|
|
|
|
--with-sysroot=${SYSROOT_PATH} \
|
|
|
|
--disable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--disable-examples \
|
|
|
|
--with-pic \
|
|
|
|
--without-libxml2 \
|
|
|
|
--without-freetype \
|
|
|
|
--without-fontconfig \
|
|
|
|
--disable-bdjava-jar || exit 1
|
|
|
|
|
|
|
|
${MAKE_EXECUTABLE} clean
|
|
|
|
${MAKE_EXECUTABLE} -j${HOST_NPROC}
|
|
|
|
${MAKE_EXECUTABLE} install
|