blob: b3dd209dc98faae0cd9b5871056af3ff76e4263e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
From: Jakub Jirutka <jakub@jirutka.cz>
Date: Thu, 04 Aug 2016 17:53:00 +0200
Subject: [PATCH] Workaround for external LLVM built with LLVM_ENABLE_FFI
Workaround for problem with LLVM_ENABLE_FFI described in
https://github.com/rust-lang/rust/issues/34486.
--- a/src/librustc_llvm/lib.rs
+++ b/src/librustc_llvm/lib.rs
@@ -422,3 +422,6 @@
}
}
}
+
+#[link(name = "ffi")]
+extern {}
|