错误:不是.exe已停止工作 - 尝试构建 LLVM 时

Error: not.exe has stopped working - When trying to build LLVM

本文关键字:构建 LLVM 停止工作 不是 exe 错误      更新时间:2023-10-16

我正在尝试在Windows上构建LLVM,每次我这样做时,我都会到达某个点,然后收到一个错误,说"not.exe has stopped working"它在桌面上弹出大约15次。

我不确定发生了什么,但是当我在Visual Studio中检查错误时,我收到以下消息:

Error   4   error : Couldn't execute program 'C:/Users/Cyborg/Documents/Developer'The process cannot access the file because it is being used by another process.   C:UsersJoeDocumentsDevllvmtestCUSTOMBUILD    check-llvm

收到此错误 5-7 次,具体取决于我单击桌面上弹出的错误的速度。很明显,这个问题正因为如此而发生。

故障模块为:MSVCR100.dll

有谁知道为什么会这样?

我不知道

为什么你会得到错误,因为我没有在Windows上构建或使用LLVM。由于没有其他人插话,我将尝试给出一两个提示。

"not.exe"(或Linux下的"not")是运行基于lit的回归测试时使用的一个小LLVM辅助程序。它用于执行程序,如果程序失败,则返回良好的退出状态,如果程序未失败,则返回错误的退出状态。

我猜"CUSTOMBUILD check-llvm"(不管是什么)正在尝试运行回归测试,并且当使用evr"not"时,您会得到神秘的错误。

我希望这有所帮助。