Files
wren/script
Bob Nystrom 4d175783d7 fix: move pthread flag from global CFLAGS to libuv link step for Linux builds
The -pthread compiler flag was removed from the global CFLAGS and instead
incorporated into a new LIB_UV_LINK variable that includes -lpthread alongside
the libuv library path. This change applies the pthread linking only to
executables that depend on libuv (the CLI binary and test binary), rather than
to all compilation units, preventing potential issues with modules or static
library builds that do not require threading support.
2015-08-16 16:07:41 +00:00
..