From 4b2ea2ca00eea7feea036b7642c0c1443b8f77a1 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sun, 3 May 2020 20:20:22 -0700 Subject: removed buggy qsort header and implemented myself --- bin/gentags | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/gentags b/bin/gentags index f0494f0..f398349 100755 --- a/bin/gentags +++ b/bin/gentags @@ -10,10 +10,11 @@ echo "finding files ..." ROOT=/home/nolln/root find $ROOT \ -path "$ROOT/sys/*.[chs]" -prune -o \ + -path "$ROOT/vendor/musl/src/*.[chs]" -prune -o \ -path "$ROOT/include/*.h" > "$CSCOPE_DIR/files" echo "adding files to cscope db: $ROOT/cscope.db ..." -cscope -b -i "$CSCOPE_DIR/files" +cscope -b -k -I include/vendor/libc -I include/ -i "$CSCOPE_DIR/files" CSCOPE_DB="$ROOT/cscope.out" echo "exported CSCOPE_DB to: '$CSCOPE_DB'" -- cgit v1.2.1