Futurebasic/Language/Reference/compile shutdown
< Futurebasic | Language | Reference
COMPILE SHUTDOWN statementEdit
COMPILE SHUTDOWNEdit
StatementEdit
✔ Appearance ✔ Standard ✔ Console
SyntaxEdit
COMPILE SHUTDOWN "Optional Quoted Remark"
DescriptionEdit
You may have some code that is specifically designed for one platform or another. For instance, 68K assembly cannot be compiled into a PPC application. In such cases, COMPILE SHUTDOWN
would abort the compile process with an error and show the offending line complete with the optional quoted remark.
ExampleEdit
COMPILE LONG IF cpuPPC
COMPILE SHUTDOWN "This won't work in PPC."
COMPILE XELSE
` move.l d0,-(SP)
COMPILE END IF