We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9808647 commit 043eb97Copy full SHA for 043eb97
1 file changed
rule-preprocessor/src/semantic.rs
@@ -46,7 +46,7 @@ fn build_rustc_args(crate_root: &Path) -> Vec<String> {
46
args.push("-L".to_string());
47
args.push(format!("dependency={}", deps.display()));
48
49
- for dep in &["libcc2rs", "libc", "brotli_sys", "rustls_ffi"] {
+ for dep in &["libcc2rs", "libc", "brotli_sys"] {
50
if let Some(rlib) = find_rlib(deps.as_path(), dep) {
51
args.push("--extern".to_string());
52
args.push(format!("{}={}", dep, rlib.display()));
0 commit comments