mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: qtbase: Fix building on i686-linux.
* gnu/packages/qt.scm (qtbase)[arguments]: When building for i686-linux add a phase to skip building one of the tests. Change-Id: Ia594e851864d967bfb3716c3e89ba4947206bb4a
This commit is contained in:
parent
4c9d112831
commit
09cfda0145
1 changed files with 8 additions and 0 deletions
|
@ -799,6 +799,14 @@ developers using C++ or QML, a CSS & JavaScript like language.")
|
||||||
(string-append head "\"$ENV{CMAKE_PREFIX_PATH}\"")))))
|
(string-append head "\"$ENV{CMAKE_PREFIX_PATH}\"")))))
|
||||||
(delete 'patch-bin-sh)
|
(delete 'patch-bin-sh)
|
||||||
(delete 'patch-xdg-open)
|
(delete 'patch-xdg-open)
|
||||||
|
;; Some tests fail to build on i686-linux
|
||||||
|
#$@(if (target-x86-32?)
|
||||||
|
#~((add-after 'unpack 'skip-some-tests
|
||||||
|
;; This might be a FLOAT16 problem.
|
||||||
|
(lambda _
|
||||||
|
(substitute* "tests/auto/corelib/global/CMakeLists.txt"
|
||||||
|
((".*qcomparehelpers.*") "")))))
|
||||||
|
#~())
|
||||||
(add-after 'patch-paths 'patch-more-paths
|
(add-after 'patch-paths 'patch-more-paths
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* (find-files "bin" "\\.in$")
|
(substitute* (find-files "bin" "\\.in$")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue