diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-02-10 18:38:57 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2023-02-10 18:38:57 +0100 |
commit | 5978ceb2715127cd081146272fc910f17232b5ec (patch) | |
tree | 105ec05b11790fac88daf49b6a3f570b7c6803a3 /perl | |
parent | 9ebbe35817a7f7becf77d9f0cd76c54d693f6f28 (diff) |
Fix building with GCC 9
Nixpkgs on aarch64-linux is currently stuck on GCC 9
(https://github.com/NixOS/nixpkgs/issues/208412) and using gcc11Stdenv
doesn't work either.
So use c++2a instead of c++20 for now. Unfortunately this means we
can't use some C++20 features for now (like std::span).
Diffstat (limited to 'perl')
-rw-r--r-- | perl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Makefile b/perl/Makefile index 2d759e6fc..c2c95f255 100644 --- a/perl/Makefile +++ b/perl/Makefile @@ -1,6 +1,6 @@ makefiles = local.mk -GLOBAL_CXXFLAGS += -g -Wall -std=c++20 -I ../src +GLOBAL_CXXFLAGS += -g -Wall -std=c++2a -I ../src -include Makefile.config |