libjingle - Getting Started 遇到的一些问题记录

这个是官网的地址:

http://code.google.com/p/libjingle/wiki/GettingStarted

depot tools介绍:

https://sites.google.com/a/chromium.org/dev/developers/how-tos/depottools


xxxx@xxxxxx:~/libjingle$ gclient config http://libjingle.googlecode.com/svn/trunk/
Running depot tools as root is sad.

原因在于depot tools/update_depot_tools

if [ "$USER" == "root" ];
then
  echo Running depot tools as root is sad.
  exit
fi
所以这里不能用root,我测试过  屏蔽 #exit 不过没反应,只好su xxxx 切换帐号了


xxxx@xxxxxx:~/libjingle$ gclient config  http://libjingle.googlecode.com/svn/trunk/

depot_tools update failed. Conflict in /opt/depot_tools
Cannot rebase: You have unstaged changes.

Please commit or stash them.

原因就是你改动了,depot tools这个文件夹下面的文件,解决方法就是到

cd  depot tools/

git checkout *

cd -

gclient config  http://libjingle.googlecode.com/svn/trunk/

就可以了。


GTalk 及libjingle教材

https://developers.google.com/talk/libjingle/login?hl=zh-CN




你可能感兴趣的:(android)