mame: disable precompiled headers (See #6613)
This commit is contained in:
parent
fadd4d6685
commit
1265dfb85f
1 changed files with 4 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'mame'
|
# Template file for 'mame'
|
||||||
pkgname=mame
|
pkgname=mame
|
||||||
version=0186
|
version=0186
|
||||||
revision=1
|
revision=2
|
||||||
wrksrc="mame-mame${version}"
|
wrksrc="mame-mame${version}"
|
||||||
homepage="http://mamedev.org"
|
homepage="http://mamedev.org"
|
||||||
distfiles="https://github.com/mamedev/mame/archive/mame${version}.tar.gz"
|
distfiles="https://github.com/mamedev/mame/archive/mame${version}.tar.gz"
|
||||||
|
@ -23,7 +23,7 @@ case "$XBPS_TARGET_MACHINE" in
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
CXXFLAGS="-std=c++14 -I${XBPS_CROSS_BASE}/usr/include/lua5.3"
|
CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/lua5.3"
|
||||||
LDFLAGS="-Wl,-fuse-ld=gold"
|
LDFLAGS="-Wl,-fuse-ld=gold"
|
||||||
|
|
||||||
build_options="qt"
|
build_options="qt"
|
||||||
|
@ -41,6 +41,7 @@ do_build() {
|
||||||
opts+=" TOOLS=1"
|
opts+=" TOOLS=1"
|
||||||
opts+=" VERBOSE=1"
|
opts+=" VERBOSE=1"
|
||||||
opts+=" OPTIMIZE=3"
|
opts+=" OPTIMIZE=3"
|
||||||
|
opts+=" PRECOMPILE=0"
|
||||||
opts+=" USE_SYSTEM_LIB_EXPAT=1"
|
opts+=" USE_SYSTEM_LIB_EXPAT=1"
|
||||||
opts+=" USE_SYSTEM_LIB_ZLIB=1"
|
opts+=" USE_SYSTEM_LIB_ZLIB=1"
|
||||||
opts+=" USE_SYSTEM_LIB_JPEG=1"
|
opts+=" USE_SYSTEM_LIB_JPEG=1"
|
||||||
|
@ -61,12 +62,9 @@ do_build() {
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
case "$XBPS_TARGET_MACHINE" in
|
||||||
i686*) # Overcome linker memory exhaustion
|
i686*) # Overcome linker memory exhaustion
|
||||||
opts+=" SYMBOLS=0"
|
opts+=" SYMBOLS=0"
|
||||||
make ${opts} ${makejobs}
|
|
||||||
;;
|
|
||||||
*) # Build all in one mame[64]
|
|
||||||
make ${opts} ${makejobs}
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
make ${opts} ${makejobs}
|
||||||
}
|
}
|
||||||
do_install() {
|
do_install() {
|
||||||
local f
|
local f
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue