Reputation:
I'm using Windows 7 64bit.
I installed eclipse version 3.6.2, cdt, and MinGW. I have a C++ console program in Eclipse as follows:
#include <iostream>
#include <cstdio>
using namespace std;
int main() {
setbuf(stdout, NULL);
for (int i = 0; i < 10000000; i++) {
cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
}
int val;
cin >> val;
return 0;
}
If I run this console program, it should display Hello world
to Console View in Eclipse, but nothing displays.
If I go to the debug folder and run the exe, it does print to the console.
If I make some syntax mistake, then the Eclipse Console View will show something, such as:
**** Internal Builder is used for build ****
g++ -O0 -g3 -Wall -c -fmessage-length=0 -osrc\hh.o ..\src\hh.cpp
..\src\hh.cpp: In function 'int main()':
..\src\hh.cpp:17:3: error: expected ';' before 'return'
Build error occurred, build is stopped
Time consumed: 255 ms.
Why is nothing showing in the Eclipse console view and how can I make my C++ console program display output?
Upvotes: 14
Views: 24033
Reputation: 1
In case someone is interested, I found how to fix it forever on Windows XP (may work in other windows version though) without you having to specify the variables of each executable and such:
Start Menu > RightClick on MyComputer > Properties > Advanced Options > Environment Variables
There, in the "User variables" field,
C:\MinGW\bin
Example: C:\SomeDirectory; C:\Another; C:\MinGW\bin
Name: PATH
Value: C:\MinGW\bin
Accept all and you should get console output :)
Upvotes: 0
Reputation: 11
If you are using MinGW compiler,
Add
-static-libgcc -static-libstdc++
as Linker flags for your new project. This text should be added to the Linker flags field, which can be found by right-clicking on the new Project in the Project Explorer and clicking on Properties. Under the Project Properties, expand the C/C++ Build menu and click on Settings. Under the Tool Settings tab, expand the MinGW C++ Linker menu and click on Miscellaneous. Add the text to the Linker flags field, then click the Apply button.
http://orfe.princeton.edu/help/article-296
Upvotes: 1
Reputation: 31
I fixed the problem on my windows 7 x64 PC. In the Eclipse window go to Preferences > C/C++ (Expand it) > Environment > Add:
"Name:PATH"
"Value:C:\MinGW\bin"
If this does not fix it. Try adding the above to the system environment variables on your PC in Computer > Advanced System settings
Upvotes: 3
Reputation: 960
I found a workaround from this site: http://www.eclipse.org/forums/index.php?=42e862594001fa4469bbc834885d545f&t=msg&th=197552
At that link, look at the reply from "No real Name".
In case the link goes down, here is the content:
Environment: jdk1.6u18 64bit + Eclipse Helios 64bit + win7 64bit
No console output at "Run", but output correctly at "Debug".
The following method worked for me:
1. Goto Project->Properties->Run/Debug Settings, choose the .exe file
and press "Edit"
2. In the "Environment" tag, press "New", set it as:
"Name:PATH"
"Value:C:\MinGW\bin"
In fact, I have already set "C:\MinGW\bin" in windows PATH environment
variable, but it seemed to not work.
Upvotes: 22
Reputation: 1
I encountered a similar problem.
Environment:
jdk1.6u18 64bit + Eclipse Helios 64bit + win7 64bit
No console output at "Run", but output correctly at "Debug".
The following method worked for me:
Go to Project > Properties > Run/Debug Settings
Choose the .exe file and press "Edit"
In the "Environment" tag, press "New", set it as:
"Name:PATH"
"Value:C:\MinGW\bin"
In fact, I have already set "C:\MinGW\bin" as the Windows PATH environment variable, but it seemed to not work.
Upvotes: 0
Reputation: 4351
Just added the C:\MinGW\bin to environment variable 'Path' in Windows 7 64-bit. Now Console outputs messages
Upvotes: 0
Reputation: 21
My problem with displaying hello world(64 bit Windows7) in console was solved when I ran eclipse as administrator.
I added the C:\MinGW\bin
to environment variable path and then started eclipse as administrator
Upvotes: 2
Reputation: 51
The problem is that your program uses dll libraries from MinGW - try to start the exe file manually, it will report some error about missing dlls.
Solution can be, that you copy required dlls to .exe file in your project directory (and Release or Debug subdirectory, depends on what .exe are you executing with Run command).
Or, in menu Run -> Run Configuration select the configuration which you use for that .exe file (or create a new C/C++ Application configuration) and select Environment tab in the right panel. There add new variable named PATH with value c:\MinGW\bin (this is default path to mingw\bin directory, use a path valid for your instalation if it's somewhere else)
Edit: Now I'm looking at post by Vikyboss and it's in fact the same - setting the PATH variable in Run configuration. Setting PATH variable in Preferences > C/C++ (Expand it) > Environment as described by Sydraps didn't work for me.
But I think that static linking that libraries may be the best solution for you. In menu Project -> Properties select C/C++ Build -> Settings. In the right panel select Configuration which you want to change (you may select All). In the tab Tool Settings select MinGW C++ Linker -> Miscellaneous and in the right panel in the Linker flags type -static. Now the .exe will be bloated by the size of the libraries (in my case approx. +900kB for Hello world example, requiring 2 dlls), but it will be independent at any libraries.
I hope this will be helpful for anyone trying to start with Eclipse C/C++ and wondering why there's no Hello world in console. Ales Chlubny
Upvotes: 5
Reputation: 1643
I had an issue with my eclipse-cdt, new C++ project > hello world (cygwin gcc), right click on exe file, run as and nothing was showing on console. It was the same with c project.
I saw that my eclipse version was already a 32bits one.
I figured this out and here is (the) my solution:
There are several compilation profiles in eclipse cdt: release and debug. The default profile in eclipse cdt is debug. So, launching exe using "run as" does not work, you should launch it using "debug as". In my case, I was using a really recent cygwin installation with gcc installed, but with gdb not yet installed. I had to install gdb package in cygwin using cygwin-setup. I reran the exe using "debug as" and it worked.
I guess using release profile instead of default debug profile, rebuilding also works, and I guess that it's the same with mingw environment.
Upvotes: 0
Reputation: 7363
For me installing the 32 bit versions of Eclipse (Indigo 3.7) and the 32 bit Java JDK/JRE did not work. I use the much quicker solution from the Eclipse CDT/User/FAQ:
Quote from Eclipse CDT/User/FAQ - Eclipse console does not show output on Windows:
Eclipse console does not show output on Windows In Eclipse CDT on Windows, standard output of the program being run or debugged is fully buffered, because it is not connected to a Windwos console, but to a pipe. See bug 173732 for more details. Either add fflush calls after every printf or add the following lines in the start of the main function:
setvbuf(stdout, NULL, _IONBF, 0); setvbuf(stderr, NULL, _IONBF, 0);
Upvotes: 0
Reputation:
I find the reason, just because I'm using 64bit eclipse!
I turn to 32 bit eclipse, the same code works fine.
Upvotes: 2
Reputation: 8242
I created a Hello World C++ Project (MinGW GCC) app from the Eclipse wizard, cut and pasted your code and it compiled fine. Then prior to running I reduced your loop to 10 and it ran fine.
You don't say how you created your project but it would appear likely your missing some include directive or library path. Also I don't see the need to include or setbuf(stdout, NULL). I also find it helpful when troubleshooting to NOT bring an entire namespace into scope. Rather do this: using std::cout; using std::cin;
Finally, flushing the buffer each time with << endl; seems like overkill, adding a simple \n to the end of the string would be more efficient.
(I did all this on Win 7 64 bit - but I was using a 32 bit version of Eclipse Galileo)
Upvotes: 1