Is there a specific reason as to why an IDE would go through the trouble of compiling a project only to have it fail when linking?
I won't tell you why this bothers me, because apparently it is offensive to be bothered by other peoples code.
|
|
Is there a specific reason as to why an IDE would go through the trouble of compiling a project only to have it fail when linking? I won't tell you why this bothers me, because apparently it is offensive to be bothered by other peoples code.
|
||||||||||||||||||||
|
closed as not a real question by Draemon, David Thornley, Kinopiko, David Dorward, Brian Knoblauch Nov 6 at 16:09 |
|
|
I can appreciate your frustration, however from a design standpoint, I for one generally only check a file's availability when I actually need to write it. Granted that from both your and my point of view, it would be a great timesaver to check for the availability of the target file before starting the compile and link process, but where do you draw the line? Should compiler designers take a reasonable guess at what the size of the .EXE is going to be then check available disk space? (Note: "yes" is an acceptable answer to that question!) At least in my experience, the way to handle an exception is to wait for the exception to happen then code to recover from it, rather than trying to anticipate every possible calamity before allowing the procedure to run. Of course, there are practcal and important -- er -- exceptions to this rule, like when transferring money between two accounts, you would want to make sure there's enough money in the source account. But even then, exception handling and the all-important transaction rollback allows you to return things to their original state. |
|||
|
|
|
The new "Minority Report" IDE - won't build unless 2 out of 3 psychics know it'll work. All you have to do is figure out why without any compiler error messages. |
||||||||||||||||
|