Files
Arch-R/packages/toolchain/math/mpfr/build

25 lines
489 B
Plaintext
Raw Normal View History

2009-03-18 13:02:53 +01:00
#!/bin/sh
. config/options
$SCRIPTS/install ccache
2009-12-13 23:02:35 +01:00
$SCRIPTS/build gmp
2009-03-18 13:02:53 +01:00
setup_toolchain host
cd $PKG_BUILD
2009-03-18 13:02:53 +01:00
mkdir -p objdir
cd objdir
2009-03-18 13:02:53 +01:00
LDFLAGS="-Wl,-rpath,$ROOT/$TOOLCHAIN/lib" \
../configure --host=$HOST_NAME \
--build=$HOST_NAME \
--target=$TARGET_NAME \
--prefix=$ROOT/$TOOLCHAIN \
2009-03-18 13:02:53 +01:00
--enable-shared \
--with-gmp-lib="$ROOT/$TOOLCHAIN/lib" \
--with-gmp-include="$ROOT/$TOOLCHAIN/include" \
make
2009-12-13 23:02:35 +01:00
make install