diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-09-05 21:30:41 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-09-05 21:31:42 +0200 |
commit | cf59876e1e9e8615b2a1981d40cc131d89af0f36 (patch) | |
tree | ad372dfae4404e3a8be70d954046558be69dde1d /gnu/packages | |
parent | 392a552524b7801b4a5517e40d860c05f010c655 (diff) | |
download | guix-cf59876e1e9e8615b2a1981d40cc131d89af0f36.tar.gz guix-cf59876e1e9e8615b2a1981d40cc131d89af0f36.zip |
gnu: mpark-variant: Fix build.
* gnu/packages/cpp.scm (mpark-variant)[native-inputs]: Add gcc-12.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cpp.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 4951fdbc44..04fdc908ad 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -3132,7 +3132,7 @@ std::variant (formerly boost::variant) for C++11/14.") ((".*3rdparty/googletest.*\n") "") ((".*config_compiler_and_linker.*\n") "") (("gtest_main") "gtest gtest_main"))))))) - (native-inputs (list googletest)) + (native-inputs (list googletest gcc-12)) ; XXX: build fails with GCC 11 (home-page "https://github.com/mpark/variant") (synopsis "Implementation of std::variant for C++11/14/17") (description |