Files
Arch-R/packages/toolchain/lang/yasm/build
Stephan Raue 090dc2e511 yasm:
- correctly use of toolchain host
2010-05-27 03:37:45 +02:00

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