[LLVM-3.9] Configure PIE at the module level instead of compilation unit level

This was deleted here[1] which appears to be replaced by this[2]
which is a new setPIELevel function on the LLVM module itself.

[1]: http://reviews.llvm.org/D19753
[2]: http://reviews.llvm.org/D19671
This commit is contained in:
Jan-Erik Rediger 2016-07-13 00:41:40 +02:00
parent dbb4178f4e
commit 9e706f90cb
3 changed files with 12 additions and 0 deletions

View file

@ -352,6 +352,7 @@ unsafe fn create_context_and_module(sess: &Session, mod_name: &str) -> (ContextR
let llvm_target = sess.target.target.llvm_target.as_bytes();
let llvm_target = CString::new(llvm_target).unwrap();
llvm::LLVMRustSetNormalizedTarget(llmod, llvm_target.as_ptr());
llvm::LLVMRustSetModulePIELevel(llmod);
(llcx, llmod)
}