mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
24 lines
520 B
Bash
Executable File
24 lines
520 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/build toolchain
|
|
$SCRIPTS/build boost-jam
|
|
$SCRIPTS/build Python
|
|
|
|
cd $PKG_BUILD
|
|
sh bootstrap.sh \
|
|
--prefix=/usr \
|
|
--with-bjam=$ROOT/$TOOLCHAIN/bin/bjam \
|
|
--with-python=$ROOT/$TOOLCHAIN/bin/python \
|
|
|
|
echo "using gcc : `$TARGET_CC -v 2>&1 | tail -n 1 |awk '{print $3}'` : $TARGET_CC ; " \
|
|
> tools/build/v2/user-config.jam
|
|
|
|
$ROOT/$TOOLCHAIN/bin/bjam -d2 --toolset=gcc \
|
|
link=static \
|
|
--prefix=$SYSROOT_PREFIX/usr \
|
|
--layout=system \
|
|
--with-thread \
|
|
install
|