gnu: qt: Do not use special SSE etc. instructions.
* gnu/packages/qt.scm (qt): Add configure flags to disable machine specific instructions.
This commit is contained in:
parent
39fa8f6c73
commit
1ea44d1128
|
@ -120,7 +120,18 @@ X11 (yet).")
|
||||||
"-verbose"
|
"-verbose"
|
||||||
"-prefix" out
|
"-prefix" out
|
||||||
"-opensource"
|
"-opensource"
|
||||||
"-confirm-license"))))
|
"-confirm-license"
|
||||||
|
;; drop all special machine instructions
|
||||||
|
"-no-sse2"
|
||||||
|
"-no-sse3"
|
||||||
|
"-no-ssse3"
|
||||||
|
"-no-sse4.1"
|
||||||
|
"-no-sse4.2"
|
||||||
|
"-no-avx"
|
||||||
|
"-no-avx2"
|
||||||
|
"-no-neon"
|
||||||
|
"-no-mips_dsp"
|
||||||
|
"-no-mips_dspr2"))))
|
||||||
%standard-phases)))
|
%standard-phases)))
|
||||||
(home-page "http://qt-project.org/")
|
(home-page "http://qt-project.org/")
|
||||||
(synopsis "Cross-platform GUI library")
|
(synopsis "Cross-platform GUI library")
|
||||||
|
|
Loading…
Reference in New Issue