mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
libretro.mupen64-plus: fix build under GCC 13
This commit is contained in:
parent
9fe5cee747
commit
3db3f2455f
@ -653,6 +653,11 @@ in
|
||||
"LLE=1"
|
||||
"WITH_DYNAREC=${stdenv.hostPlatform.parsed.cpu.name}"
|
||||
];
|
||||
# This CXXFLAGS hack works around the GCC 13 error:
|
||||
# 'uint32_t' was not declared in this scope
|
||||
# It can be removed if the issue filed upstream is resolved:
|
||||
# https://github.com/libretro/mupen64plus-libretro-nx/issues/515
|
||||
env.CXXFLAGS = "-include cstdint";
|
||||
meta = {
|
||||
description = "Libretro port of Mupen64 Plus, GL only";
|
||||
license = lib.licenses.gpl3Only;
|
||||
|
Loading…
Reference in New Issue
Block a user