是否可以指示GCC預處理器在處理文件時不刪除註釋?GCC預處理器刪除註釋
3
A
回答
2
是的,您可以使用-C
選項。例如。
gcc -C -E myfile.c
4
GCC有-C選項來保存評論。
`-C'
Do not discard comments. All comments are passed through to the
output file, except for comments in processed directives, which
are deleted along with the directive.
You should be prepared for side effects when using `-C'; it causes
the preprocessor to treat comments as tokens in their own right.
For example, comments appearing at the start of what would be a
directive line have the effect of turning that line into an
ordinary source line, since the first token on the line is no
longer a `#'.
2
man gcc
和使用/-C(斜線,空格,破折號,capitcal C)做出以下(這可能是您的尋呼機程序)搜索-C選項,使用ñ再次搜索(描述是第三次擊中)。相關選項都在上面和下面。
相關問題
- 1. GCC預處理器
- 2. 處理XML文件會刪除註釋
- 3. 註釋處理器例外
- 4. 使用註釋處理器
- 5. 註釋處理器@autoservice
- 6. 特殊的註釋和預處理
- 7. Java註釋處理器,帶註釋的註釋類型
- 8. 自定義gcc預處理器
- 9. GCC中的PRIuPTR預處理器錯誤?
- 10. GCC轉儲預處理器定義
- 11. GCC預處理器內聯函數名
- 12. gcc的預處理器和粘貼
- 13. 爲GCC運行「輕」預處理器
- 14. 刪除注GCC ABI變化
- 15. 刪除註釋iTextSharp
- 16. 刪除SQL註釋
- 17. 具有元註釋的觸發器註釋處理器
- 18. C預處理器添加自己的註釋
- 19. 使用預處理器宏插入註釋字符
- 20. 在預處理器i文件中保留註釋
- 21. 自定義註釋處理器 - 使用註釋檢測方法
- 22. mysqldump刪除觸發器中的註釋
- 23. STS,Buildship 2.x和註釋處理器
- 24. Maven中的註釋處理器輸出
- 25. 註釋處理器與Android庫(領域)
- 26. 自定義註釋處理器 - Java
- 27. 設置顯式註釋處理器
- 28. 更改註釋處理器動態
- 29. 編譯器如何處理註釋?
- 30. @SuppressWarnings來自Java註釋處理器