Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 6f750d8

Browse files
authored
Merge pull request #1979 from wilzbach/fix-dmd-path-stable
Fix DMD path to ../generated
2 parents 7c8ca6a + afd1338 commit 6f750d8

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

win32.mak

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
MODEL=32
44

5-
DMD=dmd
5+
DMD_DIR=..\dmd
6+
BUILD=release
7+
OS=windows
8+
DMD=$(DMD_DIR)\generated\$(OS)\$(BUILD)\$(MODEL)\dmd
69

710
CC=dmc
811

win64.mak

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ MODEL=64
55
VCDIR=\Program Files (x86)\Microsoft Visual Studio 10.0\VC
66
SDKDIR=\Program Files (x86)\Microsoft SDKs\Windows\v7.0A
77

8-
DMD=dmd
8+
DMD_DIR=..\dmd
9+
BUILD=release
10+
OS=windows
11+
DMD=$(DMD_DIR)\generated\$(OS)\$(BUILD)\$(MODEL)\dmd
912

1013
CC="$(VCDIR)\bin\amd64\cl"
1114
LD="$(VCDIR)\bin\amd64\link"

0 commit comments

Comments
 (0)