无法编译c++程序

Unable to compile C++ program

本文关键字:程序 c++ 编译      更新时间:2023-10-16

我试着在Ubuntu上编译。所以我输入了这么小的程序:

#include <iostream>
using namespace std;
int main(){
int cases;
cin>>cases;
return 0;
}

这个给出了很多错误:

umair@ubuntu:~/cpp$ gcc -Wall -W -Werror 2.cpp -o 1
/tmp/ccU4nAIg.o: In function `main':
2.cpp:(.text+0x10): undefined reference to `std::cin'
2.cpp:(.text+0x15): undefined reference to `std::istream::operator>>(int&)'
/tmp/ccU4nAIg.o: In function `__static_initialization_and_destruction_0(int, int)':
2.cpp:(.text+0x4d): undefined reference to `std::ios_base::Init::Init()'
2.cpp:(.text+0x5c): undefined reference to `std::ios_base::Init::~Init()'
/tmp/ccU4nAIg.o:(.eh_frame+0x13): undefined reference to `__gxx_personality_v0'
collect2: error: ld returned 1 exit status

我可以很容易地在"C"中做到这一点。

g++代替gcc来构建c++程序

虽然gcc知道如何编译 c++,但默认情况下,它不会链接针对程序所需的c++库。

从手册:

<>之前编译c++程序c++源文件通常使用。C、。cc、。cpp、。cpp、.c++、。cp或。cxx;c++头文件通常使用。hh或。h;和预处理的c++文件使用后缀.ii。GCC识别具有这些名称的文件并进行编译即使您以与for相同的方式调用编译器,它们也可以作为c++程序使用编译C程序(通常命名为gcc)。然而,使用gcc并不会增加c++库。g++是一个程序调用GCC并将。C,。h和。i文件视为c++源文件而不是C源文件,除非使用-x,并自动指定指向的链接c++库。这个程序在预编译C头文件时也很有用带有.h扩展名,以便在c++编译中使用。在许多系统上,g++也是以c++的名字安装。

编译c++,调用g++而不是gcc