-
Notifications
You must be signed in to change notification settings - Fork 76
Compatibility mode
Zeex edited this page Apr 1, 2015
·
5 revisions
One of the features added in this compiler is a so called compatibility mode.
When running in this mode, the compiler will aim for best compatibility with the official SA-MP compiler, even on Linux. You can enable compatibility mode by passing -Z
to pawncc at the command line.
Below is the list of things that are different in compatibility mode:
-
__Pawn
constant remains unchanged (that is,0x0302
). - Automatic include guards are enabled -
_inc_filename
symbols will be generated as usual. - Windows path separators (
\
) in#include
directives are converted to native path separators on non-Windows platforms. On Linux they correspond to/
.