Futurebasic/Language/Reference/compile shutdown
COMPILE SHUTDOWN statement
editCOMPILE SHUTDOWN
editStatement
edit✔ Appearance ✔ Standard ✔ Console
Syntax
editCOMPILE SHUTDOWN "Optional Quoted Remark"
Description
editYou 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.
Example
editCOMPILE LONG IF cpuPPC
COMPILE SHUTDOWN "This won't work in PPC."
COMPILE XELSE
` move.l d0,-(SP)
COMPILE END IF