aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Borner2020-08-13 23:19:32 +0200
committerMarvin Borner2020-08-13 23:19:32 +0200
commitdb44570c8a68d3285d8106b2e17ff78abab89d8e (patch)
treec5d18e4ae51403300e2755b192532293cd1ec140
parentf540d4f3d3e6eeac98891da9326dfca6f472960a (diff)
Added other subdirectories to compile_commands
-rwxr-xr-xrun18
1 files changed, 17 insertions, 1 deletions
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 <compile_commands.json '\n' '\r' | sed -e 's/\r]\r\[/,/g' | tr '\r' '\n' >tmp
+ mv tmp compile_commands.json
}
make_tidy() {