Get Odin compiling and produced exe's running on FreeBSD

This commit is contained in:
Christian Seibold
2020-09-14 15:22:35 -05:00
parent ac126a8cd7
commit 577be4a8ae
12 changed files with 557 additions and 11 deletions
+2
View File
@@ -23,6 +23,8 @@ if [[ "$(uname)" == "Darwin" ]]; then
compiler="clang"
other_args="${other_args} -liconv"
elif [[ "$(uname)" == "FreeBSD" ]]; then
compiler="clang"
fi
${compiler} src/main.cpp ${warnings_to_disable} ${libraries} ${other_args} -o odin && ./odin run examples/demo/demo.odin