Hi I am trying to get a RTX166 (RTOS) project to build; and I had successfully compiled all project files (main.c, myapp.c, and RtxConf.c66), but somehow compiling RtxConf.c66 does not yield a RtxConf.OBJ file; and therefore the linking fails. Has anyone come across similar problems? Is it a compiler version problem? Thanks very much, Larry
rtxconf.c66 has the '#pragam src' directive. This means that instead of making an OBJ file it generates a SRC file (assembler source file). So it requires two steps to generate an object file. To solve your problem, change the 'options' for rtxconf.c66 in your project: make sure that 'Assemble SRC file' is checked.