early-access version 2853
This commit is contained in:
33
externals/vcpkg/ports/libpq/patches/windows/fix-compile-flag-Zi.patch
vendored
Executable file
33
externals/vcpkg/ports/libpq/patches/windows/fix-compile-flag-Zi.patch
vendored
Executable file
@@ -0,0 +1,33 @@
|
||||
diff --git a/src/tools/msvc/MSBuildProject.pm b/src/tools/msvc/MSBuildProject.pm
|
||||
index b93992f..2397511 100644
|
||||
--- a/src/tools/msvc/MSBuildProject.pm
|
||||
+++ b/src/tools/msvc/MSBuildProject.pm
|
||||
@@ -336,7 +336,7 @@ sub WriteItemDefinitionGroup
|
||||
<BrowseInformation>false</BrowseInformation>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
- <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
+ <DebugInformationFormat>OldStyle</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
diff --git a/src/tools/msvc/Install.pm b/src/tools/msvc/Install.pm
|
||||
index e0c9a88..98f9e67 100644
|
||||
--- a/src/tools/msvc/Install.pm
|
||||
+++ b/src/tools/msvc/Install.pm
|
||||
@@ -352,9 +352,12 @@ sub CopySolutionOutput
|
||||
|| croak "Could not copy $pf.$ext\n";
|
||||
}
|
||||
}
|
||||
- lcopy("$conf\\$pf\\$pf.pdb", "$target\\bin\\$pf.pdb")
|
||||
- || croak "Could not copy $pf.pdb\n";
|
||||
- print ".";
|
||||
+ if ($1 eq 'DynamicLibrary')
|
||||
+ {
|
||||
+ lcopy("$conf\\$pf\\$pf.pdb", "$target\\bin\\$pf.pdb")
|
||||
+ || croak "Could not copy $pf.pdb\n";
|
||||
+ print ".";
|
||||
+ }
|
||||
}
|
||||
print "\n";
|
||||
return;
|
Reference in New Issue
Block a user