Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign uptools: add msvc /P output to .gitignore #35735
Conversation
|
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. |
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