Futurebasic/Language/Reference/compile shutdown

COMPILE SHUTDOWN statement edit

COMPILE SHUTDOWN edit

Statement edit

✔ Appearance ✔ Standard ✔ Console

Syntax edit

COMPILE SHUTDOWN "Optional Quoted Remark"

Description edit

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.

Example edit

COMPILE LONG IF cpuPPC
  COMPILE SHUTDOWN "This won't work in PPC."
COMPILE XELSE
  `     move.l   d0,-(SP) COMPILE END IF