...
Option | Option display | Description |
---|---|---|
Option to specify the maximum memory segment size | -bmaxdata | When compiling a 32bit program, specify the maximum usable memory segment size (default 256M) |
Option to specify the 32bit/64 compile mode | -q32 | When compiling a 32bit program |
-q64 | When compiling a 64bit program | |
Compiler optimizzation mode | -O2 | Using the Compiler Optimization Level 2 |
Option to use inline function | -qinline | Enable inline function instead of the function call to improve the performance |
Option for runtime linking | -brtl | Option for runtime linking, set when using a shared library |
Option for symbol export | -bexpall | Option to export the global symbol when creating a shared library |
...