We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e016c03 commit 75e33d8Copy full SHA for 75e33d8
1 file changed
cargo-auditable/src/rustc_wrapper.rs
@@ -129,7 +129,6 @@ fn rustc_command_with_audit_data(rustc_path: &OsStr) -> Option<Command> {
129
if is_apple(&target_info) {
130
if args.bare_linker() {
131
command.arg("-Clink-arg=-u,_AUDITABLE_VERSION_INFO");
132
- panic!("Apple codepath reached, CI should fail");
133
} else {
134
command.arg("-Clink-arg=-Wl,-u,_AUDITABLE_VERSION_INFO");
135
}
@@ -144,7 +143,6 @@ fn rustc_command_with_audit_data(rustc_path: &OsStr) -> Option<Command> {
144
143
145
command.arg("-Clink-arg=-u");
146
command.arg("-Clink-arg=AUDITABLE_VERSION_INFO");
147
- panic!("POSIX codepath reached, CI should fail");
148
149
command.arg("-Clink-arg=-Wl,-u,AUDITABLE_VERSION_INFO");
150
0 commit comments