Linux搭建C++开发调试环境

安装g++

Linux编译C++程序必须安装g++编译器。这里使用yum方式安装。首先切换到root账号,su - root 然后输入密码。

g++安装成功。

编译运行C++源代码

ftp将冒泡排序的代码文件create_bubblesort.cc上传到Linux,代码如下

#include
#include
using namespace std;

void BubbeSort(int arr[], int n)
{
  int i, j, temp;
  bool exchange;
  for(i = 0; i < n; i++)
  {
    exchange = false;
    for(j = n - 1; j >= i; j--)//前i个是最大的i个
    {
      if(arr[j] < arr[j-1])
      {
        temp = arr[j];
        arr[j] = arr[j-1];
        arr[j-1] = temp;
        exchange = true;
      }
    }
    if(!exchange)
      return;
  }
}

int main()
{
  int arr[10] = {3,8,66,3456,4654,21,88,55,99,66};
  BubbeSort(arr, 10);
  
  for(int i = 0; i <10; i++)
    cout<

执行g++ create_bubblesort.cc,会生成可执行文件a.out。执行a.out输入排序结果。
Linux搭建C++开发调试环境_第1张图片

gdb调试

Linux调试C++代码需要gdb。yum安装。
Linux搭建C++开发调试环境_第2张图片

总结

安装g++ gdb就完成了环境的搭建,yum源配置正确的话,不会出大的问题。

你可能感兴趣的:(linux,c++,gdb,g++编译)