Github user jeking3 commented on a diff in the pull request:
https://github.com/apache/thrift/pull/1380#discussion_r172314698
--- Diff: lib/d/Makefile.am ---
@@ -136,54 +110,22 @@ docs: $(d_publicsources) src/thrift/index.d
#
# Hook custom library targets into the automake all/install targets.
#
-all-local: $(all_targets)
+all-local:
+ dub build --config=library --arch=x86_64 --build=debug --compiler=dmd
--- End diff --
Multiple problems:
1. All builds are 64-bit.
2. All builds are debug.
3. All builds require dmd. autoconf detects any of the three dlang
compilers that might be installed.
---