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: Ie27467445f2bc299314b1294b024d3cfdc6f0b44master
parent
0aee90e4ea
commit
1cd2f03225
|
@ -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
|
||||
|
|
Reference in New Issue