[질문] Emacs와 xcscope.el 사용시 inverted index 사용하는 방법?
글쓴이: dobest03 / 작성시간: 목, 2008/12/18 - 5:31오후
안녕하세요..
고견을 구합니다. 우분투 8.10 사용중입니다.
Emacs 에다가 cscope interface인 xcscope.el을 사용하여 소스 코드 브라우징 하고 있습니다.
기본적인 것은 잘 됩니다만, 커널 소스를 보다보니, 검색이 너무 늦는 군요.
Inverted index를 쓰면 검색이 빨라질 텐데, 이를 사용하는 방법이 없는지요?
emacs의 cscope mode에서는 inverted index를 만드는 게 문제가
있습니다.(원래는 만들지 못합니다.)
cscope mode에서 불러다 쓰는 /usr/bin/cscope-indexer를 고쳐서
-q 옵션을 줘서 c-c s l로 인덱스 파일을 생성을 하면 일단은
inverted index 파일은 생성이 됩니다만, c-c s g나,
c-c s G로 심볼을 찾으면 다음과 같은 로그를 찍으면서,
생성되버린 inverted index파일을 지워버리는 군요..
cscope -q option mismatch between command line and old symbol database
사용중이신 분 도움부탁드립니다.
감사합니다..
Forums:
참고하세요.
http://www.emacswiki.org/emacs/CScopeAndEmacs
인용:
Just touch the file cscope.po.out and cscope.in.out after finishing index. It works for me. And try google bscope, you will find a new cscope interface faster than xscope. – highfly22 at gmail dot com
cscope -q option mismatch
cscope -q option mismatch between command line and old symbol database
저는 MS 윈도우에서 emacs cscope 를 사용합니다.
오래전에 수정해서 쓴거라 기억은 잘 안나는데
cscope-indexer 파일에 -q 옵션을 넣어서 수정하신거라면, 실제 cscope 명령에서도 -q 옵션이 같이 들어가야 합니다.
아래는 제윈도우에서의 설정입니다.
1. mv cscope.exe cscopeic.exe
2. cscope-indexer
cscopeic -b -q -i $LIST_FILE -f $DATABASE_FILE
3. cscope-indexer.bat
sh cscope-indexer %1 %2 %3 %4 %5 %6 %7 %8 %9
4. cscope.bat
cscopeic.exe -C -q %1 %2 %3 %4 %5 %6 %7 %8 %9
cscope.bat 과 같이 -q 옵션으로 실행할수 있도록 수정해야합니다.
우분투에서도 마찬가지일거에요.
아래는 추가 팁입니다.
xcscope.el 을 쓰신다면, cscope menu - option - never update cscope database 를 찾을수 있습니다.
이옵션을 켜두시면, 소스수정후 심볼검색할때 디비를 업데이트하지 않습니다.
항상켜두시려면 xcscope.el 내부에
(defcustom cscope-do-not-update-database t
..)
t 로 셋팅해두시면 됩니다. 소스수정을 너무 많이 했을경우에 한번씩만 디비를 갱신해주면 됩니다.
댓글 달기