Merge #241628: gdc: switch to gdc11 for now

This commit is contained in:
Vladimír Čunát 2023-07-20 10:42:58 +02:00
commit f2f18b0490
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -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;