Unverified Commit f2f18b04 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Merge #241628: gdc: switch to gdc11 for now

parents 7363eedd 15f3926b
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -15841,9 +15841,10 @@ with pkgs;
  gcc-arm-embedded-12 = callPackage ../development/compilers/gcc-arm-embedded/12 { };
  gcc-arm-embedded = gcc-arm-embedded-12;
  # Has to match the default gcc so that there are no linking errors when
  # using C/C++ libraries in D packages
  gdc = wrapCC (gcc.cc.override {
  # It would be better to match the default gcc so that there are no linking errors
  # when using C/C++ libraries in D packages, but right now versions >= 12 are broken.
  gdc = gdc11;
  gdc11 = wrapCC (gcc11.cc.override {
    name = "gdc";
    langCC = false;
    langC = false;