On Wed, Jun 21, 2023 at 10:00 AM 小田倉誠勇 <bmp.bmn@xxxxxxxxx> wrote: > > I am performing a build according to the following URL, > make check 2>&1 | tee build.log > I get an error when I run > What should I do? > […] > [build PAT] clucene > tar: bazel/external/harfbuzz/config/config-override.h: モードを rwxr-xr-x > に変更できません: Not a directory That is kind of a weird message - yes, it is not a directory, and not supposed to be one either. Maybe a mistranslation and it should be something like "cannot set mode to rwxr-xr-x: No such file or directory"? so antivirus tools can block access to files/delete files that the build expects to be present, but that mostly affects test files, not aware of it affecting the extraction of tarballs. can you please try again with make PARALLELISM=1 verbose=1 skia to get the command that triggers the error, then you can try to run that in isolation to see whether antivirus is causing the problem or something else. I notice that your paths looks unusual - c:/cygwin/home/lode/dev is not the usual filesystem structure, you would have c:/cygwin/home/youruseraccount/lode/dev usually - so could as well be a permission problem when you manually moved the directory around. ciao Christian