mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
24 lines
516 B
Bash
Executable File
24 lines
516 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
setup_toolchain host
|
|
|
|
cd $PKG_BUILD
|
|
./configure --prefix=$ROOT/$TOOLCHAIN \
|
|
--disable-debug \
|
|
--disable-warnerror \
|
|
--disable-profiling \
|
|
--disable-gcov \
|
|
--disable-python \
|
|
--disable-python-bindings \
|
|
--enable-nls \
|
|
--disable-rpath \
|
|
--without-dmalloc \
|
|
--with-gnu-ld \
|
|
--without-libiconv-prefix \
|
|
--without-libintl-prefix
|
|
|
|
make
|
|
make install
|