mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: qtbase: Avoid retaining a reference to gcc-final.
Fixes <https://issues.guix.gnu.org/63948>. * gnu/packages/qt.scm (qtbase) [configure-flags]: Add the "-DQT_EMBED_TOOLCHAIN_COMPILER=OFF" flag. Reported-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7c3df13f22
commit
98c17c1482
1 changed files with 5 additions and 0 deletions
|
@ -627,6 +627,11 @@ (define-public qtbase
|
|||
(string-append "-DINSTALL_EXAMPLESDIR=" out
|
||||
"/share/doc/qt6/examples")
|
||||
(string-append "-DINSTALL_INCLUDEDIR=" out "/include/qt6")
|
||||
|
||||
;; Do not embed an absolute reference to compilers, to reduce
|
||||
;; the closure size.
|
||||
"-DQT_EMBED_TOOLCHAIN_COMPILER=OFF"
|
||||
|
||||
;; Link with DBus and OpenSSL so they don't get dlopen'ed.
|
||||
"-DINPUT_dbus=linked"
|
||||
"-DINPUT_openssl=linked"
|
||||
|
|
Loading…
Reference in a new issue