Skip to content

Commit 6926d7d

Browse files
authored
Merge pull request #5892 from wilzbach/fix-dmd-path
Fix DMD path to ../generated merged-on-behalf-of: Petar Kirov <ZombineDev@users.noreply.github.com>
2 parents e40f180 + ea90c1a commit 6926d7d

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

win32.mak

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,10 @@ MAKE=make
5959

6060
## D compiler
6161

62-
DMD=$(DIR)\bin\dmd
63-
#DMD=..\dmd
64-
DMD=dmd
62+
DMD_DIR=..\dmd
63+
BUILD=release
64+
OS=windows
65+
DMD=$(DMD_DIR)\generated\$(OS)\$(BUILD)\$(MODEL)\dmd
6566

6667
## Location of where to write the html documentation files
6768

win64.mak

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,10 @@ MAKE=make
6363

6464
## D compiler
6565

66-
DMD=$(DIR)\bin\dmd
67-
#DMD=..\dmd
68-
DMD=dmd
66+
DMD_DIR=..\dmd
67+
BUILD=release
68+
OS=windows
69+
DMD=$(DMD_DIR)\generated\$(OS)\$(BUILD)\$(MODEL)\dmd
6970

7071
## Location of where to write the html documentation files
7172

0 commit comments

Comments
 (0)