-
-
Notifications
You must be signed in to change notification settings - Fork 159
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
Upgrade tcl/tk from 8.6.12 to 8.6.14 on Unix #495
Changes from all commits
309e29f
6a9e885
b96ea57
535b21d
2a19442
13c19bd
b209c0f
fc87b2d
85714a1
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 |
---|---|---|
|
@@ -238,7 +238,10 @@ static ELF_ALLOWED_LIBRARIES_BY_TRIPLE: Lazy<HashMap<&'static str, Vec<&'static | |
), | ||
("mips64el-unknown-linux-gnuabi64", vec![]), | ||
("ppc64le-unknown-linux-gnu", vec!["ld64.so.1", "ld64.so.2"]), | ||
("riscv64-unknown-linux-gnu", vec!["ld-linux-riscv64-lp64d.so.1", "libatomic.so.1"]), | ||
( | ||
"riscv64-unknown-linux-gnu", | ||
vec!["ld-linux-riscv64-lp64d.so.1", "libatomic.so.1"], | ||
), | ||
Comment on lines
-241
to
+244
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 started at this a bunch hoping to win at Spot The Difference That Makes It Longer So rustfmt Rewraps It but i lost. weird. 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. Yeah I have no clue. I just accepted it. |
||
("s390x-unknown-linux-gnu", vec!["ld64.so.1"]), | ||
("x86_64-unknown-linux-gnu", vec!["ld-linux-x86-64.so.2"]), | ||
("x86_64_v2-unknown-linux-gnu", vec!["ld-linux-x86-64.so.2"]), | ||
|
@@ -394,6 +397,11 @@ static DARWIN_ALLOWED_DYLIBS: Lazy<Vec<MachOAllowedDylib>> = Lazy::new(|| { | |
max_compatibility_version: "1.0.0".try_into().unwrap(), | ||
required: true, | ||
}, | ||
MachOAllowedDylib { | ||
name: "/System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers".to_string(), | ||
max_compatibility_version: "1.0.0".try_into().unwrap(), | ||
required: true, | ||
}, | ||
MachOAllowedDylib { | ||
name: "/usr/lib/libedit.3.dylib".to_string(), | ||
max_compatibility_version: "2.0.0".try_into().unwrap(), | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This updated, but not used here yet.