-
Notifications
You must be signed in to change notification settings - Fork 13.5k
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.
Show resolved
Hide resolved
|
||
// `crt_static_respected`. | ||
if (self.crt_static_default || self.crt_static_allows_dylibs) && self.os != "trusty" { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How do other crt static only targets handle this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As far as I can tell, it looks like the other targets that set There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wasm32-wasi is an example of a target that only supports static linking of libc. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yup, and that target is using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess. |
||
assert!(self.crt_static_respected); | ||
} | ||
} | ||
|
Uh oh!
There was an error while loading. Please reload this page.