‑‑exception_tables
Syntax
‑‑exception_tables={nocreate|unwind|cantunwind}
Parameters
| Does not generate entries. Uses the least amount of memory, but the result is undefined if an exception is propagated through a function without exception information. |
| Generates unwind entries that enable an exception to be correctly propagated through functions without exception information. |
| Generates no-unwind entries so that any attempt to propagate an exception through the function will result in a call to |
Description
Use this option to determine what the linker should do with functions that do not have exception information but which do have correct call frame information.
The compiler ensures that C functions get correct call frame information. For functions written in assembler language you need to use assembler directives to generate call frame information.
See also
Caution
To set this option, use Project>Options>Linker>Extra Options.