Linux下c 程式設計與kdevelop的環境配置

2021-04-23 03:19:06 字數 762 閱讀 2028

1.開啟新立得軟體包管理器

2.查詢kdevelop,在結果中當然是勾選kdevelop,還有kdevelop系列裡面那個帶"-dev"字尾的包,當然你可以不勾

3.裝好前面的包後安裝如下的包:

automake

autoconf

g++libtool

cmake

這些裝了之後基本就可以執行了,但是你想看到輸出的話就還得裝這個東西:konsole

使用kdevelop的步驟:

1.新建乙個工程

2.寫**

3.build->run automake & friends

4.build->run configure

5.build->compile file

6.build->build project

7.build->execute program(shift+f9)

注意:在 4.build->run configure 這一步中很有可能會出現這個問題configure: error: c++compiler cannot create executables

這是kdevelop自身環境變數的設定問題

在kdevelop 中開啟project options,然後在configure options的內容中,分別確認c和c++使用compiler,在各自的compiler command(cc)和compiler command(cxx)中分別填入gcc和g++.在對話方塊裡面按下ok之後, ide會問你是否要重建,選rerun即可。

linux下c 程式設計

yum install gcc c 安裝c 環境 然後開始編寫c 程式,假設放到test1.cpp中,g o test11 test1.cpp就會編譯test1.cpp生成test11檔案。test11就可以執行該程式 查詢乙個包是否被安裝 rpm q rpm package name 列出所有被安...

Linux 下C程式設計

第乙個hello word程式 1,在桌面上新建乙個main.c檔案,檔案編輯器開啟並敲上c語言 2,在終端中輸入 cd desktop gcc main.c a.out 生成的a.out是可執行檔案 gcc main.c o main 指定編譯好的檔案的名 gcc wall main.c 意思就是...

Linux 下C程式設計

第乙個hello word程式 1,在桌面上新建乙個main.c檔案,檔案編輯器開啟並敲上c語言 2,在終端中輸入 cd desktop gcc main.c a.out 生成的a.out是可執行檔案 gcc main.c o main 指定編譯好的檔案的名 gcc wall main.c 意思就是...