miranda: fix build with clang

This commit is contained in:
Ben Siraphob 2024-04-21 21:36:53 -04:00
parent 666bb4ea05
commit 91354da666
No known key found for this signature in database
GPG Key ID: 45F0E5D788143267
1 changed files with 5 additions and 1 deletions

View File

@ -55,7 +55,11 @@ stdenv.mkDerivation rec {
# Workaround build failure on -fno-common toolchains like upstream
# gcc-10. Otherwise build fails as:
# ld: types.o:(.bss+0x11b0): multiple definition of `current_file'; y.tab.o:(.bss+0x70): first defined here
env.NIX_CFLAGS_COMPILE = "-fcommon";
env.NIX_CFLAGS_COMPILE = toString ([
"-fcommon"
] ++ lib.optionals stdenv.cc.isClang [
"-Wno-error=int-conversion"
]);
makeFlags = [
"CC=${stdenv.cc.targetPrefix}cc"