diff options
| author | Raymaekers Luca <luca@spacehb.net> | 2025-10-24 12:58:52 +0200 |
|---|---|---|
| committer | Raymaekers Luca <luca@spacehb.net> | 2025-10-24 12:58:52 +0200 |
| commit | 856fd58549e5bf50e800a665f9deb27d967df2fb (patch) | |
| tree | 6950210e5ae3618b501a7045f10f8fc06dd903df /src/code/build.sh | |
| parent | d8b3ca9d02377cf04a09e0f518a3385b7324bc4d (diff) | |
checkpoint
Diffstat (limited to 'src/code/build.sh')
| -rwxr-xr-x | src/code/build.sh | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/src/code/build.sh b/src/code/build.sh deleted file mode 100755 index 87a5b85..0000000 --- a/src/code/build.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh - -ThisDir="$(dirname "$(readlink -f "$0")")" -cd "$ThisDir" - -Compiler="clang" - -CompilerFlags=" --g --fdiagnostics-absolute-paths --nostdinc++ --DSIM86_INTERNAL --fsanitize=undefined -" - -WarningFlags=" --Wall --Wextra --Wno-unused-label --Wno-unused-variable --Wno-unused-function --Wno-unused-but-set-variable --Wno-missing-field-initializers --Wno-write-strings -" - -Libs="./reference_decoder/sim86_lib.cpp" - -if false -then - Source="./shared_library_test.cpp" - printf '%s\n' "$Source" - $Compiler $CompilerFlags $WarningFlags \ - -o ../build/shared_library_test \ - $Libs $Source -fi - -Source="sim86.cpp" -printf '%s\n' "$Source" -$Compiler $CompilerFlags $WarningFlags \ - -o ../build/sim86 \ - $Libs $Source |
