正如这个问题所示,使用g ++,我能做到g++ -S -masm=intel test.cpp.另外,对于clang,我可以这样做clang++ -S test.cpp,但-masm=intelclang(warning argument unused during compilation: -masm=intel)不支持.如何使用clang获取intel语法?
我想使用Microsoft VC++ Compiler从C++源代码生成汇编代码.我想在命令行中执行此操作.不是来自IDE.
什么是命令/选项?