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