-
Notifications
You must be signed in to change notification settings - Fork 708
New issue
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
Fix issue #287, #311 - Support building on *BSD #313
Conversation
- build.rs * Default to `gmake` on BSD systems * Support `MAKE` variable for pointing to correct `make` - mk/top_of_makefile.mk * Allow target triple on BSD* not to have abi (e.g. x86_64-unknown-freebsd) - BUILDING.md * Add descriptions about `MAKE` variable. I agree to license my contributions to each file under the terms given at the top of each file I changed.
Test Log
|
Thanks a lot! I don't have a BSD system handy so I'll take your word for it that this fixes the build. And thanks to @tymat for testing it. If you are interested in better BSD support, one obvious next step would be to replace the implementation of |
@briansmith Thanks for merging.
OK. Let me work on that. I did a bit of research and
http://man.openbsd.org/OpenBSD-6.0/arc4random.3
|
Great. I filed a new issue #316 to discuss it. |
gmake
on BSD systemsMAKE
variable for pointing to correctmake
MAKE
variable.This is take 2 of PR #290 created by @GrappigPanda, and will address the build issue on *BSD systems:
Tested on FreeBSD 10.3-RELEASE (amd64) using
cargo test
.@briansmith @oherrala Can you please review?