Unverified Commit e6e2deb1 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

Merge pull request #331373 from GaetanLepage/dmd

dmd: mark as broken on x86_64-darwin
parents 8cf30df9 489a8c02
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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;
  };
})