How to determine which compiler has been used to compile an executable?(如何确定使用了哪个编译器来编译可执行文件?)
问题描述
从已编译的文件中,我可以看到使用哪个编译器生成文件吗?
From a compiled file, can I see which compiler has been used to generate the file?
推荐答案
还有一个很好的旧字符串"实用程序.转储它在二进制文件中找到的所有 ascii-ish 字符串.不同的编译器在它们生成的二进制文件中嵌入了不同数量的信息,但许多实际上会包含明显的标识字符串.
There's also the good old 'strings' utility. Dumps all ascii-ish looking strings it finds in the binary. Different compilers embed different amounts of information in the binaries they produce, but many will actually include obviously identifying strings.
这篇关于如何确定使用了哪个编译器来编译可执行文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何确定使用了哪个编译器来编译可执行文件?
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01