[PATCH] D126933: [BOLT] Restrict execution of tests that fail on Windows

Rafael Auler via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 3 14:42:01 PDT 2022


rafauler added a comment.

Conceptually, the problem is that we need a full cross-compiler to build to a specific target (linux), but we only have the compiler, not the libs. That's why I thought it would make sense to restrict to environments where we are not cross compiling to a different system. Looking at "pie.test", for example, we are apparently building a .cpp file, which is even worse, as it requires libstdc++. Somehow I want to give test writers the idea that it is not OK to build C++ files unless you are not cross-compiling.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D126933/new/

https://reviews.llvm.org/D126933



More information about the llvm-commits mailing list