diff options
| author | Miguel Ojeda <ojeda@kernel.org> | 2023-10-18 16:58:17 +0200 |
|---|---|---|
| committer | Miguel Ojeda <ojeda@kernel.org> | 2023-11-30 20:21:31 +0100 |
| commit | 2d476222e8458aa873e6760aac189b5e9d0a9930 (patch) | |
| tree | e6bbad1f875d945ccaf1abb5f67d35b7f57a761a /compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp | |
| parent | d3c9964c2037034b42dac7ad40e9950de3063fd8 (diff) | |
| download | rust-2d476222e8458aa873e6760aac189b5e9d0a9930.tar.gz rust-2d476222e8458aa873e6760aac189b5e9d0a9930.zip | |
Add `-Zfunction-return={keep,thunk-extern}` option
This is intended to be used for Linux kernel RETHUNK builds. With this commit (optionally backported to Rust 1.73.0), plus a patched Linux kernel to pass the flag, I get a RETHUNK build with Rust enabled that is `objtool`-warning-free and is able to boot in QEMU and load a sample Rust kernel module. Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp')
| -rw-r--r-- | compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp index bf870e28acd..b227dd76f02 100644 --- a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp +++ b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp @@ -278,6 +278,8 @@ static Attribute::AttrKind fromRust(LLVMRustAttribute Kind) { return Attribute::AllocAlign; case SanitizeSafeStack: return Attribute::SafeStack; + case FnRetThunkExtern: + return Attribute::FnRetThunkExtern; } report_fatal_error("bad AttributeKind"); } |
