青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

Thronds

一問你會什么 二問你做出過什么 三問你為了什么

  C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
  36 隨筆 :: 0 文章 :: 56 評論 :: 0 Trackbacks
     Code::Blocks是一個開源的跨平臺的C/C++的IDE,和VC++系列的IDE非常類似,這對于從windows下轉型到 Linux的用戶是一個非常不錯的選擇。windows下早就安裝過了,體驗之后非常不錯,雖然和vc不能相提并論,但是在linux下面能夠使用到這么 強大的IDE已經非常了不起了。那么開始把,本人的系統是ubuntu8.04,幾經周折,終于成功完成。(來自csdn的xugang_2001)

    開始到處google資料,最后嘗試N次之后才發現,官方就有CB的安裝方法,具體鏈接在wiki上:

Installing Code::Blocks nightly build on Ubuntu


這個因為是國外網站打開速度可能比較慢,我就替大家貼出來吧:

Installing Code::Blocks nightly build on Ubuntu

From CodeBlocks

Jump to: navigation, search

This is a quick guide to get Code::Blocks up and running on your Ubuntu based Linux distribution. It is also going to make sure you can develop wxWidgets applications on your box as well. Look at the bottom of this guide for a complete command line that will install all the packages in one operation.

First be sure you have the necessary software to compile and debug programs.

1. Install the compiler.

sudo apt-get install build-essential

2. Install the debugger.

sudo apt-get install gdb

You'll need to install wxWidgets to use Codeblocks. Revisions prior to revision 4051 use wxWidgets 2.6 and revisions from 4051 and after use wxWidgets 2.8.4. If you want to install a revision prior to revision 4051, make sure you have your universe and multiverse repositories enabled and install the following packages.

3. Install wxWidgets library. (This package is all that is needed to run any application that uses wxWidgets. ie. Code::Blocks)

sudo apt-get install libwxgtk2.6-0

4. Install the wxWidgets developement packages. (This is used to develop wxWidgets applications of your own.)

sudo apt-get install libwxgtk2.6-dev wx2.6-headers wx-common

(注:上面2個步驟非常重要,缺了gtklib后面的deb包安裝就會失敗)

5. (OPTIONAL) Install the wxWidgets documentation.

sudo apt-get install wx2.6-doc

(注:在下載wxWidgets系列庫的時候其實可以直接使用新立得軟件更新包管理器來 搜索wxWidgets字眼,然后從當中的列表中選擇最新的庫來裝.直接選就可以省掉上面一對麻煩的命令,其實上面的幾個步驟無非就是完成libgtk庫 和wxWidgets相關庫的安裝,這在新利得上搜索wxWidgets很容易選擇。)
To install wxWidgets 2.8.4 you need to be using Ubuntu 6.10 (Edgy Eft) or Ubuntu 7.04 (Feisty Fawn) and you need to add the wxWidget repository to your sources.list. You can install wxWidgets 2.8.4 on Ubuntu 6.06 (Dapper Drake), but the nightly builds are not made to run on Dapper.

1. Backup your current sources.list first for precaution.

sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak

2. Open your sources.list in a text editor to edit it.

gksudo gedit /etc/apt/sources.list

3. Add the correct repository for the Ubuntu version you are running to the end of the file. The repository listed below is referenced on the wxWidgets.org download page and appears to be for the stable version.

deb http://apt.tt-solutions.com/ubuntu/ edgy main

or

deb http://apt.tt-solutions.com/ubuntu/ feisty main

4. Save and close the file.

5. Add the key for tt-solutions.com.

sudo wget http://www.tt-solutions.com/vz/key.asc
sudo apt-key add key.asc

Alternate wxWidgets repository. Some users of Code::Blocks have received critical errors related to libwxgtk when using the above repository packages. They were able to solve their problems by installing newer packages available from an alternate repository from wxWidgets.org. To use these packages make the following changes to the above directions:

Add deb http://apt.wxwidgets.org/ edgy-wx main or deb http://apt.wxwidgets.org/ feisty-wx main to your sources.list.

Download the gpg key using wget http://apt.wxwidgets.org/key.asc and install the same as above.

6. Update your sources.list and run upgrade to make sure everything is up-to-date.

