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




發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章