Merge pull request #266627 from wegank/cdrkit-clang

cdrkit: fix build with clang 16
This commit is contained in:
Weijia Wang
2023-11-10 16:19:09 +01:00
committed by GitHub
2 changed files with 9 additions and 1 deletions
+6 -1
View File
@@ -15,7 +15,12 @@ stdenv.mkDerivation rec {
lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Carbon IOKit iconv ]);
hardeningDisable = [ "format" ];
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isMusl "-D__THROW=";
env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.hostPlatform.isMusl [
"-D__THROW="
] ++ lib.optionals stdenv.cc.isClang [
"-Wno-error=int-conversion"
"-Wno-error=implicit-function-declaration"
]);
# efi-boot-patch extracted from http://arm.koji.fedoraproject.org/koji/rpminfo?rpmID=174244
patches = [ ./include-path.patch ./cdrkit-1.1.9-efi-boot.patch ./cdrkit-1.1.11-fno-common.patch ];
+3
View File
@@ -13,6 +13,9 @@ stdenv.mkDerivation rec {
substituteInPlace configure \
--replace /bin/echo echo \
--replace CXX=unknown ':'
'' + lib.optionalString stdenv.cc.isClang ''
substituteInPlace HTMLParser.C \
--replace "register " ""
'';
# the --prefix has no effect