dlang_compile_bin uses the DC variable to compile the source files. Since we're selfhosting we have to tell it the path of the compiler otherwise it will be left with a useless value, in this case dmd, hiding the bug when the dmd package was installed on the system.
I am not sure if the path should be relative or absolute, $DMD currently is: linux/bin64/dmd. Perhaps DC=${S}/${DMD} would be better.
dlang_compile_bin
uses theDC
variable to compile the source files. Since we're selfhosting we have to tell it the path of the compiler otherwise it will be left with a useless value, in this casedmd
, hiding the bug when the dmd package was installed on the system.I am not sure if the path should be relative or absolute,
$DMD
currently is:linux/bin64/dmd
. PerhapsDC=${S}/${DMD}
would be better.