Compiler flags

Ordinary flags

Compiler flags can also be given on the first line of a file using the COMPILERFLAGS pragma.

Code generator related flags

The following subset of the flags that may be of interest to the user.

CPU specific flags

Optimization

When the ``-O'' flag is used the following flags are in effect: -fauto-specialize, -ffail-strict, -ffast-gc-check, -fno-pre-tuple-sel, -fstrict-call, and -ftest-eval.

If the program is linked with the ``-O'' flag it will also use the memory more aggresively (at the expense of a small working set).

Error messages

Syntax analyser messages

NOT YET WRITTEN!!!

Compiler messages

This section is incomplete.

Linker messages

The linker may complain about undefined symbols. Usually this means that that you have forgotten to include some files during linking. It is usually possible to figure out the names of the functions by looking at the symbols the linker complains about.

If any of the symbols ``_USE_none'', ``_USE_heap'', or ``_USE_time'' are undefined it means that you have tried to mix files compiled with different profiling options.


Last modified: Sat Jul 27 18:46:29 MET DST 1996