atpg-ls/crun

16 lines
171 B
Plaintext
Raw Normal View History

2023-02-19 19:42:50 +08:00
#!/bin/bash
clear
2023-07-03 06:52:47 +00:00
cmake .
2023-05-07 04:48:44 +00:00
make -j
2023-02-19 19:42:50 +08:00
if [ $? -ne 0 ]; then
echo "compile failed."
else
2023-05-09 23:14:22 +08:00
clear
2023-02-19 19:42:50 +08:00
echo "========================"
2023-07-18 10:52:51 +00:00
time ./atpg -i $1 --lut 4
2023-02-19 19:42:50 +08:00
fi