about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2024-02-04 19:09:58 +0000
committerThiago Kenji Okada <thiagokokada@gmail.com>2024-02-04 19:09:58 +0000
commit4227238abcd4a1e8e29d8bc292b9e8f4b8907361 (patch)
treec98eefa7cf34fb5d406fbc5e2be2b4da4f113591
parentb69a66ec7515d767c3b20d40bfc25307b91c7973 (diff)
downloadnixlib-4227238abcd4a1e8e29d8bc292b9e8f4b8907361.tar
nixlib-4227238abcd4a1e8e29d8bc292b9e8f4b8907361.tar.gz
nixlib-4227238abcd4a1e8e29d8bc292b9e8f4b8907361.tar.bz2
nixlib-4227238abcd4a1e8e29d8bc292b9e8f4b8907361.tar.lz
nixlib-4227238abcd4a1e8e29d8bc292b9e8f4b8907361.tar.xz
nixlib-4227238abcd4a1e8e29d8bc292b9e8f4b8907361.tar.zst
nixlib-4227238abcd4a1e8e29d8bc292b9e8f4b8907361.zip
libretro.mupen64plus: remove workaround for GCC13
-rw-r--r--pkgs/applications/emulators/retroarch/cores.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/applications/emulators/retroarch/cores.nix b/pkgs/applications/emulators/retroarch/cores.nix
index a54d3868a071..6bc6d4ecc2c7 100644
--- a/pkgs/applications/emulators/retroarch/cores.nix
+++ b/pkgs/applications/emulators/retroarch/cores.nix
@@ -678,11 +678,6 @@ 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;