You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: win64.mak
+13-2Lines changed: 13 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,29 @@
1
-
# Makefile to build D runtime library druntime{64,32mscoff}.lib for Windows MSVC
1
+
# Makefile to build D runtime library lib\druntime64.lib for 64 bit Windows and
2
+
# lib\druntime32mscoff.lib for 32 bit Windows. Both are for use with the MSVC toolchain.
2
3
3
-
# Set this to `32mscoff` for a 32-bit build.
4
+
# Determines whether lib\druntime32mscoff.lib is built or lib\druntime64.lib
5
+
# Set to `32mscoff` for a 32-bit build, `64` for 64-bit build.
4
6
MODEL=64
5
7
6
8
# Assume MSVC cl.exe in PATH is set up for the target MODEL.
7
9
# Otherwise set it explicitly, e.g., to `C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\bin\Hostx86\x86\cl.exe`.
0 commit comments