Skip to content

Commit 629b84b

Browse files
authored
Merge pull request #90 from rainers/master
msbuild: fix adding -gf to command line
2 parents 9e1c321 + 1f3342f commit 629b84b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,7 @@ unreleased Version 0.47.0
963963
- can now convert DBG files alongside exe/dll
964964
* build system
965965
- msbuild:
966-
- improved dependency handling for single file compilation (thanks to Igor Cesi)
966+
- improved dependency handling for single/package file compilation (thanks to Igor Cesi)
967967
- LDC now assumed to be multilib installation, i.e. 64-bit lib folder is "lib64", not "lib"
968968
- Issue 18641: phobos/druntime libraries automatically added to link if any D file
969969
is compiled in the project or a dependent static library (without -betterC)

msbuild/dcompile.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
<_DebugFull Condition="'$(DCompiler)' == 'LDC'">false</_DebugFull>
9797
<_DebugFull Condition="'$(_DebugFull)' == '' and '@(DCompile->Metadata('DebugInfo')->Distinct())' == 'None'">false</_DebugFull>
9898
<_DebugFull Condition="'$(_DebugFull)' == ''">@(DCompile->Metadata('DebugFull')->Distinct())</_DebugFull>
99-
<_DebugFull Condition="'$(_DebugFull)' != 'true' or '$(_DebugFull)' != 'false'">false</_DebugFull>
99+
<_DebugFull Condition="'$(_DebugFull)' != 'true' and '$(_DebugFull)' != 'false'">false</_DebugFull>
100100
</PropertyGroup>
101101

102102
<CompileD Condition="'@(DCompile)' != ''"

0 commit comments

Comments
 (0)