From fd90916a1f0dab45dd9bd3a946088f416f2bd1f3 Mon Sep 17 00:00:00 2001 From: Guus Waals <_@guusw.nl> Date: Tue, 27 May 2025 00:06:51 +0800 Subject: [PATCH] Test script --- tooling2/files.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tooling2/files.sh diff --git a/tooling2/files.sh b/tooling2/files.sh new file mode 100644 index 00000000..a3096f16 --- /dev/null +++ b/tooling2/files.sh @@ -0,0 +1,21 @@ +#!/bin/bash +set -e +tool=build/clang-x86_64-pc-windows-msvc/Release/r3_gh_tool + +scan_dir=tmps/gh_auto +file_list=files.txt +rm -f $file_list +for file in tmps/gh_auto/*.cxx +do + echo $file >> $file_list +done +for file in tmps/gh_stub/*.cxx +do + echo $file >> $file_list +done +for file in tmps/gh_fix/*.h +do + echo $file >> $file_list +done + +$tool @$file_list