From 6e0de87a34f2a67e2a9d0a312d02ef9c2dc783b6 Mon Sep 17 00:00:00 2001 From: q66 Date: Sun, 20 Oct 2019 21:15:19 +0200 Subject: [PATCH] python3-efl: attempt to reduce memory usage on 32-bit hosts --- srcpkgs/python3-efl/template | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/srcpkgs/python3-efl/template b/srcpkgs/python3-efl/template index 9825cb5fa5e..3a3fa070478 100644 --- a/srcpkgs/python3-efl/template +++ b/srcpkgs/python3-efl/template @@ -14,3 +14,8 @@ license="LGPL-3.0-only, LGPL-3.0-only" homepage="http://enlightenment.org" distfiles="http://download.enlightenment.org/rel/bindings/python/python-efl-${version}.tar.xz" checksum=2bdef4153e3df2ed3edef9f1ebb4554054405425247a9fabb3c784b48232d69b + +# ETOOBIG +if [ "$XBPS_WORDSIZE" = "32" ]; then + LDFLAGS="-Wl,--no-keep-memory" +fi