Visible to Intel only — GUID: GUID-B367BCE2-9783-448D-AE5C-AD68F0E0EA69
Visible to Intel only — GUID: GUID-B367BCE2-9783-448D-AE5C-AD68F0E0EA69
fsanitize
Enables the specified code sanitizer to detect certain issues at runtime. This feature is only available for ifx.
Syntax
Linux: |
-fsanitize=sanitizer |
Windows: |
/fsanitize=sanitizer |
Arguments
sanitizer |
Specifies the code sanitizer to use. You can only specify one sanitizer. Possible values are:
|
Default
OFF |
The sanitizers follow default heuristics at runtime. |
Description
This option enables the specified code sanitizer to detect certain issues at runtime.
Option fsanitize is especially useful when you want to make sure that your program is free of the various issues detected by the sanitizers, or when your program behaves erratically, and you cannot pinpoint the issue by inspecting the source code or by using a debugger.
When running a thread-sanitized OpenMP program, please set the environment variable "OMP_TOOL_LIBRARIES='libarcher.so'" to get more accurate data race detections.
You should not specify fsanitize when building production code.
To ensure that the required runtime libraries are linked and correctly initialized, specify option -fsanitize in the link command if any part of the object file is compiled with this option.
This option only applies to host compilation. When offloading is enabled, it does not impact device-specific compilation.
IDE Equivalent
Alternate Options
None