Skip to content

Commit 3523674

Browse files
committed
fix phobos.json build for dmd 2.067
1 parent 9bb9fbf commit 3523674

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGES

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ Version history
698698
* object browser/symbol search: now filters out __unittest and __invariant symbols
699699
* cv2pdb: updated to 0.33 with better DWARF location support
700700

701-
unreleased Version 0.3.41
701+
2015-05-16 Version 0.3.41
702702

703703
* mago:
704704
- module list now shows x64 addresses correctly
@@ -727,3 +727,12 @@ unreleased Version 0.3.41
727727
* new command "Compile and Disassemble" to show the disassembly of the current file in
728728
the code context window that is automatically synchronized with editor movements
729729

730+
unreleased Version 0.3.42
731+
732+
* added new command "DustMite Build Failure" to reduce source of startup project
733+
for build error with DustMite
734+
* update "Build Phobos Browse Info" and "Build local version of phobos" for dmd 2.067+
735+
* cv2pdb:
736+
- last version introduced crashes with DWARF conversions
737+
- DWARF debug info now stripped from executable
738+
- support for mspdb140.dll from VS2015

visuald/dpackage.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1844,7 +1844,7 @@ class GlobalOptions
18441844
string jsonfile;
18451845
string opts = " -d -c -o-";
18461846

1847-
if(std.file.exists(s ~ "std\\algorithm.d")) // D2
1847+
if(std.file.exists(s ~ "std\\algorithm.d") || std.file.exists(s ~ "std\\algorithm\\package.d")) // D2
18481848
{
18491849
files ~= findDRuntimeFiles(s, "std", true);
18501850
files ~= findDRuntimeFiles(s, "etc\\c", true);

0 commit comments

Comments
 (0)