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.
我使用 Qt、clang 和 lld。在我的情况下,有什么方法可以生成 .map 吗? -Wl,-Map=output.map 不适合我。
-Wl,-Map=output.map
提前致谢
如果有人会遇到这个问题。
$(LDFLAGS_MOD) -lm -Wl,-map,$@.map $(LDFLAGS_EXTRA)
帮助过我
我有用
-Wl,-Map,output.map
(-带有大写字母 M 的映射)在 Clang 链接器标志中为我工作。