compile scripting engine with -pthread

This commit is contained in:
nakst 2022-02-02 16:10:43 +00:00
parent 734435b5fc
commit a9cbcb685b
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ if [ $? -ne 0 ]; then
fi
# Compile the scripting engine.
gcc -o bin/script util/script.c -g -Wall -Wextra -O2
gcc -o bin/script util/script.c -g -Wall -Wextra -O2 -pthread
# Compile and run Build.
gcc -o bin/build -g util/build.c -pthread -DPARALLEL_BUILD -D${ES_TARGET-TARGET_X86_64} \