sudo apt-get update
sudo apt-get dist-upgrade

7. Now you're finally ready to install wxWidgets 2.8.4.

sudo apt-get install libwxgtk2.8-0 libwxgtk2.8-dev wx2.8-headers wx-common

8. Set wxWidgets 2.8 as default version for your machine. Select number for the wxgtk2.8 version.

sudo update-alternatives --config wx-config

Now go get the nightly build and install it. All dependencies should now be met.

1. Get the latest nigtly build of Code::Blocks from the nightly builds forum.

2. Install Code::Blocks.

sudo dpkg -i <Name_Of_Daily_Build.deb>

NOTE: Since revision 4281 and after, the nightly builds are made differently. Codeblocks is now packaged into separate Debian packages and the packages are archived together in a tar.gz file.

(編 者注:其實所謂的nightly build版本只是在version4281之前才有效,后來的的版本是不需要下載所謂的nightly&&deb版本,直接到官方網站下載deb包,里 頭有6個小包,直接使用后面的dpkg -i *.deb就可以了。這里頭千萬別被nighlt弄混了,直接無視就是了。)

1. Download the tar.gz file to your computer and extract the files to an empty directory, such as one called temp for example.

tar xvf CB_date-of-build_revision-number_Ubuntu6.10+7.04_wx2.8.4.tar.gz

(編者注:這里只是解壓deb的命令,也可以直接在IDE上右鍵選擇“解壓縮到此處。。。”即可)

2. Install all the packages at the same time.

sudo dpkg -i *.deb
(注:大功告成的語句)

The packages can be installed individually, if you prefer not to install everything. The first package to install is libcodeblocks0 followed by the codeblocks package. All the other packages are optional. If you want to install the wxsmith and/or contrib packages, you must install the libwxsmithlib0 package first.




NOTE: Here is a complete command line for the above steps. Watch for word wrap. Replace wx2.6 with wx2.8 when needed.


(編者注:這里只是提供一個替換wx2.6到最新版(目前為止)2.8時的命令)

sudo apt-get install build-essential gdb libwxgtk2.6-0 libwxgtk2.6-dev wx2.6-headers wx2.6-doc wx-common


Without optional steps:

sudo apt-get install build-essential gdb libwxgtk2.6-0 libwxgtk2.6-dev wx2.6-headers wx-common

也許大家要問了,如果是想自己用源碼從頭到尾進行編譯怎么辦?我這里也有一個解決方案,
原理和步驟基本上和上文類似,大家可以參考一下:

1. Linux平臺下編譯安裝wxGTK(以wxGTK-2.6.2 為例)
下載wxGTK-2.6.2.tar.gz(http://www.wxwidgets.org/)
tar zxvf wxGTK-2.6.2.tar.gz
cd wxGTK-2.6.2
./configure --enable-xrc --enable-monolithic --enable-unicode

make
make install

vi /etc/ld.so.conf
將/usr/local/lib加入后,運行ldconfig

可以通過以下操作的輸出檢查安裝是否正確
wx-config --prefix
wx-config --libs
which wx-config

2.下載Code::Block
通過svn+http下載code::blocks
安裝subversion,在 .subversion/servers 文件的global段設置代理服務器
svn checkout http://svn.berlios.de/svnroot/repos/codeblocks/trunk

如果不需要設置代理服務器,則可以用
svn checkout svn://svn.berlios.de/codeblocks/trunk
直接下載代碼

3.編譯安裝Code::Block
直接運行bootsrtap可能會遇到宏AM_PATH_WXCONFIG 沒定義等錯誤

1) cp /usr/local/share/aclocal/wxwin.m4 /usr/share/aclocal/wxwin.m4
2)./bootstrap
./configure
make
make install

至此全部ok了 經測驗第一種方法完全可行,并且在我的Ubuntu8.04上順利啟動,哈哈,Ejoy it!

http://blog.csdn.net/xugang_2001/archive/2008/11/05/3230598.aspx
posted on 2009-01-11 16:56 thronds 閱讀(3207) 評論(6)  編輯 收藏 引用 所屬分類: C++技術Linux桌面技術

評論

