mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
zsnes: pin to c++14 to fix build with gcc-11
Without the change build on `master` fails as: jma/jma.h:67:28: error: ISO C++17 does not allow dynamic exception specifications 67 | jma_open(const char *) throw(jma_errors); | ^~~~~ ZHF: https://github.com/NixOS/nixpkgs/issues/199919
This commit is contained in:
parent
99801a56d7
commit
eccb0a9b80
@ -34,7 +34,8 @@ in stdenv.mkDerivation {
|
||||
|
||||
# Workaround build failure on -fno-common toolchains:
|
||||
# ld: initc.o:(.bss+0x28): multiple definition of `HacksDisable'; cfg.o:(.bss+0x59e3): first defined here
|
||||
NIX_CFLAGS_COMPILE = "-fcommon";
|
||||
# Use pre-c++17 standard (c++17 forbids throw annotations)
|
||||
NIX_CFLAGS_COMPILE = "-fcommon -std=c++14";
|
||||
|
||||
preConfigure = ''
|
||||
cd src
|
||||
|
Loading…
Reference in New Issue
Block a user