1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #331373 from GaetanLepage/dmd

dmd: mark as broken on x86_64-darwin
This commit is contained in:
Gaétan Lepage 2024-08-01 08:00:12 +02:00 committed by GitHub
commit e6e2deb14a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
};
})