diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-08-27 09:59:34 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-08-27 09:59:34 +0200 |
commit | d973a3dfd2fa39c14a1995e4a6d59bb08e88f37b (patch) | |
tree | 74ef130937fd565bc445a5a1f01eee4b94ef03d3 /bootstrap.gmake | |
parent | 28c69585d564a85b5f7cf84d690deac453067a70 (diff) |
Change bootstrap target on Windows from i686 to x86_64
Seeing that we have dropped 32-bit baseutils, this feels like the correct
default.
Diffstat (limited to 'bootstrap.gmake')
-rw-r--r-- | bootstrap.gmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.gmake b/bootstrap.gmake index e4d4b33..6a2ca69 100644 --- a/bootstrap.gmake +++ b/bootstrap.gmake @@ -39,8 +39,8 @@ chost := ifeq ($(OS),Windows_NT) exe := .exe - host := i686-w64-mingw32 - chost := i686-w64-mingw32 + host := x86_64-w64-mingw32 + chost := x86_64-w64-mingw32 override LIBS += -limagehlp else override LIBS += -lpthread |