qtwebkit: Reduce RAM requirements for linking.
* gnu/packages/qt.scm (qtwebkit)[arguments]: Link shared libraries and executables with "--no-keep-memory".
This commit is contained in:
parent
0995a5692c
commit
ebdb15bc35
1 changed files with 6 additions and 1 deletions
|
@ -2175,7 +2175,12 @@ (define-public qtwebkit
|
|||
"-DUSE_SYSTEM_MALLOC=ON"
|
||||
;; XXX: relative dir installs to build dir?
|
||||
(string-append "-DECM_MKSPECS_INSTALL_DIR="
|
||||
%output "/lib/qt5/mkspecs/modules"))))
|
||||
%output "/lib/qt5/mkspecs/modules")
|
||||
;; Sacrifice a little speed in order to link
|
||||
;; libraries and test executables in a
|
||||
;; reasonable amount of memory.
|
||||
"-DCMAKE_SHARED_LINKER_FLAGS=-Wl,--no-keep-memory"
|
||||
"-DCMAKE_EXE_LINKER_FLAGS=-Wl,--no-keep-memory")))
|
||||
(home-page "https://www.webkit.org")
|
||||
(synopsis "Web browser engine and classes to render and interact with web
|
||||
content")
|
||||
|
|
Loading…
Reference in a new issue