diff options
author | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2015-04-22 10:25:40 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2015-04-22 10:25:40 +0200 |
commit | e08cf3453d11a51b04326a4a957b29fb6ec71d77 (patch) | |
tree | 61e0ea7c59edc257a7bd40a7c97f878adf43eaea | |
parent | 07cb4ee60459ebec039166609bd829933470b659 (diff) | |
download | gcc-e08cf3453d11a51b04326a4a957b29fb6ec71d77.zip gcc-e08cf3453d11a51b04326a4a957b29fb6ec71d77.tar.gz gcc-e08cf3453d11a51b04326a4a957b29fb6ec71d77.tar.bz2 |
re PR target/55144 (opening glibc-c.o: No such file or directory)
PR target/55144
building all-gcc for bfin-linux-uclibc resulted in
build/genchecksum cp/cp-lang.o c-family/stub-objc.o ... glibc-c.o \
libbackend.a .. > cc1plus-checksum.c.tmp
opening glibc-c.o: No such file or directory
make[2]: *** [cc1-checksum.c] Error 1
From-SVN: r222313
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config.gcc | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3eb1260..627f34f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org> + PR target/55144 + * config.gcc (bfin*-linux-uclibc*): Prepend tmake_file and + remove already contained t-files. + +2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org> + * tree-tailcall.c (suitable_for_tail_opt_p, find_tail_calls): Remove unneeded forward declarations. (suitable_for_tail_call_opt_p): Commentary typo fix. diff --git a/gcc/config.gcc b/gcc/config.gcc index 9552f7b..8d405a8 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1123,7 +1123,7 @@ bfin*-uclinux*) ;; bfin*-linux-uclibc*) tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h gnu-user.h linux.h glibc-stdint.h bfin/linux.h ./linux-sysroot-suffix.h" - tmake_file="bfin/t-bfin-linux t-slibgcc t-linux" + tmake_file="${tmake_file} bfin/t-bfin-linux" use_collect2=no ;; bfin*-rtems*) |