-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Add Trusty OS as tier 3 target #103895
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
Add Trusty OS as tier 3 target #103895
Changes from 1 commit
dcd0c58
f197145
12053c9
c7f8752
884f307
43c1e77
ab51f64
83369cd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,8 +143,9 @@ impl Target { | |
assert!(self.executables); | ||
} | ||
|
||
// Check crt static stuff | ||
if self.crt_static_default || self.crt_static_allows_dylibs { | ||
// Check crt static stuff. Trusy only supports crt static and so does not enable | ||
randomPoison marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
// `crt_static_respected`. | ||
if (self.crt_static_default || self.crt_static_allows_dylibs) && self.os != "trusty" { | ||
|
||
assert!(self.crt_static_respected); | ||
} | ||
} | ||
|
Uh oh!
There was an error while loading. Please reload this page.