mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
20 lines
405 B
Bash
Executable File
20 lines
405 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/build toolchain
|
|
|
|
cd $BUILD/$1*
|
|
./configure --host=$TARGET_NAME \
|
|
--build=$HOST_NAME \
|
|
--prefix=$LIB_PREFIX \
|
|
--disable-shared \
|
|
--enable-client \
|
|
--disable-device \
|
|
--disable-webserver \
|
|
--disable-samples \
|
|
--without-docdir \
|
|
--enable-tools
|
|
make
|
|
make install
|