반응형
Repo를 이용해서 안드로이드 소스를 받기 위해 작업 하던 중 아래와 같은 에러가 발생했다.
error: Exited sync due to gc errors
뭐 때문인지 인터넷 검색을 해보니 아래와 같은 내용이 있었다.
(링크 참조)
The latest version of repo now requires Git 1.7.2 or newer, as that is when the -c flag was introduced.
https://groups.google.com/forum/?fromgroups=#!topic/repo-discuss/tnIWemm8M6k
아,,, repo 버전이 변경됨에 따라 git 버전도 새 걸로 변경해야 한다.
1. sudo add-apt-repository ppa:git-core/ppa
2. sudo apt-get update
3. sudo apt-get install git-core
4. repo sync
이렇게 하니 Android 4.1.2 소스가 잘 받아진다.
repo 랑 git 버전은 꾸준히 업데이트 해놓아야 겠다.
'Android Development' 카테고리의 다른 글
| ID3 TAG Parsing & Saving (0) | 2013.03.26 |
|---|---|
| 안드로이드 이미지 언팩 (0) | 2013.03.22 |
| Android System Memory 파악 (0) | 2012.11.28 |
| Android Platform Version & API Level, Version code name. (0) | 2012.09.20 |
| AudioFlinger 에서 PID or UID 구별하기 (0) | 2012.09.15 |