mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
20 lines
349 B
Bash
Executable File
20 lines
349 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options $1
|
|
|
|
$SCRIPTS/build toolchain
|
|
|
|
cd $PKG_BUILD
|
|
./configure --host=$TARGET_NAME \
|
|
--build=$HOST_NAME \
|
|
--prefix=/usr \
|
|
--enable-shared \
|
|
--disable-static \
|
|
--disable-log \
|
|
--disable-debug-log \
|
|
--disable-examples-build \
|
|
|
|
make
|
|
|
|
$MAKEINSTALL
|