diff options
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -17,6 +17,7 @@ if [ "$cpu_arch" = "x86_64" ]; then source_files="$source_files $(find "executor/x86_64" -name "*.c")" else echo "WARNING: There is no machine code implementation for your cpu architecture: $cpu_arch. An interpreter will be used instead" + source_files="$source_files $(find "executor/interpreter" -name "*.c")" fi if [ -z "$CC" ]; then |