[add] add script to compile

This commit is contained in:
2026-07-31 10:36:45 +02:00
parent e4c2f1b950
commit abeb649386
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
if [ "$#" -le 1 ] ; then
echo "Usage: $0 fileExec fileSrc"
echo "for example: $0 xtest tesTensor.c" >&2
else
gcc -o $1 $2 -W -I../link_repo_ytest
fi