Hi Bruno, Bruno Haible via Gnulib discussion list <bug-gnulib@gnu.org> writes:
> On Cygwin, the GNU D compiler (gdc) is installed without its standard > library. As a consequence, it cannot compile anything. This leads to build > errors later in GNU gettext. > > It is better if the configure test catches this situation and treats it > like if no D compiler is installed. This patch does it. Is the gdc package buggy or is it a freestanding compiler? For example compile code for a bootloader/operating system you would do: $ gcc -ffreestanding -nostdlib -nostdinc ... Not sure if gdc uses the same arguments. And I guess for the purpose of this script it does not matter since gettext requires a working stdlib. But it would be nice to report it if it is a bug. Collin