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

Thronds

一問你會(huì)什么 二問你做出過什么 三問你為了什么

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

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

Installing Code::Blocks nightly build on Ubuntu


這個(gè)因?yàn)槭菄饩W(wǎng)站打開速度可能比較慢,我就替大家貼出來吧:

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個(gè)步驟非常重要,缺了gtklib后面的deb包安裝就會(huì)失?。?/font>

5. (OPTIONAL) Install the wxWidgets documentation.

sudo apt-get install wx2.6-doc

(注:在下載wxWidgets系列庫的時(shí)候其實(shí)可以直接使用新立得軟件更新包管理器來 搜索wxWidgets字眼,然后從當(dāng)中的列表中選擇最新的庫來裝.直接選就可以省掉上面一對麻煩的命令,其實(shí)上面的幾個(gè)步驟無非就是完成libgtk庫 和wxWidgets相關(guān)庫的安裝,這在新利得上搜索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.

(編 者注:其實(shí)所謂的nightly build版本只是在version4281之前才有效,后來的的版本是不需要下載所謂的nightly&&deb版本,直接到官方網(wǎng)站下載deb包,里 頭有6個(gè)小包,直接使用后面的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.


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

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

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

1. Linux平臺(tái)下編譯安裝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加入后,運(yùn)行l(wèi)dconfig

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

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

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

3.編譯安裝Code::Block
直接運(yùn)行bootsrtap可能會(huì)遇到宏AM_PATH_WXCONFIG 沒定義等錯(cuò)誤

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

至此全部ok了 經(jīng)測驗(yàn)第一種方法完全可行,并且在我的Ubuntu8.04上順利啟動(dòng),哈哈,Ejoy it!

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

評論

# re: 轉(zhuǎn)載 ubuntu上關(guān)于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.   回復(fù)  更多評論
  

# re: 轉(zhuǎn)載 ubuntu上關(guān)于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.   回復(fù)  更多評論
  

# re: 轉(zhuǎn)載 ubuntu上關(guān)于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.   回復(fù)  更多評論
  

# re: 轉(zhuǎn)載 ubuntu上關(guān)于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.  回復(fù)  更多評論
  

# essay. 2010-10-18 13:44 termpaper99@gmail.com
該網(wǎng)站是非常偉大,我想?yún)⒂^這里,因?yàn)樗鼉?nèi)容豐富,從這里我得到的信息  回復(fù)  更多評論
  

