I get RTS error 155 (“Illegal command line”) when I build my application; but I don have a command line. Whats going on?
A. When the IDE calls the compiler, it passes it information in a command line. The command line contains the compiler directives for your program, and the RTS error 155 usually means a directive is invalid. To see the directives, and find out which one is in error, do the following. If you are building a project: • Click Project on the Options menu, and ensure the Verbose Build Output box is checked. Click OK. • In the Project window, right-click the source file giving the error, then click Build Settings, then click the Project tab, and type the directive ENSUITE”3″ at the end of the list of directives, immediately before the semicolon. Click Close. • Right-click the Project window, then click Project Properties, then in the Project Directives field type the directive CONFIRM immediately after %FILENAME (separated by spaces) and remove the directive ENSUITE”3″. Click OK. • Rebuild your project. You now get more information about the processing of the directives. The offending directi