-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tools: add msvc /P output to .gitignore #35735
Conversation
cc @nodejs/platform-windows @targos |
How did you add the |
diff --git a/tools/v8_gypfiles/v8.gyp b/tools/v8_gypfiles/v8.gyp
index fd786d024e..696474c053 100644
--- a/tools/v8_gypfiles/v8.gyp
+++ b/tools/v8_gypfiles/v8.gyp
@@ -203,7 +203,7 @@
'target_defaults': {
'msvs_settings': {
'VCCLCompilerTool': {
- 'AdditionalOptions': ['/utf-8']
+ 'AdditionalOptions': ['/utf-8', '/P']
}
},
}, Recently use case is #35433. The clang support maybe require us to patch v8 again. |
@targos ping |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nodejs/build-files
Commit Queue failed- Loading data for nodejs/node/pull/35735 ✔ Done loading data for nodejs/node/pull/35735 ----------------------------------- PR info ------------------------------------ Title tools: add msvc /P output to .gitignore (#35735) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch gengjiawen:msvc-ignore -> nodejs:master Labels meta Commits 1 - tools: add msvc /P output to .gitignore Committers 1 - Jiawen Geng PR-URL: https://github.com/nodejs/node/pull/35735 Reviewed-By: Michaël Zasso ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/35735 Reviewed-By: Michaël Zasso -------------------------------------------------------------------------------- ✔ Last GitHub Actions successful ✖ No Jenkins CI runs detected ℹ This PR was created on Wed, 21 Oct 2020 10:47:38 GMT ✔ Approvals: 1 ✔ - Michaël Zasso (@targos) (TSC): https://github.com/nodejs/node/pull/35735#pullrequestreview-517615271 ✖ This PR needs to wait 9 more hours to land (or 0 hours if there is one more approval) -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncu Commit Queue action: https://github.com/nodejs/node/actions/runs/332615436 |
PR-URL: #35735 Reviewed-By: Michaël Zasso <targos@protonmail.com>
Landed in 48ed72d |
PR-URL: #35735 Reviewed-By: Michaël Zasso <targos@protonmail.com>
PR-URL: #35735 Reviewed-By: Michaël Zasso <targos@protonmail.com>
PR-URL: #35735 Reviewed-By: Michaël Zasso <targos@protonmail.com>
This is pretty useful when debug missing symbol on windows.
See https://docs.microsoft.com/en-us/cpp/build/reference/p-preprocess-to-a-file?view=vs-2019