[clang] [rtsan] Update docs to include run-time flags (PR #110296)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Sep 27 12:24:43 PDT 2024
================
@@ -84,6 +84,75 @@ non-zero exit code.
#14 0x0001958960dc (<unknown module>)
#15 0x2f557ffffffffffc (<unknown module>)
+Run-time flags
+--------------
+
+RealtimeSanitizer supports a number of run-time flags, which can be specified in the ``RTSAN_OPTIONS`` environment variable:
+
+.. code-block:: console
+
+ % RTSAN_OPTIONS=option_1=true:path_option_2="/some/file.txt" ./a.out
+ ...
+
+Or at compile-time by overloading the symbol ``__rtsan_default_options``:
----------------
davidtrevelyan wrote:
I've also seen "override" as a term for a strong symbol being selected over a weak symbol - would that be appropriate here? We could say something like `Or at compile-time by overriding the weak symbol ``__rtsan_default_options`` `. I also like making the visibility attribute explicit on the code block 👍
https://github.com/llvm/llvm-project/pull/110296
More information about the cfe-commits
mailing list