guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: gnu: qtwebengine-5: Enable building on i686-linux.


From: guix-commits
Subject: 01/03: gnu: qtwebengine-5: Enable building on i686-linux.
Date: Wed, 6 Dec 2023 01:59:37 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 1cd2f0322556a165dac55f01f8198f297285543b
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Dec 5 17:39:39 2023 +0200

    gnu: qtwebengine-5: Enable building on i686-linux.
    
    * gnu/packages/qt.scm (qtwebengine-5)[arguments]: When building for
    i686-linux add a configure-flag to use less memory during the linking
    phase.
    
    Change-Id: Ie27467445f2bc299314b1294b024d3cfdc6f0b44
---
 gnu/packages/qt.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 7ec4526492..ff5da5647e 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -2954,7 +2954,12 @@ linux/libcurl_wrapper.h")
               (lambda _
                 ;; Valid QT_BUILD_PARTS variables are:
                 ;; libs tools tests examples demos docs translations
-                (invoke "qmake" "QT_BUILD_PARTS = libs tools" "--"
+                (invoke "qmake"
+                        #$@(if (target-x86-32?)
+                               ;; Don't exhaust memory while linking.
+                               #~("QMAKE_LFLAGS+=-Wl,--no-keep-memory 
-Wl,-z,now")
+                               #~())
+                        "QT_BUILD_PARTS = libs tools" "--"
                         "--webengine-printing-and-pdf=no"
                         "--webengine-ffmpeg=system"
                        ;; FIXME: Building qtwebengine-5 5.12.2 with



reply via email to

[Prev in Thread] Current Thread [Next in Thread]