Handling non-standard or unsupported keywords: Difference between revisions

From STRIDE Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(17 intermediate revisions by 5 users not shown)
Line 1: Line 1:
For example if the <tt>__inline__</tt> keyword is missing or unsupported, you can work around it by adding <tt>'__inline__='</tt> to the workspace definitions.
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.  


[[Category:KB]]
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.
[[Category:SCL]]
 
For example if your source contains a keyword <tt>__inline__</tt> 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.
 
 
[[Category:Build Tools]]

Latest revision as of 15:54, 7 June 2010

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.