Topic: Compile function needed
We need a facility to compile just the current source file.
This is so that, after working on one source file, one can compile it to check for errors before move on to another source file that needs further work.
It is also sometimes needed when an existing program needs debugging and just one source file needs to be re-compiled with the debug option set.
At present, when I want to compile just one source file, I have to,
- make some simple change to it. like adding a space at the end of a line,
- SAVE the file, and
- BUILD the PROJECT.
This works because SF keeps track of which files have been edited and only re-compiles these, but it then re-links and loads the whole project, which is often unnecessary.
Hence the need for a facility to compile just one file and not rebuild the project.
Building the project should still sense which files have changed, exactly as now.
---
John