diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-07-12 12:37:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-07-12 12:37:06 +0200 |
commit | b5b758a40a79a305e0bcdf64b0956469bbfd84ad (patch) | |
tree | 22e0b712b8af2ec6d69bd33d778d852cf88b7a76 /bootstrap-mingw.bat | |
parent | 45cb6b0e5fa93dde4949b73918400cc9b1facb11 (diff) |
Use -pthread instead of -lpthread in bootstrap scripts/makefile
Diffstat (limited to 'bootstrap-mingw.bat')
-rw-r--r-- | bootstrap-mingw.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap-mingw.bat b/bootstrap-mingw.bat index cfd9d7c..5638659 100644 --- a/bootstrap-mingw.bat +++ b/bootstrap-mingw.bat @@ -107,7 +107,7 @@ for %%d in (%src%) do ( ) echo on -%cxx% -I%libbutl% -I. -DBUILD2_BOOTSTRAP -DBUILD2_HOST_TRIPLET=\"x86_64-w64-mingw32\" %ops% -o build2\b-boot.exe %r% -limagehlp +%cxx% -I%libbutl% -I. -DBUILD2_BOOTSTRAP -DBUILD2_HOST_TRIPLET=\"x86_64-w64-mingw32\" %ops% -o build2\b-boot.exe %r% -pthread -limagehlp @echo off if errorlevel 1 goto error |