From 1572de8d203cbddeab81e4f005db55eb81276693 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 22 May 2022 20:35:39 +0100 Subject: pcsxr: add -fcommon workaround Workaround build failure on -fno-common toolchains like upstream gcc-10. Otherwise build fails as: ld: AboutDlg.o:/build/pcsxr/gui/Linux.h:42: multiple definition of `cfgfile'; LnxMain.o:/build/pcsxr/gui/Linux.h:42: first defined here --- pkgs/applications/emulators/pcsxr/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'pkgs/applications/emulators') diff --git a/pkgs/applications/emulators/pcsxr/default.nix b/pkgs/applications/emulators/pcsxr/default.nix index e3126efe82d..2c178dc72f5 100644 --- a/pkgs/applications/emulators/pcsxr/default.nix +++ b/pkgs/applications/emulators/pcsxr/default.nix @@ -56,6 +56,12 @@ stdenv.mkDerivation rec { xorg.libXxf86vm ]; + # Workaround build failure on -fno-common toolchains like upstream + # gcc-10. Otherwise build fails as: + # ld: AboutDlg.o:/build/pcsxr/gui/Linux.h:42: multiple definition of `cfgfile'; + # LnxMain.o:/build/pcsxr/gui/Linux.h:42: first defined here + NIX_CFLAGS_COMPILE = "-fcommon"; + dynarecTarget = if stdenv.isx86_64 then "x86_64" else if stdenv.isi686 then "x86" @@ -81,7 +87,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Playstation 1 emulator"; - homepage = "https://pcsxr.codeplex.com/"; + homepage = "https://github.com/iCatButler/pcsxr"; maintainers = with maintainers; [ rardiol ]; license = licenses.gpl2Plus; platforms = platforms.all; -- cgit 1.4.1