Intel® C++ Compiler 16.0 User and Reference Guide
Changes the thread local storage (TLS) model.
Linux and OS X: | -ftls-model=model |
Windows: | None |
model |
Determines the TLS model used by the compiler. Possible values are:
|
OFF |
The compiler uses default heuristics when determining the thread-local storage model. |
This option changes the thread local storage (TLS) model. Thread-local storage is a mechanism by which variables are allocated in a way that causes one instance of the variable per extant thread.
For more information on the thread-storage localization models, see the appropriate gcc* documentation.
For more information on the thread-storage localization models, see the appropriate clang* documentation.
None