红联Linux门户
Linux帮助
当前位置: 红联Linux门户 > Debian

Debian Lenny编译wxWidgets与Code::Blocks

发布时间:2008-05-08 00:08:36来源:红联作者:Keiboc
研究跨平台开发,选择了wxWidgets和Code::Blocks搭挡,那么编译wxGTK和Code::Blocks最新的SVN版本(不选择Code::Blocks 8.02的原因是现在的SVN版本修复了8.02大量BUG,而且使用最新的SVN版本,同时报告使用中出现的问题,本身也是对Code::Blocks开发的支持)就不可避免了。

在Ubuntu下编译,两都都很顺利,但当基于Debian Lenny系统来编译时,CB却出现了问题:

codeblocks: error while loading shared libraries: libcodeblocks.so.0: cannot open shared object file: No such file or directory

就是这个错误,导致CB根本无法启动。试着把相应文件拷贝到codeblocks主程序所在的/usr/local/bin目录中(还是Windows的思维),仍然出错。经查找资料,发现此时只要把libcodeblocks.so.0所在的目录加入环境变量中就可以了。

sudo /etc/ld.so.conf #编译该文件
/usr/local/lib #将该行加入到该文件的末尾
sudo ldconfig #重新配置
这样就可以正常启动Code::Blocks了。
下面将编译的步骤简单记录一下:
编译wxWidgets:
wxGTK源码目录下新建子目录buildgtk,进入该目录,运行:
../configure --disable-shared --disable-debug --enable-unicode --enable-monolithic --with-opengl --enable-xrc
sudo make install
sudo ldconfig
编译Code::Blocks:
(a) 下载源码
svn checkout svn://svn.berlios.de/codeblocks/trunk ~/Sources/CodeBlocks
(b) 编译
export ACLOCAL_FLAGS="-I `wx-config --prefix`/share/aclocal"
./bootstrap
./configure
make
sudo make install
(c) ?载
sudo make uninstall
(d) 重新编译
make clean
make distclean
make clean-bin
make clean-zipfiles
文章评论

共有 1 条评论

  1. loaden 于 2008-05-14 23:07:29发表:

    什么我原创的文章成了 Keiboc 的了??晕!