You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiling llvm-wrapper/PassWrapper.cpp I get this error:
cargo:warning=llvm-wrapper/PassWrapper.cpp:321:57: error: no member named 'getCPUTable' in 'llvm::MCSubtargetInfo'
cargo:warning= const ArrayRef<SubtargetSubTypeKV> CPUTable = MCInfo->getCPUTable();
cargo:warning= ~~~~~~ ^
Just as an exercise I removed the references to getCPUTable and the hardware features table and replaced them with some dummy values (1 CPU, no features). This caused the rest of the compilation to succeed. However, trying to compile any example rust code causes a crash inside the compiler so I guess having no hardware features is not really an option :)
Thanks for your work on this project!
When compiling
llvm-wrapper/PassWrapper.cpp
I get this error:This is with llvm-mos/llvm-mos@50b5e6c and llvm-mos/llvm-mos-sdk@3db8fe6 (so pretty much the current commits at the time of writing). Is there something I can do to fix this?
The text was updated successfully, but these errors were encountered: