Handling non-standard or unsupported keywords

From STRIDE Wiki
Jump to: navigation, search

Many target compilers for specific systems support specialized non-standard keywords. Although the STRIDE compiler supports many of these, from time to time you may run into one that is not supported. This article describes how to handle this.

If an unrecognized keyword in your source file is preventing compilation in STRIDE, you can often work around the issue by adding an explicit empty preprocessor definition (ie macro) for the keyword.

For example if your source contains a keyword __inline__ that is not supported by STRIDE and is preventing successful compilation, then you remedy this by adding the following to the preprocessor definitions.

-D__inline__=

This line instructs the STRIDE preprocessor to replace occurrence of the keyword with nothing, causing the STRIDE compiler to effectively ignore it.