Intel® C++ Compiler 16.0 User and Reference Guide
Lets you specify an alternate algorithm for malloc(). Option -qopt-malloc-options is the replacement option for -opt-malloc-options, which is deprecated.
Linux and OS X: | -qopt-malloc-options=n |
Windows: | None |
n |
Specifies the algorithm to use for malloc(). Possible values are:
|
-qopt-malloc-options=0 |
The compiler uses the default algorithm when malloc() is called. No call is made to mallopt(). |
This option lets you specify an alternate algorithm for malloc().
If you specify a non-zero value for n, it causes alternate configuration parameters to be set for how malloc() allocates and frees memory. It tells the compiler to insert calls to mallopt() to adjust these parameters to malloc() for dynamic memory allocation. This may improve speed.
None