MacOS 10.13.6, make -v = GNU Make 4.2.1 Built for x86_64-apple-darwin17.7.0
cd depends
make HOST=x86_64-apple-darwin17.7.0
Results in error:
builders/darwin.mk:1: *** empty variable name. Stop.
This seems to fix it.
MacOS 10.13.6, make -v = GNU Make 4.2.1 Built for x86_64-apple-darwin17.7.0
cd depends
make HOST=x86_64-apple-darwin17.7.0
Results in error:
builders/darwin.mk:1: *** empty variable name. Stop.
This seems to fix it.
<!--e57a25ab6845829454e8d69fc972939a-->
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
<!--174a7506f384e20aa4161008e828411d-->
No conflicts as of last run.
tACK 63c74d2
So depends works fine with the macOS make (GNU Make 3.81, built for i386-apple-darwin11.3.0).
However a brew installed make (GNU Make 4.2.1, built for x86_64-apple-darwin18.0.0), which isgmake here, does not work.
I assume backward-incompatible changes from 3.82 or 4.0 are the problem.
master (b740788):
cd depends
gmake --version
GNU Make 4.2.1
$ gmake -j6
builders/darwin.mk:1: *** empty variable name. Stop.
This PR (63c74d2), using NO_QT=1 because building qt with newer make is broken, see #14648:
cd depends
gmake NO_QT=1 -j6
.....
Caching miniupnpc...
copying packages: native_biplist native_ds_store native_mac_alias boost openssl libevent zeromq bdb miniupnpc
to: /Users/michael/github/bitcoin/depends/x86_64-apple-darwin18.2.0
Backport me?