| Console Bug [message #902233] |
Thu, 16 August 2012 09:21  |
Patrick Kuckelsberg Messages: 1 Registered: August 2012 |
Junior Member |
|
|
Hello Community,
this is my first cpp project and it starts very bad.
I can´t see the output in the console.
my Code:
#include <stdio.h>
int main(){
setvbuf(stdout, NULL, _IONBF, 0);
setvbuf(stderr, NULL, _IONBF, 0);
printf("Hello World");
return 0;
}
other tutorials like:
http://www.eclipse.org/forums/index.php?t=msg&th=197552&start=0&S=2a2b64e1f1404705c0214976bd477428
doesn´t help either.
Please help.
My System:
First setup:
Windows 64-bit,
eclipse 64-bit,
Java 64-bit,
mingw
second setup:
Windows 64-bit,
eclipse 32-bit,
java 32-bit,
mingw
|
|
|
| Re: Console Bug [message #902418 is a reply to message #902233] |
Fri, 17 August 2012 10:14   |
Nick Schweyer Messages: 151 Registered: July 2009 |
Senior Member |
|
|
hi,
in the run configuration (menue Run | Run configurations ..) the hook shall be set at "connect process input & output to a terminal".
I am using Eclipse with Linux. Maybe the menue items are somewhat different. But look for a text like above.
Nick Schweyer
Eclipse Helios, Qt 4.3, Qt integration, open Suse Linux 11.3
|
|
|
| Re: Console Bug [message #902554 is a reply to message #902233] |
Sat, 18 August 2012 07:32  |
Klaus Mr Messages: 89 Registered: November 2011 |
Member |
|
|
Windows, C++ and MinGW:
MinGW creates code, that needs the lib libgcc_s_dw2-1.dll during runtime.
If you call the generated exe file from the command-line, you will see the "DLL" missing error!
So add the path to MinGW (maybe C:\MinGW\bin) to the environment variable Path and than try again.
regards,
Klaus
|
|
|
Powered by
FUDForum. Page generated in 0.01475 seconds