kodi: fix build on 32-bit builders.
ld was running out of memory at link time. Since we are here, set LDFLAGS initially instead of adding to it.
This commit is contained in:
parent
2d877fa9c5
commit
c8ad668ea4
1 changed files with 5 additions and 1 deletions
|
@ -34,7 +34,11 @@ skip_extraction="crossguid-8f399e8bd4.tar.gz libdvdcss-1.4.2-Leia-Beta-5.tar.gz
|
|||
libdvdread-6.0.0-Leia-Alpha-3.tar.gz libdvdnav-6.0.0-Leia-Alpha-3.tar.gz"
|
||||
python_version=3
|
||||
patch_args="-Np1"
|
||||
LDFLAGS+=" -Wl,-z,stack-size=1048576"
|
||||
LDFLAGS="-Wl,-z,stack-size=1048576"
|
||||
|
||||
if [ "$XBPS_WORDSIZE" = 32 ]; then
|
||||
LDFLAGS+=" -Wl,--no-keep-memory"
|
||||
fi
|
||||
|
||||
lib32disabled=yes
|
||||
archs="i686* x86_64* aarch64*
|
||||
|
|
Loading…
Reference in a new issue