From db44570c8a68d3285d8106b2e17ff78abab89d8e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 13 Aug 2020 23:19:32 +0200 Subject: Added other subdirectories to compile_commands --- run | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'run') diff --git a/run b/run index 28d2c79..ee3285f 100755 --- a/run +++ b/run @@ -117,14 +117,30 @@ make_disasm() { #hexdump -C build/kernel.bin | less -R } +# TODO: This is VERY bad code and I should rewrite it I guess make_sync() { ctags -R --exclude=.git --exclude=build --exclude=iso --exclude=cross . make --always-make --dry-run | + sed -n '/Compiled libc/,/Compiled libk/p' | grep -wE 'gcc' | grep -w '\-c' | - jq -nR '[inputs|{directory:"'"$(pwd)"'/kernel/", command:., file: match(" [^ ]+$").string[1:]}]' \ + jq -nR '[inputs|{directory:"'"$(pwd)"'/lib/", command:., file: match(" [^ ]+$").string[1:]}]' \ >compile_commands.json + make --always-make --dry-run | + sed -n '/Compiled libk/,/Compiled kernel/p' | + grep -wE 'gcc' | + grep -w '\-c' | + jq -nR '[inputs|{directory:"'"$(pwd)"'/kernel/", command:., file: match(" [^ ]+$").string[1:]}]' \ + >>compile_commands.json + make --always-make --dry-run | + sed -n '/Compiled kernel/,/Compiled apps/p' | + grep -wE 'gcc' | + grep -w '\-c' | + jq -nR '[inputs|{directory:"'"$(pwd)"'/apps/", command:., file: match(" [^ ]+$").string[1:]}]' \ + >>compile_commands.json + tr tmp + mv tmp compile_commands.json } make_tidy() { -- cgit v1.2.3