7 lines
160 B
Bash
Executable File
7 lines
160 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
clang -Weverything -Wno-unsafe-buffer-usage -Werror -O3 -march=native -flto -std=c17 -fstack-protector-all -s -o sudk_c "$1"
|
|
|
|
time ./sudk_c
|