Replace `build.sh` and `build.cmd` with `build.d`
Since dub needs a D compiler anyway, we might follow in DMD's step and use D for building,
as it is more reliable and expressive than a shell script as features pile up.

This unifies the two scripts to expose the same set of functionalities on all platforms,
with a behavior that is hopefully more sensible
(tradeoff and reasoning are explained through the code / documentation).
It is also completely independent from the current working directory.

Some discrepancies included:
- Name of the variable to override to select the compiler (DC vs DMD);
- Version file: Windows was always regenerating it;
- Version file: Windows would display "unknown" if `dub describe` failed,
  POSIX would use an empty string;
- Compiler detection: POSIX would detect ldmd2 / gdmd if dmd is not present,
  Windows would just fail;

All those functionalities are now unified in a single script.
The old script are kept for compatibility, but forward to the new script,
and can be removed in a few releases.
1 parent 2e9a26a commit 3115922a933b7a00a85e112d1ebb18529f3919cb
@Geod24 Geod24 authored on 18 Dec 2019
Showing 3 changed files
View
build.cmd
View
build.d 0 → 100755
View
build.sh