mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-03-23 20:18:43 +00:00
Fix Windows dump_syms x64 linking
The dia_sdk GYP target points at the x86 diaguids.lib, it needs to point at the x64 one for x64 builds. R=mark at https://breakpad.appspot.com/9784002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1431 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
@@ -37,16 +37,34 @@
|
|||||||
'all_dependent_settings': {
|
'all_dependent_settings': {
|
||||||
'include_dirs': [
|
'include_dirs': [
|
||||||
'<(DEPTH)',
|
'<(DEPTH)',
|
||||||
'$(VSInstallDir)\DIA SDK\include',
|
'$(VSInstallDir)/DIA SDK/include',
|
||||||
],
|
],
|
||||||
'msvs_settings': {
|
'msvs_settings': {
|
||||||
'VCLinkerTool': {
|
'VCLinkerTool': {
|
||||||
'AdditionalDependencies': [
|
'AdditionalDependencies': [
|
||||||
'$(VSInstallDir)\DIA SDK\lib\diaguids.lib',
|
'diaguids.lib',
|
||||||
'imagehlp.lib',
|
'imagehlp.lib',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
'configurations': {
|
||||||
|
'x86_Base': {
|
||||||
|
'msvs_settings': {
|
||||||
|
'VCLinkerTool': {
|
||||||
|
'AdditionalLibraryDirectories':
|
||||||
|
['$(VSInstallDir)/DIA SDK/lib'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'x64_Base': {
|
||||||
|
'msvs_settings': {
|
||||||
|
'VCLinkerTool': {
|
||||||
|
'AdditionalLibraryDirectories':
|
||||||
|
['$(VSInstallDir)/DIA SDK/lib/amd64'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user