Chinaunix首页 | 论坛 | 博客
  • 博客访问: 212609
  • 博文数量: 47
  • 博客积分: 72
  • 博客等级: 民兵
  • 技术积分: 171
  • 用 户 组: 普通用户
  • 注册时间: 2012-08-31 11:44
文章分类

全部博文(47)

文章存档

2015年(14)

2014年(5)

2013年(11)

2012年(17)

分类: C/C++

2014-04-13 00:59:01

#!/bin/bash

UBOOT=$PWD
#generate the cscope.files
find $UBOOT \
    -path "$UBOOT/include/configs*"                                  -prune -o     \
    -path "$UBOOT/board/*"                                             -prune -o    \
    -path "$UBOOT/drivers/serial/*"                                    -prune -o    \
    -path "$UBOOT/nand_spl/*"                                         -prune -o    \
    -path "$UBOOT/onenand_ipl/*"                                     -prune -o    \
    -path "$UBOOT/doc/*"                                             -prune -o    \
    -path "$UBOOT/arch/arm/cpu/*"                                     -prune -o    \
    -path "$UBOOT/arch/arm/include/asm/*" ! -path "$UBOOT/arch/arm/include/asm/arch-s3c24x0*"    -prune -o    \
    -path "$UBOOT/arch/*" ! -path "$UBOOT/arch/arm*"                -prune -o    \
    -path "$UBOOT/examples/*"                                         -prune -o    \
    -path "$UBOOT/tools/*"                                             -prune -o    \
    -name "*.[chsS]" -print > $UBOOT/cscope.files

find $UBOOT/include/configs/ -name smdk2440.h >>  $UBOOT/cscope.files    
find $UBOOT/board/samsung/smdk2440/ -name "*.[chsS]" >>  $UBOOT/cscope.files    
find $UBOOT/drivers/serial/ -name serial_s3c24x0.c >>  $UBOOT/cscope.files    
find $UBOOT/arch/arm/cpu/arm920t/s3c24x0/ -name "*.[chsS]" >>  $UBOOT/cscope.files    
cscope -bkq -i $UBOOT/cscope.files

#generate the cppcomplete
ctags -n -f cppcomplete.tags --fields=+ai --C++-types=+p * -L $UBOOT/cscope.files

#Try setting the $CSCOPE_DB environment variable to point to a Cscope database you create, so you won't always need to launch Vim in the same directory as the database.
#export CSCOPE_DB
export CSCOPE_DB=$UBOOT/cscope.out

#ctags use tags as defualt.
cp cppcomplete.tags tags

阅读(1889) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~