Entering this command without parameters starts an interactive mode of the PSL compiler. It executes everything that you type at a prompt that precedes the end of file (EOF) character, which is Ctrl+d or Ctrl+c on most platforms.
This option implicitly includes the -n option; that is, the -ooption does not schedule outfile for execution after compilation.
The PSL compiler may add a .libor .bin extension to outfile if you selected the -lor -b option respectively.
This option is equivalent to including the statement PslDebug = 0; in the PSL script.
inform the PSL compiler that statically or dynamically loaded libraries are required for the compilation
Default
No statically or dynamically loaded libraries are required for the compilation.
specify the user-defined function function name within the PSL source file as the execution entry point for the compiled program.
Default
Execution begins with the first statement within inputfile that is not part of a user-defined function definition.
list of user library names that should be statically loaded for compilation. Library names should have the format library_name.lib. The PSL compiler loads any library
name without the .lib extension dynamically unless the -l flag is specified.
directory paths to search for libraries included in PSL by a requires statement. For Windows systems, the paths should be separated by colons. On Unix system, the paths should be separated by semi-colons.