Skip to content

Commit 35d7e6b

Browse files
committed
bugzilla Issue 17384: fix default executable search path for LDC/x64 under VS2017
1 parent 682eca0 commit 35d7e6b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -875,6 +875,8 @@ unreleased Version 0.45.0
875875
* added task list support for files loaded into the editor
876876
* read default DMD installation path from Visual D or DMD registry key, if not available in
877877
VS registry hive
878+
* cpp2d: add missing default to switch(), ensure space between identifiers, fix module
879+
name for translated C-files
878880
* new project option "Add import paths of project dependencies"
879881
* use generic file system tracking instead of compiler switch -deps=
880882
* fixed tracker.exe not found in VS2015 and VS2017
@@ -886,3 +888,5 @@ unreleased Version 0.45.0
886888
* mago: can now show registers in expressions
887889
* mago: show static members and base class with different icons
888890
* DParser: cache semantic results until next edit
891+
* DParser: break endless loop due to unresolved selective import
892+
* bugzilla Issue 17384: fix default executable search path for LDC/x64 under VS2017

visuald/dpackage.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1647,7 +1647,7 @@ class GlobalOptions
16471647
GDC.ExeSearchPath = r"$(GDCInstallDir)bin;$(VSINSTALLDIR)Common7\IDE;" ~ sdkBinDir;
16481648
GDC.ExeSearchPath64 = GDC.ExeSearchPath;
16491649
LDC.ExeSearchPath = r"$(LDCInstallDir)bin;" ~ getVCDir("bin", false) ~ r";$(VSINSTALLDIR)Common7\IDE;" ~ sdkBinDir;
1650-
LDC.ExeSearchPath64 = r"$(LDCInstallDir)bin;" ~ getVCDir("bin", true) ~ r";" ~ sdkBinDir;
1650+
LDC.ExeSearchPath64 = r"$(LDCInstallDir)bin;" ~ getVCDir("bin", true) ~ r";$(VSINSTALLDIR)Common7\IDE;" ~ sdkBinDir;
16511651

16521652
DMD.LibSearchPath64 = getDefaultLibPathCOFF64();
16531653
LDC.LibSearchPath64 = DMD.LibSearchPath64;

0 commit comments

Comments
 (0)