Skip to content

Commit 801cfb7

Browse files
committed
add cscope collection
1 parent 26fe59f commit 801cfb7

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# mysql-plnvm
22
Partitioned Logging in NVM implementation in InnoDB/MySQL
3+
Author: Trong-Dat Nguyen @ VLDB Lab, Sungkyunkwan University, Korea
4+
5+
./build_mysql.sh: automatically build the source code
6+
./recreate_cscope.sh: collect metadata for cscope and ctags
7+

recreate_cscope.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
#This script build cscope files and build ctags Library
3+
MYSQL_HOME=/home/vldb/mysql-plnvm
4+
5+
cd $MYSQL_HOME
6+
find -name "*.h" -o -name "*.hpp" -o -name "*.i" -o -name "*.ic" -o -name "*.in" -o -name "*.c" -o -name "*.cc" -o -name "*.cpp" > cscope.files
7+
cscope -b -q -k
8+
ctags -L cscope.files

0 commit comments

Comments
 (0)