alexcrichton / openssl-src-rs

Source code and logic to build OpenSSL from source
Apache License 2.0
68 stars 113 forks source link

Fix build on macOS with latest cc crate #67

Closed benesch closed 4 years ago

benesch commented 4 years ago

cc v1.0.58 broke the macOS build by including the "-arch" flag in the default set of compiler flags. Strip it out, like we do for iOS targets.

Closes #66.

alexcrichton commented 4 years ago

👍 Thanks!