Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having some real trouble with this and it is just stressing me out so much.

I have TextPad. And I've been using it to write 'fairly' simple C++ programs.

So yes, everything was compiling, loading and running fine. Until I decided that I was going to include 3 files to execute a program. So I've got a header file, a main file, and a 'function file' I suppose you could call it. I'm trying to compile them and get them to run.

Now the method I'm carrying out is following a guide provided by my lecturer, but it is failing. I've emailed him but I haven't got the patience to wait for his reply as I want to get some work done. My configuration is as follows:

Compile preferences Load preferences

Yes, I have cygwin installed. Yes, the compiler creates .o files. But the 'load c++' as far as I understand is meant to load the .o files and create a .exe file. However I just can't get it to work.

So the compile c++ provides me with the message 'Tool completed sucessfully', and this creates a .o file in the folder of the .cpp file. I then use the load c++ file and I receive this message:

g++-3: ÔÇôo: No such file or directory
Tool completed with exit code 1

Any help is greatly appreciated.

share|improve this question
What's that tmp.cpp doing as a parameter? Is it supposed to be hardcoded like that? – Dialecticus Nov 10 '12 at 22:29
'I just can't get it to work' doesn't cut it. Tell us exactly what is going wrong. Do you get an error message for instance? If so what is it. – john Nov 10 '12 at 22:29
I have edited the original question, hopefully this provides you with some more insight. I have also edited the image to provide what I am now using for Load C++ File. – James Warner Nov 10 '12 at 22:37
@JamesWarner I would guess that the wildcard expansion is not working. It looks like you are passing that command to the DOS shell cmd.exe. It will not convert *.o to a list of your object files, and neither will g++. I don't know TextPad but is there any way you can pass that command to another shell? If you have cygwin installed then you should have the bash shell (probably in c:\cygwin\bin\bash.exe). That will expand the wildcard before passing the files names to g++. – john Nov 10 '12 at 23:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.