mirror of
https://github.com/SimonFJ20/bfjit
synced 2026-01-16 05:27:30 +01:00
9 lines
143 B
Bash
9 lines
143 B
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
gcc -o program -std=c17 -Wall -Wextra -Wpedantic -O3 -g -fsanitize=address,undefined `cat compile_files.txt`
|
|
|
|
./program
|
|
|