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.
我正在研究 LLVM,并希望根据特定的目标架构 eg-z80 生成文件。我已经下载了z80源代码和clang。我在 clang 命令中使用了 --target 来指定 z80,但它不起作用。有人可以帮我解决这个问题吗?提前致谢。
LLVM 没有官方的 z80 后端/目标。似乎有一些第三方项目试图实现一个,例如llvm-z80,因此您可以尝试检查它们。另一种方法是编写一个新的后端。