mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
32 lines
734 B
Bash
Executable File
32 lines
734 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options $1
|
|
|
|
$SCRIPTS/build toolchain
|
|
|
|
cd $BUILD/$1*
|
|
ac_cv_func_malloc_0_nonnull=yes \
|
|
./configure --host=$TARGET_NAME \
|
|
--build=$HOST_NAME \
|
|
--prefix=/usr \
|
|
--disable-lvm1_fallback \
|
|
--disable-static_link \
|
|
--disable-readline \
|
|
--enable-realtime \
|
|
--enable-debug \
|
|
--disable-profiling \
|
|
--enable-devmapper \
|
|
--disable-compat \
|
|
--enable-o_direct \
|
|
--enable-applib \
|
|
--enable-cmdlib \
|
|
--enable-pkgconfig \
|
|
--enable-fsadm \
|
|
--disable-dmeventd \
|
|
--disable-selinux \
|
|
--disable-nls \
|
|
|
|
make
|
|
|
|
$MAKEINSTALL
|