Visible to Intel only — GUID: GUID-E65FC029-9273-4CDD-8C4C-3372B9A60DC7
Visible to Intel only — GUID: GUID-E65FC029-9273-4CDD-8C4C-3372B9A60DC7
fexceptions
Enables exception handling table generation.
Linux: |
-fexceptions -fno-exceptions |
Windows: |
None |
None
-fexceptions |
Exception handling table generation is enabled. Default for C++. |
-fno-exceptions |
Exception handling table generation is disabled. Default for C. |
This option enables exception handling table generation. The -fno-exceptions option disables exception handling table generation, resulting in smaller code. When this option is used, any use of exception handling constructs (such as try blocks and throw statements) will produce an error. Exception specifications are parsed but ignored. It also undefines the preprocessor symbol __EXCEPTIONS.
None