tags:

views:

10

answers:

1

When "make check" for GCC4.5.0, such error was occured:

make[1]: Entering directory `/home/username/tool/gcc-4.5.0'
/bin/sh: line 0: cd: host-x86_64-unknown-linux-gnu/fixincludes: No such file or directory
make[1]: *** [check-fixincludes] Error 1
make[1]: Leaving directory `/home/username/tool/gcc-4.5.0'
make: *** [do-check] Error 2

How to solve this problem? please....... & Thanks~~~~~

A: 

Apparently the check failed. The makefile tried to enter a directory that doesn't exist. What this means depends on the project you are trying to build.

Space_C0wb0y