git clone git@github.com:abderrahim/anjuta.git
问题:以前使用anjuta在gentoo下调试c/c++程序,最近在opensuse11.4想使用anjuta,发现yast/zypper安装的anjuta不能新建项目,直接卡住,然后杀掉进程后再启动anjuta会停止在”加载调试器”这一步。
解决:1 使用源码安装:http://ftp.gnome.org/pub/GNOME/sources/anjuta
发现各个版本(从2.1.0到3.3)都有一些依赖关系,重新编译安装会对现在的系统造成影响,比如我安装了一个新版本的glib,造成xwindows启动不了,最后在修复模式卸载了才恢复
2 使用jhbuild
提示 在autogen的过程中: gtkdocize: command not found 失败
3 根据anjuta官网wiki https://live.gnome.org/DeveloperTools/Installation 文档安装 还是同样的问题,不能新建项目
最终解决办法:
从github上面找了一个anjuta源码版本:
https://github.com/abderrahim/anjuta.git
过程:
dongwm@linux-dongwm:~> git clone https://github.com/abderrahim/anjuta.git
cd anjuta/
./autogen.sh
make
sudo make install
因为默认安装在/use/local下,需要
sudo vi /etc/ld.so.conf
添加一行: /usr/local/lib
sudo /sbin/ldconfig
这个anjuta正常了
本文地址: http://www.dongwm.com/archives/opensuseanzhuanganjuta/