mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
toolchain:
- add new package yasm
This commit is contained in:
parent
9aaa2ecf96
commit
727d3a1f1a
@ -19,3 +19,4 @@ if [ "c" != "$TOOLCHAIN_LANGUAGES" ]; then
|
||||
fi
|
||||
|
||||
$SCRIPTS/install cmake
|
||||
$SCRIPTS/build yasm
|
||||
|
27
packages/toolchain/lang/yasm/build
Executable file
27
packages/toolchain/lang/yasm/build
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
|
||||
. config/options
|
||||
|
||||
export CC=$HOST_CC
|
||||
export CXX=$HOST_CXX
|
||||
export CFLAGS="$HOST_CFLAGS"
|
||||
export CXXFLAGS="$HOST_CXXFLAGS"
|
||||
|
||||
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
|
1
packages/toolchain/lang/yasm/url
Normal file
1
packages/toolchain/lang/yasm/url
Normal file
@ -0,0 +1 @@
|
||||
http://www.tortall.net/projects/yasm/releases/yasm-0.8.0.tar.gz
|
Loading…
x
Reference in New Issue
Block a user