vote up -9 vote down star

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.

flag

74% accept rate
7  
What exactly are you talking about? – BobbyShaftoe Nov 6 at 15:58
3  
-1: Just a rant. "see whether the file they're attempting to create is even creatable" certainly could mean anything. What's the question? Can you provide details? Is this just a make file that's missing a dependency? – S.Lott Nov 6 at 16:00
6  
@Peter: That's not what SO was planned for, and not what a lot of people with 3K+ reputation think it should be. SO was intended to be technical questions that have real answers, not a blog. – David Thornley Nov 6 at 16:07
1  
"The only unusual thing we do is synthesize aspects of Wikis, Blogs, Forums, and Digg/Reddit in a way that is somewhat original" — aspects, not everything. First and foremost: "Stack Overflow is a programming Q & A site" – David Dorward Nov 6 at 16:10
2  
-1 for the attitude. And this is actually possible in any build setup. for instance in Visual Studio you can create a simple pre-build step. – shoosh Nov 6 at 16:13
show 6 more comments

closed as not a real question by Draemon, David Thornley, Kinopiko, David Dorward, Brian Knoblauch Nov 6 at 16:09

2 Answers

vote up 3 vote down check

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.

link|flag
I agree, I don't think the compiler should worry about every intermediate file, but if you're programming an application, building just one project, not a group.... Man, it's just a pain in the neck which I'm assuming I'm going to have to live with my entire programming life! – Peter Turner Nov 6 at 16:07
vote up 6 vote down

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.

link|flag
Boo. Hiss. M$ Shill. I'll have you know I'm using Delphi and it sucks just as much as VS in this regard. – Peter Turner Nov 6 at 16:09
2  
"M$ Shill"? - The Minority Report IDE is open source - if you want an MS product, you'll need to get "Spoon Bender Express Edition" - it comes with a stage psychic, so you don't if he's right or just making a really good set of guesses. – Michael Burr Nov 6 at 16:11
Sorry, just being a jerk, can you put a link or I'll F'n google it. – Peter Turner Nov 6 at 16:13
1  
Freakin'a I get that error all the time. Then they close my SO question because I ask a question that requires the uniform mass of Redmondariates to step outside their comfort zone. In Wisconsin we don't ask our cows to make beer, we expect it. There-in lies the problem and the solution. – Peter Turner Nov 6 at 16:24
1  
But you have to admit - that would be one damn fine cow. And as far as something being the problem and solution, beer helps with that too: "To alcohol! The cause of... and solution to... all of life's problems" – Michael Burr Nov 6 at 16:31
show 3 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.