# re: 轉載 ubuntu上關于Code::Blocks(8.02RC)的安裝全記錄 2010-07-09 09:52 MCCARTYDionne19
The custom research paper creating would not always be a kind of fun. The <a href="http://www.supremeessays.com/custom-term-paper-writing-service.html">custom term paper writing service</a> essays would cost a lot of time. Bright people will advice to <a href="http://www.supremeessays.com/buy-an-essay-online.html">buy an essay online</a>. I do opine that it is the most simple way.   回復  更多評論
  

# re: 轉載 ubuntu上關于Code::Blocks(8.02RC)的安裝全記錄 2010-07-09 10:22 university essay
Begin your research paper composing and do not get know how to finish it? You not have to be worried, simply buy custom term paper writing service Online and be sure that your essays papers online are written by distinguished writers.   回復  更多評論
  

# re: 轉載 ubuntu上關于Code::Blocks(8.02RC)的安裝全記錄 2010-08-08 00:15 humanities essays
Did not make up your mind whether to buy religion essays or to compose that your own? I could suggest to get term paper at the professional writing service, when you had no time.   回復  更多評論
  

# re: 轉載 ubuntu上關于Code::Blocks(8.02RC)的安裝全記錄 2010-08-23 22:13 essay writing services
Make composition alone, without relief assistance from others very difficult. And it is very necessary to prefer the decent priorities in life! We can support you prosper in publish essay writing services.  回復  更多評論
  

# essay. 2010-10-18 13:44 termpaper99@gmail.com
該網站是非常偉大,我想參觀這里,因為它內容豐富,從這里我得到的信息  回復  更多評論
  

