我试图在powerpc arch上运行一个Rust程序。当我用C语言构建代码时,我使用了-mlongcall标志。我如何在我的Rust程序中使用这个标志呢?一般来说,如果我能在我的Rust版本中使用GCC中的标志,那就太好了。
-mlongcall
bqf10yzr1#
-mlongcall标志的解决方案是使用以下标志:-Ctarget-features=+longcall,如本期所建议:add mlongcall flag to rustc
-Ctarget-features=+longcall
1条答案
按热度按时间bqf10yzr1#
-mlongcall标志的解决方案是使用以下标志:
-Ctarget-features=+longcall
,如本期所建议:add mlongcall flag to rustc