On Tue, 2021-01-26 at 14:04 -0700, lordmund--- via Gcc-help wrote: > Unfortunately, the above error message is quite informative. (maybe > just for me) I don't see any actual error messages here (other than the last line which is just make telling you that something earlier failed). I suspect that the actual error is much earlier in your build process than what you quote here, and since you're using parallel builds the build continues on with other things even after the error. You should be sure you redirect the output of the build (and stderr!) to a file, then search the file for the FIRST instance of a make error message (has the "***" in the message) and look at what errors happened just before that. Maybe that will help you understand the problem. If not reply to the list with those error messages.