Created
March 7, 2025 12:35
-
-
Save GasparVardanyan/09398e2464a6b1a695550bd2b096b52f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
cmd_list="$1" | |
arg_list=${@:2} | |
mkdir -p build | |
proj=$(basename "$(pwd)") | |
status=0 | |
while read cmd | |
do | |
if [ "$cmd" = 'q' ] | |
then | |
qmake6 CONFIG+=debug . | |
status=$? | |
compiledb -n make | |
sed -i 's/"-mno-direct-extern-access",//' compile_commands.json | |
elif [ "$cmd" = 'b' ] | |
then | |
make -j$(nproc) | |
status=$? | |
elif [ "$cmd" = 'r' ] | |
then | |
./build/"$proj" $arg_list | |
status=$? | |
elif [ "$cmd" = 'd' ] | |
then | |
# gdb -q -ex=r --args "${arg_list:-''}" ./build/"$proj" | |
gdb ./build/$proj | |
elif [ "$cmd" = 'c' ] | |
then | |
make clean | |
status=$? | |
elif [ "$cmd" = 'o' ] | |
then | |
makepkg -D opencv -s -ef --noarchive | |
elif [ "$cmd" = 't' ] | |
then | |
makepkg -D tinyobjloader -s -ef --noarchive | |
elif [ "$cmd" = 'w' ] | |
then | |
rm -rf /src/work/windows/Desktop/output && cp -rv ../output /src/work/windows/Desktop | |
status=$? | |
fi | |
[ $status -ne 0 ] && break | |
done < <(echo "$cmd_list" | fold -w 1) | |
echo -e "\n\nFINISHED WITH STATUS $status" | |
exit $status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment