Centos 7—安裝Code::Blocks—Codeblocks—codeblocks

ztguang發表於2016-02-01

http://baike.baidu.com/link?url=ukDEDHZLDCTojB4CAe5MgqOUDqIeoEk51PWofZQy5TIGGjstJzDQg8nbI8x9akdnCpOXT0o5HlsKGy5LfkZxTK

Code::Blocks 是一個開放原始碼的全功能的跨平臺C/C++整合開發環境。 Code::Blocks是開放原始碼軟體。Code::Blocks由純粹的C++語言開發完成,它使用了著名的圖形介面庫wxWidgets(2.6.2 unicode)版。對於追求完美的C++程式設計師,再也不必忍受Eclipse的緩慢,再也不必忍受VS.NET的龐大和高昂的價格。
++++++++++++++++++++++++++++++
http://www.centoscn.com/image-text/install/2014/0905/3684.html

 在CentOS7上安裝Codeblocks的過程。

1.安裝gcc,需要c和c++兩部分,預設安裝下,CentOS不安裝編譯器的,在終端輸入以下命令即可
yum install gcc
yum install gcc-c++

2.安裝gtk2-devel,因為預設已經安裝了正式產品需要的支援庫,但是沒有安裝開發所需要的文件.
yum install gtk2*

3. 安裝wxGTK(或者wxwidgets),下載地址:http://www.wxwidgets.org/downloads/,下載的檔案為:wxWidgets-3.0.2.tar.bz2,

解壓之後,進入目錄後執行命令

./configure --enable-xrc --enable-monolithic --enable-unicode
make -j5
make install
 ------------------------------------------------------
 
 The installation of wxWidgets is finished.  On certain
 platforms (e.g. Linux) you'll now have to run ldconfig
 if you installed a shared library and also modify the
 LD_LIBRARY_PATH (or equivalent) environment variable.
 
 wxWidgets comes with no guarantees and doesn't claim
 to be suitable for any purpose.
 
 Read the wxWindows Licence on licencing conditions.
 
 ------------------------------------------------------

ldconfig


4. 安裝codeblocks,下載codeblocks安裝包,下載地址:http://www.codeblocks.org/downloads/

這裡有兩種方式進行安裝:

第一種方式是直接下載rpm包,可以直接進行安裝,但是rpm安裝形式,沒有預設安裝可視設計wxsmith。

第二種方式是下載原始碼包,字尾為.tar.gz(.tar.bz2),下載之後,解壓縮,進入目錄,執行命令

./configure --prefix=/codeblocks --with-contrib-plugins=all
(如果只是./configure那預設情況是不會安裝可視設計wssmith,如果不需要圖形介面開發的話可以直接使用第一種安裝方式)
-------------------------------------------------------------------------------
checking for GTK2... yes
checking for GAMIN... no
configure: error: Package requirements (gamin) were not met:

No package 'gamin' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables GAMIN_CFLAGS
and GAMIN_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
-------------------------------------------------------------------------------
解決上面問題的方法: yum install gamin*

make -j5
make install

5.安裝好codeblocks後,在application下會出現programming選單項,在這裡可以啟動codeblocks.

有時候也會出現無法啟動的情況,需要這樣做:

vim /etc/ld.so.conf
最後一行新增:/usr/local/lib
儲存退出,然後執行/sbin/ldconfig
即可。

6.安裝一下xterm:yum install xterm

7.如果沒有看到codeblocks選單項,可以:建立桌面啟動器如下:

 
1、點選應用程式--系統工具
2、選擇“啟動應用程式”
3、在啟動用程式首選項中選擇“新增”
4、會出現和以前一樣的新增啟動程式對話方塊,進行設定
5、設定完名稱和命令(路徑)後,點選“新增”,啟動器就被新增到列表裡了
6、用滑鼠選中剛新增的啟動器,將其拖到桌面
7、右擊新建的起動器,選擇屬性,在許可權選項卡中勾選——執行:允許以程式執行檔案
8、同上步,在基本選項卡中點選圖示,可以設定啟動器的桌面圖示。





<script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"share":{}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>
閱讀(157) | 評論(0) | 轉發(0) |
給主人留下些什麼吧!~~
評論熱議

相關文章