# re: 轉(zhuǎn)載 ubuntu上關(guān)于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.  回復(fù)  更多評論
  

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
              午夜亚洲影视| 亚洲精品中文在线| 久久久噜噜噜久久狠狠50岁| 国产字幕视频一区二区| 久久综合伊人| 免费一级欧美片在线观看| 亚洲每日更新| 中文国产一区| 狠狠狠色丁香婷婷综合激情| 亚洲电影第三页| 欧美区日韩区| 久久久久一本一区二区青青蜜月| 久久久中精品2020中文| 一区二区三区国产在线| 性色一区二区| 亚洲毛片在线| 欧美一区二区三区四区在线 | 久久日韩粉嫩一区二区三区| 亚洲毛片一区二区| 午夜精品久久久久久久99热浪潮| 精品96久久久久久中文字幕无| 亚洲精品在线观| 国产日韩欧美在线播放| 欧美激情精品久久久久久大尺度| 国产精品大全| 亚洲国产成人av| 国产欧美一区二区三区另类精品 | 欧美一区二区私人影院日本| 麻豆久久久9性大片| 亚洲自拍16p| 免费观看亚洲视频大全| 午夜精品影院| 欧美日韩蜜桃| 欧美激情亚洲综合一区| 国产欧美一区二区三区久久| 亚洲美女在线视频| 在线日韩成人| 欧美有码视频| 亚洲欧美999| 欧美精品一区二区三区在线播放| 久久久久久穴| 国产精品日韩欧美一区二区三区| 亚洲区一区二区三区| 精品999在线播放| 小黄鸭精品密入口导航| 亚洲在线国产日韩欧美| 欧美久久电影| 亚洲国产乱码最新视频| 亚洲第一偷拍| 久久久久.com| 久久人91精品久久久久久不卡| 国产精品免费看久久久香蕉| 亚洲美女视频在线免费观看| 亚洲品质自拍| 美女精品一区| 欧美激情一区二区三区蜜桃视频| 伊人久久婷婷色综合98网| 欧美在线视频网站| 久久久久久久成人| 国产亚洲一区二区三区| 欧美一进一出视频| 久久久久一区二区三区| 国内精品久久久久影院优| 欧美一区二区三区在线观看视频| 欧美制服丝袜| 国内成人精品一区| 久久综合伊人77777| 欧美激情区在线播放| 亚洲激情一区二区| 欧美激情在线免费观看| 日韩午夜激情av| 亚洲欧美欧美一区二区三区| 国产精品永久入口久久久| 欧美一区二区三区在线| 美女诱惑黄网站一区| 亚洲精品乱码久久久久久黑人| 欧美国产日韩在线| 在线午夜精品| 久久精品官网| 在线电影国产精品| 欧美麻豆久久久久久中文| 久久久久久久精| 亚洲另类一区二区| 亚洲伦理自拍| 香蕉久久夜色精品| 国产精品久久久久久影视| 艳女tv在线观看国产一区| 欧美一区二区三区四区高清| 激情综合色丁香一区二区| 女同一区二区| 亚洲午夜精品久久久久久浪潮| 久久精品一区| 亚洲最快最全在线视频| 国产精品久久国产精麻豆99网站| 欧美中文在线观看| 亚洲欧洲一区二区三区| 欧美一区二区私人影院日本| 91久久在线视频| 国产精品午夜电影| 免费精品视频| 亚洲综合精品四区| 亚洲国产高清一区| 亚洲视频图片小说| 一个色综合av| 国产精品久久久| 老司机亚洲精品| 在线视频一区二区| 欧美激情第二页| 欧美在线综合| 亚洲香蕉视频| 亚洲国产高潮在线观看| 国产欧美日韩专区发布| 欧美精选一区| 久久只精品国产| 欧美亚洲自偷自偷| 一区二区欧美在线| 欧美激情视频一区二区三区在线播放 | 亚洲午夜伦理| 亚洲精品欧洲| 欧美成人有码| 久久五月天婷婷| 久久国产一二区| 亚洲制服av| 亚洲一区高清| 夜夜爽99久久国产综合精品女不卡| 黄网动漫久久久| 国产香蕉久久精品综合网| 国产精品免费区二区三区观看| 欧美极品色图| 欧美极品在线播放| 蜜乳av另类精品一区二区| 久久视频一区| 久色婷婷小香蕉久久| 久久九九国产精品| 久久精精品视频| 久久精品欧洲| 久久夜色精品国产亚洲aⅴ| 欧美中文在线观看| 久久精品伊人| 久久婷婷蜜乳一本欲蜜臀| 久久久福利视频| 久久久999精品| 鲁大师影院一区二区三区| 久久久人成影片一区二区三区观看| 欧美一区在线看| 久久激情综合| 狂野欧美激情性xxxx| 你懂的网址国产 欧美| 欧美激情二区三区| 欧美日韩岛国| 国产精品一区二区视频| 国产偷自视频区视频一区二区| 国产亚洲欧美另类一区二区三区| 国产一区二区三区最好精华液| 狠狠色丁香久久婷婷综合_中| 国内一区二区三区在线视频| 韩国久久久久| 亚洲人在线视频| 亚洲在线观看免费| 久久精品一区二区三区四区| 玖玖玖免费嫩草在线影院一区| 欧美韩日视频| 亚洲美女91| 亚洲女性裸体视频| 久久夜色精品| 欧美三级中文字幕在线观看| 国产精品日韩一区二区| 一区二区三区在线观看欧美| 亚洲中无吗在线| 久久久午夜视频| 欧美久久久久| 国产亚洲综合精品| 亚洲精品午夜| 久久精品国产第一区二区三区| 欧美成人资源网| 亚洲天堂偷拍| 久久影视精品| 国产精品一区2区| 亚洲美女福利视频网站| 午夜视频久久久久久| 亚洲高清影视| 欧美一区二区三区视频在线| 欧美精品电影| 雨宫琴音一区二区在线| 亚洲一区综合| 欧美大色视频| 久久国产精品99久久久久久老狼| 欧美成人免费在线| 国产在线欧美| 亚洲欧美自拍偷拍| 亚洲福利在线视频| 欧美一区午夜视频在线观看| 欧美日韩国产限制| 亚洲国产精品精华液2区45| 香蕉久久一区二区不卡无毒影院 | 亚洲视频在线观看三级| 免费看亚洲片| 在线不卡欧美| 欧美一区2区视频在线观看| 亚洲免费高清|