dmd: mark as broken on x86_64-darwin

This commit is contained in:
Gaetan Lepage
2024-07-31 21:27:10 +02:00
parent c68bae3162
commit 489a8c0244
+3
View File
@@ -222,5 +222,8 @@ stdenv.mkDerivation (finalAttrs: {
mainProgram = "dmd";
maintainers = with maintainers; [ lionello dukc jtbx ];
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
# ld: section __DATA/__thread_bss has type zero-fill but non-zero file offset file '/private/tmp/nix-build-dmd-2.109.1.drv-0/.rdmd-301/rdmd-build.d-A1CF043A7D87C5E88A58F3C0EF5A0DF7/objs/build.o' for architecture x86_64
# clang-16: error: linker command failed with exit code 1 (use -v to see invocation)
broken = stdenv.isDarwin && stdenv.isx86_64;
};
})