From 23a7f3baa33265519840609dc54e950615ec39b1 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Fri, 3 Jan 2020 18:04:08 +0200 Subject: Merge some QoL improvements from staging branch - Build executable in top-level buildroot - Use meson sourceset - Pull in poi-crash and poi-update from staging - Remove extraneous scripts in tools/ - Pull in configure scripts in scripts/ --- tools/report-clang-tidy.sh | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100755 tools/report-clang-tidy.sh (limited to 'tools/report-clang-tidy.sh') diff --git a/tools/report-clang-tidy.sh b/tools/report-clang-tidy.sh deleted file mode 100755 index eddb703..0000000 --- a/tools/report-clang-tidy.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -cp build/compile_commands.json tidy/compile_commands.json - -# https://bugs.llvm.org/show_bug.cgi?id=37315 -sed -i 's/-pipe//g' tidy/compile_commands.json -# do not scan system headers (replace -I with -isystem) -sed -i 's/\-I\/usr\/include/\-isystem\/usr\/include/g' tidy/compile_commands.json - -for folder in $(find src lib -type d) -do - if [[ $folder != *'test' ]]; then - clang-tidy -p tidy $folder/*.cpp $folder/*.h > reports/clangtidy-$(basename $folder).txt - fi -done - -- cgit v1.2.1