diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/toolchain/win/BUILD.gn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/toolchain/win/BUILD.gn b/build/toolchain/win/BUILD.gn index 97dca96..e310039 100644 --- a/build/toolchain/win/BUILD.gn +++ b/build/toolchain/win/BUILD.gn @@ -67,7 +67,7 @@ template("msvc_toolchain") { tool("cc") { rspfile = "{{output}}.rsp" precompiled_header_type = "msvc" - pdbname = "{{target_out_dir}}/{{target_output_name}}_c.pdb" + pdbname = "{{target_out_dir}}/{{label_name}}_c.pdb" command = "ninja -t msvc -e $env -- $cl /nologo /showIncludes /FC @$rspfile /c {{source}} /Fo{{output}} /Fd$pdbname" depsformat = "msvc" description = "CC {{output}}" @@ -82,7 +82,7 @@ template("msvc_toolchain") { precompiled_header_type = "msvc" # The PDB name needs to be different between C and C++ compiled files. - pdbname = "{{target_out_dir}}/{{target_output_name}}_cc.pdb" + pdbname = "{{target_out_dir}}/{{label_name}}_cc.pdb" command = "ninja -t msvc -e $env -- $cl /nologo /showIncludes /FC @$rspfile /c {{source}} /Fo{{output}} /Fd$pdbname" depsformat = "msvc" description = "CXX {{output}}" |