diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2015-04-29 13:32:34 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2015-04-29 13:32:34 +0000 |
commit | 34ba5affde224d69904f0fa068ee07208f85a5f1 (patch) | |
tree | 3cc1d5b6b9f0c626628a83668090522147a8d667 /gcc/inchash.c | |
parent | 94a82811526737df3872c295113541b3a6f9b689 (diff) | |
download | gcc-34ba5affde224d69904f0fa068ee07208f85a5f1.zip gcc-34ba5affde224d69904f0fa068ee07208f85a5f1.tar.gz gcc-34ba5affde224d69904f0fa068ee07208f85a5f1.tar.bz2 |
inchash.h, inchash.c: Include bconfig.h for build objects.
gcc/
* inchash.h, inchash.c: Include bconfig.h for build objects.
* Makefile.in (build/inchash.o): New rule.
From-SVN: r222574
Diffstat (limited to 'gcc/inchash.c')
-rw-r--r-- | gcc/inchash.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/inchash.c b/gcc/inchash.c index 1bc097e..c555046 100644 --- a/gcc/inchash.c +++ b/gcc/inchash.c @@ -17,7 +17,11 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ +#ifdef GENERATOR_FILE +#include "bconfig.h" +#else #include "config.h" +#endif #include "system.h" #include "coretypes.h" #include "hashtab.h" |