You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For C++ libraries, the `CXX` and `CXXFLAGS` environment variables are used instead of `CC` and `CFLAGS`.
163
163
164
-
The C++ standard library may be linked to the crate target. By default it's `libc++` for OS X, FreeBSD, and OpenBSD, `libc++_shared` for Android, nothing for MSVC, and `libstdc++` for anything else. It can be changed in one of two ways:
164
+
The C++ standard library may be linked to the crate target. By default it's `libc++` for macOS, FreeBSD, and OpenBSD, `libc++_shared` for Android, nothing for MSVC, and `libstdc++` for anything else. It can be changed in one of two ways:
165
165
166
166
1. by using the `cpp_link_stdlib` method on `Build`:
167
167
```rust,no-run
@@ -209,9 +209,9 @@ fn main() {
209
209
This project is licensed under either of
210
210
211
211
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
0 commit comments