在c ++中创建一个简单的hello world应用程序,但它不会编译。我的文件夹C:\WiiGames\e3\
包含文件main.cpp
和Makefile
。我的makefile是:
build: main.cpp
C:/MinGW/bin/g++.exe main.cpp -o e3.exe
我的错误是:
C:\WiiGames\e3>make build
C:/MinGW/bin/g++.exe main.cpp -o e3.exe
make: *** [build] Error 1
C:\WiiGames\e3>
非常感谢任何帮助。
我的代码:
#include <iostream>
#include <stdio.h>
#include <string>
#include <cmath>
#include <cstdlib>
#include <time.h>
int main() {
printf("Hello World!");
}
g ++ -v:
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=c:/mingw/bin/../libexec/gcc/mingw32/4.6.2/lto-wrapper.exe
Target: mingw32
Configured with: ../gcc-4.6.2/configure --enable-languages=c,c++,ada,fortran,objc,obj-c++ --disable-sjlj-exceptions --with-dwarf2 --enable-shared --enable-libgomp --disable-win32-registry --enable-libstdcxx-debug --enable-version-specific-runtime-libs --build=mingw32 --prefix=/mingw
Thread model: win32
gcc version 4.6.2 (GCC)
答案 0 :(得分:1)
直接在命令行上运行g++.exe main.cpp -o e3.exe
会发生什么?如果没有任何反应,你的道路上是g ++吗?我首先要确保g ++已经设置并且在您的路径中。
答案 1 :(得分:1)
确保它是c:/ mingw ... Line之前的make文件中的制表符而不是空格。它看起来像是给出了错误,而不是g ++。