We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On BSD system the "make" program isn't GNU-make, and the Makefile format aren't strictly compatible.
For example, src/libstd/build.rs try to invoke make to build libbacktrace. Same problem in src/bootstrap/check.rs.
make
libbacktrace
The "make" program should be configurable. GNU-make is generally "gmake" on BSD.
The text was updated successfully, but these errors were encountered:
I started to work on it.
Sorry, something went wrong.
a7d9025
let BSD to use gmake for GNU-make
1dfb78f
the diff extends build_helper to provide an function to return the expected name of GNU-make on the host: "make" or "gmake". Fixes rust-lang#38429
No branches or pull requests
On BSD system the "make" program isn't GNU-make, and the Makefile format aren't strictly compatible.
For example, src/libstd/build.rs try to invoke
make
to buildlibbacktrace
. Same problem in src/bootstrap/check.rs.The "make" program should be configurable. GNU-make is generally "gmake" on BSD.
The text was updated successfully, but these errors were encountered: