我正在使用 Eclipse IDE。我这里有一些基本的源代码,包括头文件。一直使用 cygwin 作为 C++ 编译器。它编译我的应用程序并且不会产生任何错误。但是我在 IDE 的控制台上看不到输出。当我自己运行可执行文件时,它会产生输出。如何配置 Eclipse IDE 以将输出重定向到 IDE 的控制台?
这就是我得到的全部:
15:40:11 **** Incremental Build of configuration Debug for project GetCompiled ****
make all
Building target: GetCompiled.exe
Invoking: Cygwin C++ Linker
g++ -o "GetCompiled.exe" ./Compiling.o
cygwin warning:
MS-DOS style path detected: D:\Aristotelis\C++\GetCompiled\Debug
Preferred POSIX equivalent is: /cygdrive/d/Aristotelis/C++/GetCompiled/Debug
CYGWIN environment variable option "nodosfilewarning" turns off this warning.
Consult the user's guide for more details about POSIX paths:
http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
Finished building target: GetCompiled.exe
15:40:12 Build Finished (took 702ms)
选择要运行的应用程序:
我尝试通过选择作为 C++ 应用程序运行来从 IDE 运行 exe 文件,但它不会产生任何输出。此致