[clang] [RISCV] Implement shadow stack on shadow stack mode with Zicfiss. (PR #68075)

Paul Kirth via cfe-commits cfe-commits at lists.llvm.org
Tue Oct 17 11:18:42 PDT 2023


================
@@ -27,6 +27,11 @@
 
 using namespace llvm;
 
+static cl::opt<bool>
----------------
ilovepi wrote:

 is it possible to use something other than a `cl::opt`? I know we make heavy use of them to control codegen options, but they tend to get dropped on the floor easily if you have to forward `-mllvm` options to the linker in LTO/ThinLTO builds. This is a constant pain point for a lot of folks who need to support multiple build configurations, like the Linux kernel, Fuchsia, Android, or Chrome. 

https://github.com/llvm/llvm-project/pull/68075


More information about the cfe-commits mailing list