diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-04-25 23:01:56 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-04-25 23:01:56 +0300 |
commit | aeda325cf1d3a6f9922ff8560fb2558513be68f3 (patch) | |
tree | 6096eaeca1aee9d0afc3da500c6d2a0d6861bd7c /gnu | |
parent | 97323e5262da0b352a1f1b9875d3a9ae688f37d2 (diff) | |
download | guix-aeda325cf1d3a6f9922ff8560fb2558513be68f3.tar.gz |
gnu: presage: Build with c++-14.
* gnu/packages/fcitx.scm (presage)[arguments]: Adjust configure-flags to use c++-14 cor CFLAGS and CXXFLAGS.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/fcitx.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/fcitx.scm b/gnu/packages/fcitx.scm index 2143419d3b..fcd8acb721 100644 --- a/gnu/packages/fcitx.scm +++ b/gnu/packages/fcitx.scm @@ -117,8 +117,8 @@ (arguments `(#:configure-flags (list - "CFLAGS=-Wno-narrowing" - "CXXFLAGS=-Wno-narrowing") + "CFLAGS=-Wno-narrowing -std=c++14" + "CXXFLAGS=-Wno-narrowing -std=c++14") #:phases (modify-phases %standard-phases (add-after 'install 'move-doc |