-
-
Notifications
You must be signed in to change notification settings - Fork 749
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
Faild build On OSX 10.11(Elp) #255
Comments
I'm also seeing the same issue on OSX 10.11
|
It looks like OSX 10.11 doesn't ship with openssl anymore. You'll need to install your own copy I guess. |
i fix it as: |
This worked for me (when building Servo): export OPENSSL_INCLUDE_DIR=/usr/local/Cellar/openssl/1.0.2d_1/include/ |
I install the openssl using Homebrew, and the this works for me: |
I had to do both of the following to get it to work, rather than just the first one (fish, not bash). Not sure what is up with that, but if the above by itself doesn't work, try this! set -x OPENSSL_INCLUDE_DIR /usr/local/opt/openssl/include
set -x OPENSSL_ROOT_DIR /usr/local/opt/openssl
|
I also had success doing |
OSX doesn't ship OpenSSL headers anymore starting with El Capitan. |
Same observation as #255 (comment), relinking openssl with brew fixed the build for me as well. |
But probably it's not the best solution to this problem, as
|
Same problem here on Mac OS X 10.11 (El Capitan). Running |
Hey folks, same issue. Unfortunately the Homebrew solution didn't work for me. Anyone have any other ideas? |
|
thinks.is fix. |
I tried all the suggestions in this ticket, I am using homebrew via boxen so my openssl is installed under /opt/boxen/homebrew/Cellar/openssl/1.0.2e/include/ on OS X 10.11.2 (El Capitan) and this solved it for me
I am posting this in an effort to help any others seeking to find a solution |
I fix it as: |
I have the same problem on Ubuntu 14.04, any ideas what to do there? I have this: Though |
Never mind, my issue was while installing Eve, and there I found a solution, |
As iszak mentioned, I too had to export |
@herrernst Try |
@andrewtj You're right, thanks. |
This is still an issue; it was not helped by
|
@tamird did you |
No combination of the above suggestions seem to be working for me... I either get a link error for |
Fixed with Alsmile's recommendation:
|
Fixed with Alsmile's recommendation using macports:
|
I couldn't get any suggestions to work, but a clean install of |
I had to update CLFAGS with export CFLAGS="-I /usr/local/opt/openssl/include" |
Thanks guys. I first tried the
This was on Yosemite 10.10.5 |
@larsbergstrom thank you very much, your advice about |
Upstream Homebrew seems to refuse to link it anymore. :( |
Yay! I'm working on adjusting some APIs to hopefully allow openssl to build without requiring headers to be installed for the basic feature set. Should make it "just work" on OSX. |
upstream homebrew refuse to link.
|
I use macOS Sierra and zsh
|
One solution would be to check for the OS version and if it fails then print the paragraph from the Readme.md#L34-L40 that explains how to build under OSX 10.11. This is how other people deal with this kind of problem until there is a real fix. This would have certainly saved me 5 minutes of my life, and after checking the options, i conclude that exporting Env vars is the most elegant solution in the moment. |
Yep, that would definitely be a reasonable thing to do. Want to open a PR? |
I am fairly new to Rust and it is 4 o'clock in the morning. How would I catch the c compiler exit() return value from the build.rs main(). I just checked my 10.9 installation and found
so pkg-config then check if ssl.h is to be found in any of
now check the env for
if all of that returned false or empty then panic. Any suggestion on how to catch the llvm error. |
For lurkers, on El Capitan (osx) I needed to add the following in my export OPENSSL_INCLUDE_DIR=`brew --prefix openssl`/include
export OPENSSL_LIB_DIR=`brew --prefix openssl`/lib
export DEP_OPENSSL_INCLUDE=`brew --prefix openssl`/include |
Turns out the OpenSSL problem on OSX is well known: sfackler/rust-openssl#255 . Trying the most recent and comprehensive-looking suggestion.
This worked for me on MacPorts: export OPENSSL_INCLUDE_DIR=/opt/local/include I do seem to be running into some kind of conflict with libgit2_sys (rust-lang/cargo#3538); I've seen similar bugs opened but not yet sure what the actual cause is. The problem does go away when using brew instead of macports. |
If you're using the Nix package manager, I found that the following works:
|
failed to run custom build command for
openssl-sys v0.6.4
Process didn't exit successfully:
/Users/misko/developer/rust_projects/aws-simple-sdk.rs/target/debug/build/openssl-sys-149f6ef08ad7404d/build-script-build
(exit code: 101)--- stdout
cargo:rustc-link-search=native=/usr/lib
cargo:rustc-link-lib=ssl
cargo:rustc-link-lib=crypto
cargo:rustc-link-lib=z
TARGET = Some("x86_64-apple-darwin")
TARGET = Some("x86_64-apple-darwin")
CARGO_MANIFEST_DIR = Some("/Users/misko/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.6.4")
OUT_DIR = Some("/Users/misko/developer/rust_projects/aws-simple-sdk.rs/target/debug/build/openssl-sys-149f6ef08ad7404d/out")
OPT_LEVEL = Some("0")
PROFILE = Some("debug")
debug 0
TARGET = Some("x86_64-apple-darwin")
HOST = Some("x86_64-apple-darwin")
CC_x86_64-apple-darwin = None
CC_x86_64_apple_darwin = None
HOST_CC = None
CC = None
TARGET = Some("x86_64-apple-darwin")
HOST = Some("x86_64-apple-darwin")
CFLAGS_x86_64-apple-darwin = None
CFLAGS_x86_64_apple_darwin = None
HOST_CFLAGS = None
CFLAGS = None
running: "cc" "-O0" "-c" "-ffunction-sections" "-fdata-sections" "-g" "-m64" "-fPIC" "-o" "/Users/misko/developer/rust_projects/aws-simple-sdk.rs/target/debug/build/openssl-sys-149f6ef08ad7404d/out/src/openssl_shim.o" "/Users/misko/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.6.4/src/openssl_shim.c"
command did not execute successfully, got: exit code: 1
--- stderr
/Users/misko/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.6.4/src/openssl_shim.c:1:10: fatal error: 'openssl/hmac.h' file not found
include <openssl/hmac.h>
1 error generated.
' panicked at 'explicit panic', /Users/misko/.cargo/registry/src/github.com-1ecc6299db9ec823/gcc-0.3.13/src/lib.rs:510thread '
The text was updated successfully, but these errors were encountered: