我想使用cmd编译CPP代码。我试图下载dev c ++编译器并使用系统设置将其附加到cmd但仍然没有用,因为某些库不存在。那么还有其他编译器可以编译CPP的调用代码,包括像unsortedmap这样的库。
答案 0 :(得分:1)
如果您使用Linux,那么您可以简单地编译它,但在终端中编写以下行:
g++ helloWorld.cpp -o helloWorld
如果您使用的是Windows,则应考虑下载Visual Studio,然后您就可以在Visual Studio中轻松编译程序。并且您还可以使用命令行编译它:
从Microsoft网站下载Visual Studio:
答案 1 :(得分:0)
我认为你错过了编译器。如果您在Windows上运行,请从here下载并安装MinGW。在安装过程中,您可以选择安装GNU Compiler Collection(GCC),包括C ++。安装完成后,您可以编译源文件并使用这些命令运行可执行文件。
> gcc -o HelloWorld.exe HelloWorld.c
// Compile and link source file HelloWorld.c into executable HelloWorld.exe
> HelloWorld
// Execute HelloWorld.exe under CMD shell