Skip to content

Commit

Permalink
mingw-build: Fix hard-coded win32 thread model
Browse files Browse the repository at this point in the history
`--enable-threads` was hard-coded to `win32` by mistake.

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
  • Loading branch information
stephanosio committed Oct 23, 2024
1 parent 43792f1 commit 77e6d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mingw-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ build_mingw_toolchain() {
--target=x86_64-w64-mingw32 \
--disable-multilib \
--enable-languages=c,c++ \
--enable-threads=win32 \
--enable-threads=${thread_model} \
--with-headers
make -j$(nproc) all-gcc
make install-gcc
Expand Down

0 comments on commit 77e6d7d

Please sign in to comment.