mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-15 18:32:22 -07:00
7 lines
200 B
Bash
Executable File
7 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
|
|
WARNINGS_DISABLE="-Wno-attributes -Wno-implicit-function-declaration -Wno-incompatible-pointer-types"
|
|
LIBRARIES="-pthread -ldl -lm"
|
|
|
|
gcc src/main.c ${WARNINGS_DISABLE} ${LIBRARIES} -o odin
|