在用cscope或cscope-indexer的时候总是报错,can not find file **.后来发现找不到的问题全是符号链接文件,不把这些文件放到cscope.files里就可以了,需要修改cscope-indexer这个脚本
(
if [ "X$RECURSE" = "X" ]
then
# Ugly, inefficient, but it works.
for f in *
do
echo "$DIR/$f"
done
else
find $DIR \( -type f \) #去掉了 -o -type l 不找link文件
fi
) | \
|
阅读(1285) | 评论(0) | 转发(0) |