# re: 轉載 ubuntu上關于Code::Blocks(8.02RC)的安裝全記錄 2012-09-07 14:34 resume writing
The customers count on this resume service cause they are very responsible! This company performs buy resume to fit the precise area of science you wish.  回復  更多評論
  

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲夜间福利| 亚洲第一黄网| 国产精品99久久久久久久女警| 美女成人午夜| 亚洲精华国产欧美| 亚洲三级国产| 国产精品日韩在线播放| 久久久久网站| 久久亚洲精品一区| av成人激情| 国产精品你懂的| 国产综合色产在线精品| 久久精品视频va| 浪潮色综合久久天堂| 99成人在线| 欧美一区1区三区3区公司| 伊人精品久久久久7777| 亚洲国产日韩欧美| 国产精品国产精品| 浪潮色综合久久天堂| 欧美激情麻豆| 久久久精品国产免大香伊| 久久亚洲精品中文字幕冲田杏梨| 夜夜嗨av色综合久久久综合网| 亚洲午夜av电影| 亚洲国产视频一区| 亚洲一卡二卡三卡四卡五卡| 亚洲高清视频在线观看| 亚洲一区在线播放| 亚洲激情电影在线| 欧美一区二区三区视频在线| 亚洲人久久久| 欧美尤物巨大精品爽| 一区二区精品| 久久夜色精品国产| 欧美中文字幕不卡| 欧美色道久久88综合亚洲精品| 老司机凹凸av亚洲导航| 国产精品国产三级国产专播精品人 | 欧美大片免费观看| 欧美综合二区| 国产精品高潮呻吟久久av黑人| 蜜月aⅴ免费一区二区三区 | 久久米奇亚洲| 欧美激情中文字幕乱码免费| 性刺激综合网| 欧美日韩中文| 亚洲激情午夜| 亚洲日本va午夜在线电影| 性久久久久久久久久久久| 亚洲一区在线播放| 欧美日韩一区二区三区免费 | 午夜精品亚洲一区二区三区嫩草| 久久在线免费观看| 久久亚洲视频| 狠狠色2019综合网| 久久av一区| 久久不射中文字幕| 国产日韩成人精品| 亚洲欧美综合一区| 欧美一区二区精品在线| 国产精品美女久久久浪潮软件| 亚洲日本中文字幕| 夜夜嗨av一区二区三区网站四季av| 欧美成人精品h版在线观看| 亚洲大胆美女视频| 日韩五码在线| 欧美日韩999| 影音先锋日韩资源| 亚洲福利视频网| 亚洲激情成人网| 欧美高清一区| 99爱精品视频| 亚洲影视在线播放| 国产精品视频免费观看| 性欧美videos另类喷潮| 久久久久久伊人| 亚洲国产精品成人一区二区| 蜜臀av在线播放一区二区三区| 亚洲国产精品激情在线观看| 日韩一级精品| 国产美女精品免费电影| 久久精品国产一区二区电影| 欧美~级网站不卡| 亚洲精品一区在线| 欧美成人一区二区三区在线观看| 亚洲欧洲久久| 欧美中文在线视频| 在线日韩精品视频| 欧美日韩国产综合一区二区| 亚洲一区二区精品在线| 久久精选视频| 亚洲精品一区二区三区福利| 国产精品久久久久久久久久久久久久| 亚洲欧美伊人| 亚洲国产你懂的| 亚洲小视频在线| 亚洲美女在线看| 9色精品在线| 欧美一区二区黄色| 亚洲电影下载| 国产主播精品在线| 久久久天天操| 99精品国产99久久久久久福利| 亚洲免费视频网站| 亚洲国产精品999| 国产精品久久久久秋霞鲁丝| 久久婷婷国产综合国色天香| 中文网丁香综合网| 欧美激情在线播放| 欧美中文字幕第一页| 一本色道久久88综合亚洲精品ⅰ| 国产精品欧美激情| 欧美顶级艳妇交换群宴| 久久国产精品久久精品国产| 一本大道久久a久久精二百| 老司机精品视频一区二区三区| 亚洲午夜久久久| 最新国产成人av网站网址麻豆| 国产精品一页| 欧美紧缚bdsm在线视频| 欧美中文字幕久久| 亚洲一区综合| 在线亚洲观看| 亚洲精品综合久久中文字幕| 免费在线日韩av| 久久国产精品久久久久久电车| 一区二区三区 在线观看视频| 一区二区三区在线免费播放| 国产日韩av高清| 国产精品第2页| 欧美日韩亚洲一区二区三区在线| 麻豆久久婷婷| 另类图片综合电影| 久久亚洲精品中文字幕冲田杏梨| 欧美一区二区三区四区在线| 亚洲欧美精品在线观看| 亚洲一区二区三区国产| 亚洲视频在线观看| 一区二区三区精品视频| 精品成人国产| 老司机免费视频久久| 久久久久久久999| 亚洲一区不卡| 亚洲天堂男人| 亚洲一区三区在线观看| 亚洲欧美乱综合| 午夜国产精品视频| 久久成人精品| 久久免费视频这里只有精品| 久久一二三四| 亚洲成人直播| 亚洲理论在线| 亚洲系列中文字幕| 午夜视频久久久| 久久久久久国产精品mv| 米奇777在线欧美播放| 欧美激情一级片一区二区| 欧美日韩亚洲一区三区| 国产精品成人一区二区网站软件 | 欧美日韩在线精品| 国产精品高潮呻吟视频| 国内偷自视频区视频综合| 在线日韩视频| 亚洲午夜高清视频| 久久精品一本| 免费成人激情视频| 91久久精品国产91性色tv| 亚洲精品久久久一区二区三区| 亚洲视频在线一区| 久久精品一区二区三区不卡| 牛夜精品久久久久久久99黑人| 欧美色网在线| 国内久久精品视频| 日韩亚洲成人av在线| 欧美一区二区女人| 欧美不卡视频| 这里只有精品电影| 卡通动漫国产精品| 欧美亚洲第一页| 国产亚洲精品久久久久久| 亚洲精品一区二区三区婷婷月| 午夜欧美大片免费观看 | 亚洲欧美日韩国产综合| 久久亚洲精品欧美| 正在播放欧美视频| 久久综合中文字幕| 国产精品中文在线| 日韩亚洲一区二区| 久久麻豆一区二区| 9久草视频在线视频精品| 久久夜色精品亚洲噜噜国产mv| 国产精品高潮呻吟视频| 亚洲精品资源| 蜜臀va亚洲va欧美va天堂| 午夜精彩视频在线观看不卡 | 欧美在线一区二区| 国产精品theporn88| 99re亚洲国产精品| 裸体丰满少妇做受久久99精品|