facebookarchive / BOLT

Binary Optimization and Layout Tool - A linux command-line utility used for optimizing performance of binaries
2.51k stars 176 forks source link

Lit test failed for AArch64 #224

Closed ElvinaYakubova closed 2 years ago

ElvinaYakubova commented 2 years ago

I found that after this commit tests in X86 folder fail when I run them on AArch64 machine. I have two options how to fix this: the first one is to add lit.local.cfg to X86 folder and ignore them on Aarch64 platform, and the second one is to add -target option, but in this case you also need to install libraries for cross-compiling. Which option is preferable to implement?

aaupov commented 2 years ago

Hi Elvina,

Option 1 would be preferable. Thanks for checking!

ElvinaYakubova commented 2 years ago

Thanks for the answer!