Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在使用 PGO 构建应用程序(可执行文件)时,msvc 将使用链接器最终生成带有所有 pgo/pgc 辅助文件的优化后的可执行文件。
但是我怎样才能获得装配列表文件(作为 /Fa /FAsc 选项)以进行配置文件引导优化?
当您在项目中有一个 .asm 源文件时,配置属性应该有一个标记为“Microsoft 宏汇编程序”的部分。在“Listing”属性下应该有一个选择:“Enable Assembly Generated Code Listing”
如果将其设置为“是”,它将在 ml.exe 的命令行中添加 /Sg 选项
或者,如果您这样做,则将其手动添加到您的自定义构建属性中。
还应设置“汇编代码列表文件”。