Re: Jump threading in tree dom pass prevents if-conversion & following vectorization

2013-11-25 Thread Richard Biener
On Fri, Nov 22, 2013 at 6:13 PM, Bingfeng Mei  wrote:
> So if we are about to fix this in if-conversion, we need to do both in tree & 
> rtl as both ifcvt & ce passes cannot handle it.
>
> I am still not convinced jump threading is good for target with predicated 
> execution (assuming no fix for if-conversion). I am doing benchmarking on our 
> target now.

Note that the GIMPLE if-conversion issue is simply a stupidity in its
implementation (not a trivial change to fix unless you want to split
critical edges just for sake of its analysis(!) phase).

Richard.

> Bingfeng
>
> -Original Message-
> From: Jeff Law [mailto:l...@redhat.com]
> Sent: 22 November 2013 16:58
> To: Bingfeng Mei; Andrew Pinski
> Cc: gcc@gcc.gnu.org
> Subject: Re: Jump threading in tree dom pass prevents if-conversion & 
> following vectorization
>
> On 11/22/13 04:03, Bingfeng Mei wrote:
>> Well, in your modified example, it is still due to jump threading that 
>> produce
>> code of bad control flow that cannot be if-converted and vectorized, though 
>> in
>> tree-vrp pass this time.
>>
>> Try this
>> ~/install-4.8/bin/gcc vect-ifconv-2.c  -O2 -fdump-tree-ifcvt-details 
>> -ftree-vectorize  -save-temps -fno-tree-vrp
>>
>> The code can be vectorized.
>>
>> Grep "threading" in gcc, it seems that dom and vrp passes are two places 
>> that apply
>> jump threading. Any other place? I think we need an target hook to control 
>> it.
> No no.  The right thing to do is fix if-conversion.
>
> jeff
>
>


Re: one idea for next GSoC: libstdc++ locale support based on POSIX 2008 duplocale/uselocale, etc.

2013-11-25 Thread Jonathan Wakely
On 25 November 2013 06:46, Václav Zeman wrote:
> On 11/25/2013 12:55 AM, Jakub Jelinek wrote:
>> On Sun, Nov 24, 2013 at 11:52:49PM +0100, Václav Zeman wrote:
>>> Here is one idea for GSoC: Implement C++ locale support in libstdc++
>>> based on POSIX 2008 uselocale()/duplocale() facilities.

See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57585 and various
posts I've made to the libstdc++ list discussing the same thing.

>> Doesn't glibc do that since 2002?
>
> Glibc does seem to have the locale facilities mentioned above. Since
> when does it have the facilities? I do not know. Are they used in
> libstdc++'s `std::locale` implementation? Yes and no. The 'gnu' style

Which is the default on *-gnu targets.

> (`--enable-clocale=gnu` configure option[1]) implementation uses the
> POSIX 2008 functions but it also uses `typedef __locale_t __c_locale`,
> i.e., the Glibc internal type instead of `locale_t`. The implementation
> in `libstdc++-v3/config/locale/gnu` is also riddled with Glibc version
> checking preprocessor directives.

Why is that a problem in practice?
Even if we add a new locale model, we won't get rid of the gnu one, so
won't be able to clean up that code significantly.

> What I am proposing is that somebody takes the pure POSIX 2008 API and
> implements `std::locale` on top of that.

This would be helpful for non-GNU platforms, but would not add any
functionality for glibc-based targets, which already have a fully
functional  implementation using the GNU-specific features.


Re: one idea for next GSoC: libstdc++ locale support based on POSIX 2008 duplocale/uselocale, etc.

2013-11-25 Thread Václav Zeman
On 25 November 2013 13:09, Jonathan Wakely wrote:
> On 25 November 2013 06:46, Václav Zeman wrote:
>> On 11/25/2013 12:55 AM, Jakub Jelinek wrote:
>>> On Sun, Nov 24, 2013 at 11:52:49PM +0100, Václav Zeman wrote:
 Here is one idea for GSoC: Implement C++ locale support in libstdc++
 based on POSIX 2008 uselocale()/duplocale() facilities.
>
> See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57585 and various
> posts I've made to the libstdc++ list discussing the same thing.
>
>>> Doesn't glibc do that since 2002?
>>
>> Glibc does seem to have the locale facilities mentioned above. Since
>> when does it have the facilities? I do not know. Are they used in
>> libstdc++'s `std::locale` implementation? Yes and no. The 'gnu' style
>
> Which is the default on *-gnu targets.
>
>> (`--enable-clocale=gnu` configure option[1]) implementation uses the
>> POSIX 2008 functions but it also uses `typedef __locale_t __c_locale`,
>> i.e., the Glibc internal type instead of `locale_t`. The implementation
>> in `libstdc++-v3/config/locale/gnu` is also riddled with Glibc version
>> checking preprocessor directives.
>
> Why is that a problem in practice?

It is not a problem for GNU platforms. The point was that the code
while being close what POSIX 2008 based code would use is usless for
non-GNU platforms as it uses Glibc internal symbols and preprocessor
tests.

> Even if we add a new locale model, we won't get rid of the gnu one, so
> won't be able to clean up that code significantly.

Nobody said anything about cleaning ups.

>
>> What I am proposing is that somebody takes the pure POSIX 2008 API and
>> implements `std::locale` on top of that.
>
> This would be helpful for non-GNU platforms, but would not add any
> functionality for glibc-based targets, which already have a fully
> functional  implementation using the GNU-specific features.

True. That is why I am proposing this as a GSoC task so that non-GNU
platforms like said FreeBSD and Darwin have decent C++ locale support
based on POSIX 2008 API.

-- 
VZ


Re: one idea for next GSoC: libstdc++ locale support based on POSIX 2008 duplocale/uselocale, etc.

2013-11-25 Thread Jakub Jelinek
On Mon, Nov 25, 2013 at 04:24:35PM +0100, Václav Zeman wrote:
> >> What I am proposing is that somebody takes the pure POSIX 2008 API and
> >> implements `std::locale` on top of that.
> >
> > This would be helpful for non-GNU platforms, but would not add any
> > functionality for glibc-based targets, which already have a fully
> > functional  implementation using the GNU-specific features.
> 
> True. That is why I am proposing this as a GSoC task so that non-GNU
> platforms like said FreeBSD and Darwin have decent C++ locale support
> based on POSIX 2008 API.

Isn't that not enough work for GSoC?  I mean, this is an 1-2 hours
coding task plus testing, say abstract the fact whether uselocale/etc.
APIs are available into say some constexpr bool and wrap all the APIs
into some wrapper functions in some special namespace or class, whatever
the libstdc++-v3 maintainers prefer.  Then just use the constexpr bool
instead of the current
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
preprocessor tests and use the wrappers.

Even glibc 2.3 had both the __uselocale etc. APIs and uselocale, the reason
for using __uselocale is that when uselocale was just a GNU extension, then
say a valid ISO C++98 program could define ::uselocale function and do something
completely different there.  So, if libstdc++ then calls uselocale, it could
crash or misbehave.  So, if __uselocale (which is in implementation
namespace) is available, we certainly want to prefer that over uselocale.

Jakub


[buildrobot] First results of running contrib/config-list.mk

2013-11-25 Thread Jan-Benedict Glaw
Hi!

The two build robot instances that schedule jobs using
contrib/config-list.mk are done with two rounds. I haven't looked at
the details (and thus there are no patches), but I'd like to point out
the results.

Depending on the host, gcc/g++ is:

gcc20: g++ (GCC) 4.9.0 20131122 (experimental)
gcc76: g++ (GCC) 4.9.0 20131121 (experimental)

Binutils were not freshly build, so they're older.

I tried to find the respective maintainers and Cc'ed them, but that
wasn't obvious in some cases.  But I hope we'll see some fixes soon.
At least a good number of the -Werror build breakages look quite
simple to fix.

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of: "Debugging is twice as hard as writing the code in the first 
place.
the second  :  Therefore, if you write the code as cleverly as possible, you 
are,
   by definition, not smart enough to debug it." - Brian W. 
Kernighan


signature.asc
Description: Digital signature


[buildrobot] alpha64-dec-vms / alpha-dec-vms

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log is available at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=36942
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40027

g++ -c  -DIN_GCC_FRONTEND -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  
-fno-exceptions -fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing 
-Wwrite-strings -Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -Icp -I../../../gcc/gcc -I../../../gcc/gcc/cp 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o cp/lambda.o -MT cp/lambda.o -MMD -MP 
-MF cp/.deps/lambda.TPo ../../../gcc/gcc/cp/lambda.c
g++ -c  -DIN_GCC_FRONTEND -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  
-fno-exceptions -fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing 
-Wwrite-strings -Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -Icp -I../../../gcc/gcc -I../../../gcc/gcc/cp 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o cp/vtable-class-hierarchy.o -MT 
cp/vtable-class-hierarchy.o -MMD -MP -MF cp/.deps/vtable-class-hierarchy.TPo 
../../../gcc/gcc/cp/vtable-class-hierarchy.c
build/genchecksum cp/cp-lang.o c-family/stub-objc.o cp/call.o cp/decl.o 
cp/expr.o cp/pt.o cp/typeck2.o cp/class.o cp/decl2.o cp/error.o cp/lex.o 
cp/parser.o cp/ptree.o cp/rtti.o cp/typeck.o cp/cvt.o cp/except.o cp/friend.o 
cp/init.o cp/method.o cp/search.o cp/semantics.o cp/tree.o cp/repo.o cp/dump.o 
cp/optimize.o cp/mangle.o cp/cp-objcp-common.o cp/name-lookup.o 
cp/cxx-pretty-print.o cp/cp-cilkplus.o cp/cp-gimplify.o cp/cp-array-notation.o 
cp/lambda.o cp/vtable-class-hierarchy.o attribs.o incpath.o c-family/c-common.o 
c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o 
c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o 
c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o 
c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o 
c-family/c-cilkplus.o c-family/array-notation-common.o c-family/cilk.o 
c-family/c-ubsan.o vms-c.o default-c.o libbackend.a main.o tree-browser.o 
libcommon-target.a libcommon.a ../libcpp/libcpp.a 
../libdecnumber/libdecnumber.a libcommon.a ../libcpp/libcpp.a 
../libiberty/libiberty.a   ../libdecnumber/libdecnumber.a 
../libbacktrace/.libs/libbacktrace.a \
 checksum-options > cc1plus-checksum.c.tmp &&\
../../../gcc/gcc/../move-if-change cc1plus-checksum.c.tmp cc1plus-checksum.c
g++ -c  -DIN_GCC_FRONTEND -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  
-fno-exceptions -fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing 
-Wwrite-strings -Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o cc1plus-checksum.o -MT 
cc1plus-checksum.o -MMD -MP -MF ./.deps/cc1plus-checksum.TPo cc1plus-checksum.c
g++   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions -fno-rtti 
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -static-libstdc++ -static-libgcc  -o cc1plus \
  cp/cp-lang.o c-family/stub-objc.o cp/call.o cp/decl.o cp/expr.o cp/pt.o 
cp/typeck2.o cp/class.o cp/decl2.o cp/error.o cp/lex.o cp/parser.o cp/ptree.o 
cp/rtti.o cp/typeck.o cp/cvt.o cp/except.o cp/friend.o cp/init.o cp/method.o 
cp/search.o cp/semantics.o cp/tree.o cp/repo.o cp/dump.o cp/optimize.o 
cp/mangle.o cp/cp-objcp-common.o cp/name-lookup.o cp/cxx-pretty-print.o 
cp/cp-cilkplus.o cp/cp-gimplify.o cp/cp-array-notation.o cp/lambda.o 
cp/vtable-class-hierarchy.o attribs.o incpath.o c-family/c-common.o 
c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o 
c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o 
c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o 
c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o 
c-family/c-cilkplus.o c-family/array-notation-common.o c-family/cilk.o 
c-family/c-ubsan.o vms-c.o default-c.o cc1plus-checksum.o libbackend.a main.o 
tree-browser.o libcommon-target.a libcommon.a ../libcpp/libcpp.a 
../libdecnumber/libdecnumber.

[buildrobot] x86_64-w64-mingw32

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=39812

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/bid -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-I. -I. -I../../../gcc/gcc 
-I../../../gcc/gcc/. -I../../../gcc/gcc/../include 
-I../../../gcc/gcc/../libcpp/include -I/opt/cfarm/mpc/include  
-I../../../gcc/gcc/../libdecnumber -I../../../gcc/gcc/../libdecnumber/bid 
-I../libdecnumber -I../../../gcc/gcc/../libbacktrace   \
../../../gcc/gcc/config/i386/winnt.c
../../../gcc/gcc/config/i386/winnt.c: In function ‘unsigned int 
i386_pe_section_type_flags(tree, const char*, int)’:
../../../gcc/gcc/config/i386/winnt.c:501:42: error: cast from type ‘const 
char*’ to type ‘unsigned int*’ casts away qualifiers [-Werror=cast-qual]
   slot = htab.find_slot ((unsigned int *)name, INSERT);
  ^
cc1plus: all warnings being treated as errors
make[2]: *** [winnt.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of:   http://www.eyrie.org/~eagle/faqs/questions.html
the second  :


signature.asc
Description: Digital signature


[buildrobot] vax-openbsd

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=39795

Who by the way feels responsible for OpenBSD stuff?


gawk -f ../../../gcc/gcc/opt-functions.awk -f ../../../gcc/gcc/opt-read.awk \
   -f ../../../gcc/gcc/opth-gen.awk \
   < optionlist > tmp-options.h
/bin/bash ../../../gcc/gcc/../move-if-change tmp-options.h options.h
echo timestamp > s-options-h
make[2]: *** No rule to make target 
`../../../gcc/gcc/config/openbsd-pthread.h', needed by `s-gtype'.  Stop.
make[2]: Leaving directory 
`/home/jbglaw/build-configlist_mk/vax-openbsd/build-gcc/mk/vax-openbsd/gcc'
make[1]: *** [all-gcc] Error 2

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
  Signature of:Lauf nicht vor Deinem Glück davon:
  the second  : Es könnte hinter Dir stehen!


signature.asc
Description: Digital signature


[buildrobot] score-elf --enable-obsolete

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=39840

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../../gcc/gcc 
-I../../../gcc/gcc/build -I../../../gcc/gcc/../include 
-I../../../gcc/gcc/../libcpp/include -I/opt/cfarm/mpc/include  
-I../../../gcc/gcc/../libdecnumber -I../../../gcc/gcc/../libdecnumber/dpd 
-I../libdecnumber -I../../../gcc/gcc/../libbacktrace\
-o build/gencondmd.o build/gencondmd.c
In file included from ./tm_p.h:5:0,
 from build/gencondmd.c:24:
./tm-preds.h:69:0: error: "CONSTRAINT_LEN" redefined [-Werror]
 #define CONSTRAINT_LEN(c_,s_) 1
 ^
In file included from ./tm.h:25:0,
 from build/gencondmd.c:21:
../../../gcc/gcc/defaults.h:1021:0: note: this is the location of the previous 
definition
 #define CONSTRAINT_LEN(C,STR) DEFAULT_CONSTRAINT_LEN (C, STR)
 ^
In file included from ./tm_p.h:5:0,
 from build/gencondmd.c:24:
./tm-preds.h:72:0: error: "REG_CLASS_FROM_CONSTRAINT" redefined [-Werror]
 #define REG_CLASS_FROM_CONSTRAINT(c_,s_) \
 ^
In file included from ./tm.h:25:0,
 from build/gencondmd.c:21:
../../../gcc/gcc/defaults.h:1034:0: note: this is the location of the previous 
definition
 #define REG_CLASS_FROM_CONSTRAINT(C,STR) REG_CLASS_FROM_LETTER (C)
 ^
In file included from ./tm_p.h:5:0,
 from build/gencondmd.c:24:
./tm-preds.h:86:0: error: "EXTRA_MEMORY_CONSTRAINT" redefined [-Werror]
 #define EXTRA_MEMORY_CONSTRAINT(c_,s_) false
 ^
In file included from ./tm.h:25:0,
 from build/gencondmd.c:21:
../../../gcc/gcc/defaults.h:1005:0: note: this is the location of the previous 
definition
 #define EXTRA_MEMORY_CONSTRAINT(C,STR) 0
 ^
In file included from ./tm_p.h:5:0,
 from build/gencondmd.c:24:
./tm-preds.h:88:0: error: "EXTRA_ADDRESS_CONSTRAINT" redefined [-Werror]
 #define EXTRA_ADDRESS_CONSTRAINT(c_,s_) false
 ^
In file included from ./tm.h:25:0,
 from build/gencondmd.c:21:
../../../gcc/gcc/defaults.h:1011:0: note: this is the location of the previous 
definition
 #define EXTRA_ADDRESS_CONSTRAINT(C,STR) 0
 ^
cc1plus: all warnings being treated as errors
make[2]: *** [build/gencondmd.o] Error 1


MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of:  What we do for ourselves dies with us. What we do for
the second  : others and the world remains and is immortal. (Albert 
Pine)


signature.asc
Description: Digital signature


[buildrobot] rx-elf

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=39626

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o function.o -MT function.o -MMD -MP -MF 
./.deps/function.TPo ../../../gcc/gcc/function.c
In file included from ../../../gcc/gcc/function.c:49:0:
../../../gcc/gcc/regs.h: In function ‘void 
thread_prologue_and_epilogue_insns()’:
../../../gcc/gcc/regs.h:296:40: error: array subscript is above array bounds 
[-Werror=array-bounds]
   return regno + hard_regno_nregs[regno][(int) mode];
^
cc1plus: all warnings being treated as errors
make[2]: *** [function.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of:   ...und wenn Du denkst, es geht nicht mehr,
the second  :  kommt irgendwo ein Lichtlein her.


signature.asc
Description: Digital signature


[buildrobot] vax-linux-gnu / vax-netbsdelf

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build logs at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=39792
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=39785

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o loop-invariant.o -MT loop-invariant.o 
-MMD -MP -MF ./.deps/loop-invariant.TPo ../../../gcc/gcc/loop-invariant.c
../../../gcc/gcc/loop-invariant.c: In function ‘bool 
check_dependency(basic_block, df_ref, bitmap)’:
../../../gcc/gcc/loop-invariant.c:789:20: error: unused variable ‘regno’ 
[-Werror=unused-variable]
   unsigned int regno = DF_REF_REGNO (use);
^
cc1plus: all warnings being treated as errors
make[2]: *** [loop-invariant.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
  Signature of:   Wenn ich wach bin, träume ich.
  the second  :


signature.asc
Description: Digital signature


[buildrobot] x86_64-knetbsd-gnu

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at 
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=39806

g++ -c  -DSTANDARD_STARTFILE_PREFIX=\"../../../\" 
-DSTANDARD_EXEC_PREFIX=\"/usr/local/lib/gcc/\" 
-DSTANDARD_LIBEXEC_PREFIX=\"/usr/local/libexec/gcc/\" 
-DDEFAULT_TARGET_VERSION=\"4.9.0\" 
-DDEFAULT_TARGET_MACHINE=\"x86_64-knetbsd-gnu\" 
-DSTANDARD_BINDIR_PREFIX=\"/usr/local/bin/\" 
-DTOOLDIR_BASE_PREFIX=\"../../../../\"  -DENABLE_SHARED_LIBGCC 
-DCONFIGURE_SPECS="\"\"" -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  
-fno-exceptions -fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing 
-Wwrite-strings -Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o gcc.o -MT gcc.o -MMD -MP -MF 
./.deps/gcc.TPo ../../../gcc/gcc/gcc.c
In file included from ./tm.h:32:0,
 from ../../../gcc/gcc/gcc.c:34:
../../../gcc/gcc/config/i386/gnu-user64.h:56:39: error: expected ‘,’ or ‘;’ 
before ‘GNU_USER_LINK_EMULATION64’
   "%{" SPEC_64 ":-m " GNU_USER_LINK_EMULATION64 "} \
   ^
../../../gcc/gcc/config/i386/gnu-user64.h:69:19: note: in expansion of macro 
‘GNU_USER_TARGET_LINK_SPEC’
 #define LINK_SPEC GNU_USER_TARGET_LINK_SPEC
   ^
../../../gcc/gcc/gcc.c:818:32: note: in expansion of macro ‘LINK_SPEC’
 static const char *link_spec = LINK_SPEC;
^
make[2]: *** [gcc.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of:http://www.chiark.greenend.org.uk/~sgtatham/bugs.html
the second  :


signature.asc
Description: Digital signature


[buildrobot] moxie-elf / moxie-rtems / moxie-uclinux

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build logs at

http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40863
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40864
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40856

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o reload1.o -MT reload1.o -MMD -MP -MF 
./.deps/reload1.TPo ../../../gcc/gcc/reload1.c
../../../gcc/gcc/reload1.c: In function ‘void elimination_costs_in_insn(rtx)’:
../../../gcc/gcc/reload1.c:3750:41: error: ‘orig_dup[0]’ may be used 
uninitialized in this function [-Werror=maybe-uninitialized]
 *recog_data.dup_loc[i] = orig_dup[i];
 ^
cc1plus: all warnings being treated as errors
make[2]: *** [reload1.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of: 17:44 <@uschebit> Evangelist ist doch ein Vertriebler
the second  :   für unverkäufliche Produkte, oder? (#korsett, 20120821)


signature.asc
Description: Digital signature


[buildrobot] pdp11-aout

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40865

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o cfgexpand.o -MT cfgexpand.o -MMD -MP 
-MF ./.deps/cfgexpand.TPo ../../../gcc/gcc/cfgexpand.c
../../../gcc/gcc/cfgexpand.c: In function ‘basic_block_def* 
expand_gimple_cond(basic_block, gimple)’:
../../../gcc/gcc/cfgexpand.c:2027:65: error: comparison is always true due to 
limited range of data type [-Werror=type-limits]
else if (BRANCH_COST (optimize_insn_for_speed_p (), false) < 4)
 ^
cc1plus: all warnings being treated as errors
make[2]: *** [cfgexpand.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
 Signature of:Don't believe in miracles: Rely on them!
 the second  :


signature.asc
Description: Digital signature


[buildrobot] rl78-elf

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=39622

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o reload1.o -MT reload1.o -MMD -MP -MF 
./.deps/reload1.TPo ../../../gcc/gcc/reload1.c
../../../gcc/gcc/reload1.c: In function ‘void elimination_costs_in_insn(rtx)’:
../../../gcc/gcc/reload1.c:3750:41: error: ‘orig_dup[0]’ may be used 
uninitialized in this function [-Werror=maybe-uninitialized]
 *recog_data.dup_loc[i] = orig_dup[i];
 ^
cc1plus: all warnings being treated as errors
make[2]: *** [reload1.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of: "really soon now":  an unspecified period of time, 
likly to
the second  : be greater than any reasonable 
definition
  of "soon".


signature.asc
Description: Digital signature


[buildrobot] microblaze-elf / microblaze-linux

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build logs at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=39192
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40718

(I also think that we'd have the little endian version on the target
list at contrib/config-list.mk ...)


g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o reload1.o -MT reload1.o -MMD -MP -MF 
./.deps/reload1.TPo ../../../gcc/gcc/reload1.c
../../../gcc/gcc/reload1.c: In function ‘void elimination_costs_in_insn(rtx)’:
../../../gcc/gcc/reload1.c:3750:41: error: ‘orig_dup[0]’ may be used 
uninitialized in this function [-Werror=maybe-uninitialized]
 *recog_data.dup_loc[i] = orig_dup[i];
 ^
cc1plus: all warnings being treated as errors
make[2]: *** [reload1.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
  Signature of:  Zensur im Internet? Nein danke!
  the second  :


signature.asc
Description: Digital signature


[buildrobot] i686-openbsd3.0

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40353

g++ -c  -DSTANDARD_STARTFILE_PREFIX=\"../../../\" 
-DSTANDARD_EXEC_PREFIX=\"/usr/local/lib/gcc/\" 
-DSTANDARD_LIBEXEC_PREFIX=\"/usr/local/libexec/gcc/\" 
-DDEFAULT_TARGET_VERSION=\"4.9.0\" -DDEFAULT_TARGET_MACHINE=\"i686-openbsd3.0\" 
-DSTANDARD_BINDIR_PREFIX=\"/usr/local/bin/\" 
-DTOOLDIR_BASE_PREFIX=\"../../../../\"   -DCONFIGURE_SPECS="\"\"" -g -O2 
-DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions -fno-rtti 
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o gcc.o -MT gcc.o -MMD -MP -MF 
./.deps/gcc.TPo ../../../gcc/gcc/gcc.c
In file included from ./tm.h:24:0,
 from ../../../gcc/gcc/gcc.c:34:
../../../gcc/gcc/config/openbsd.h:143:18: error: ‘OBSD_LIB_SPEC’ was not 
declared in this scope
 #define LIB_SPEC OBSD_LIB_SPEC
  ^
../../../gcc/gcc/gcc.c:819:31: note: in expansion of macro ‘LIB_SPEC’
 static const char *lib_spec = LIB_SPEC;
   ^
make[2]: *** [gcc.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of: "Debugging is twice as hard as writing the code in the first 
place.
the second  :  Therefore, if you write the code as cleverly as possible, you 
are,
   by definition, not smart enough to debug it." - Brian W. 
Kernighan


signature.asc
Description: Digital signature


[buildrobot] lm32-elf / lm32-rtems / lm32-uclinux

2013-11-25 Thread Jan-Benedict Glaw
Hi,

build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40601
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40604

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o reload1.o -MT reload1.o -MMD -MP -MF 
./.deps/reload1.TPo ../../../gcc/gcc/reload1.c
../../../gcc/gcc/reload1.c: In function ‘void elimination_costs_in_insn(rtx)’:
../../../gcc/gcc/reload1.c:3750:41: error: ‘orig_dup[0]’ may be used 
uninitialized in this function [-Werror=maybe-uninitialized]
 *recog_data.dup_loc[i] = orig_dup[i];
 ^
cc1plus: all warnings being treated as errors
make[2]: *** [reload1.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
  Signature of:  Zensur im Internet? Nein danke!
  the second  :


signature.asc
Description: Digital signature


[buildrobot] cris-linux / crisv32-linux

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40132
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40138

g++ -c  -DBASEVER="\"4.9.0\"" -DDATESTAMP="\" 20131125\"" -DREVISION="\"\"" 
-DDEVPHASE="\" (experimental)\"" -DPKGVERSION="\"(GCC) \"" 
-DBUGURL="\"<http://gcc.gnu.org/bugs.html>\"" -g -O2 -DIN_GCC  
-DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions -fno-rtti 
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o version.o -MT version.o -MMD -MP -MF 
./.deps/version.TPo ../../../gcc/gcc/version.c
rm -rf libcommon.a
ar rc libcommon.a diagnostic.o diagnostic-color.o pretty-print.o intl.o input.o 
version.o
ranlib  libcommon.a
build/genchecksum c/c-lang.o c-family/stub-objc.o attribs.o c/c-errors.o 
c/c-decl.o c/c-typeck.o c/c-convert.o c/c-aux-info.o c/c-objc-common.o 
c/c-parser.o c/c-array-notation.o c-family/c-common.o c-family/c-cppbuiltin.o 
c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o 
c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o 
c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o 
c-family/c-ada-spec.o c-family/c-cilkplus.o c-family/array-notation-common.o 
c-family/cilk.o c-family/c-ubsan.o glibc-c.o libbackend.a main.o tree-browser.o 
libcommon-target.a libcommon.a ../libcpp/libcpp.a 
../libdecnumber/libdecnumber.a libcommon.a ../libcpp/libcpp.a 
../libiberty/libiberty.a   ../libdecnumber/libdecnumber.a 
../libbacktrace/.libs/libbacktrace.a \
 checksum-options > cc1-checksum.c.tmp &&   \
../../../gcc/gcc/../move-if-change cc1-checksum.c.tmp cc1-checksum.c
opening glibc-c.o: No such file or directory
make[2]: *** [cc1-checksum.c] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of: 17:45 <@Eimann> Hrm, das E90 hat keinen Lebenszeit Call-Time 
Counter mehr
the second  : 17:46 <@jbglaw> Eimann: Wofür braucht man das?
  17:46 <@jbglaw> Eimann: Für mich ist an 'nem Handy wichtig, daß 
ich mein
  Gegeüber hören kann. Und daß mein Gegenüber mich 
versteht...
  17:47 <@KrisK> jbglaw: was du meinst ist wodka.
  17:47 <@KrisK> jbglaw: es klingelt und man hört stimmen


signature.asc
Description: Digital signature


[buildrobot] ia64-hpux

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=39052

g++ -c  -DUSE_LIBUNWIND_EXCEPTIONS  -g -O2 -DIN_GCC  
-DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions -fno-rtti 
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o ia64.o -MT ia64.o -MMD -MP -MF 
./.deps/ia64.TPo ../../../gcc/gcc/config/ia64/ia64.c
In file included from ./tm.h:20:0,
 from ../../../gcc/gcc/config/ia64/ia64.c:25:
../../../gcc/gcc/config/ia64/hpux.h:185:34: error: 
‘default_c99_libc_has_function’ was not declared in this scope
 #define TARGET_LIBC_HAS_FUNCTION default_c99_libc_has_function
  ^
./target-hooks-def.h:1140:5: note: in expansion of macro 
‘TARGET_LIBC_HAS_FUNCTION’
 TARGET_LIBC_HAS_FUNCTION, \
 ^
../../../gcc/gcc/config/ia64/ia64.c:659:29: note: in expansion of macro 
‘TARGET_INITIALIZER’
 struct gcc_target targetm = TARGET_INITIALIZER;
 ^
make[2]: *** [ia64.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
 Signature of:  http://perl.plover.com/Questions.html
 the second  :


signature.asc
Description: Digital signature


[buildrobot] ia64-hp-vms

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40532

g++   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions -fno-rtti 
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -static-libstdc++ -static-libgcc  -o cc1plus \
  cp/cp-lang.o c-family/stub-objc.o cp/call.o cp/decl.o cp/expr.o cp/pt.o 
cp/typeck2.o cp/class.o cp/decl2.o cp/error.o cp/lex.o cp/parser.o cp/ptree.o 
cp/rtti.o cp/typeck.o cp/cvt.o cp/except.o cp/friend.o cp/init.o cp/method.o 
cp/search.o cp/semantics.o cp/tree.o cp/repo.o cp/dump.o cp/optimize.o 
cp/mangle.o cp/cp-objcp-common.o cp/name-lookup.o cp/cxx-pretty-print.o 
cp/cp-cilkplus.o cp/cp-gimplify.o cp/cp-array-notation.o cp/lambda.o 
cp/vtable-class-hierarchy.o attribs.o incpath.o c-family/c-common.o 
c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o 
c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o 
c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o 
c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o 
c-family/c-cilkplus.o c-family/array-notation-common.o c-family/cilk.o 
c-family/c-ubsan.o vms-c.o default-c.o cc1plus-checksum.o libbackend.a main.o 
tree-browser.o libcommon-target.a libcommon.a ../libcpp/libcpp.a 
../libdecnumber/libdecnumber.a libcommon.a ../libcpp/libcpp.a   
../libbacktrace/.libs/libbacktrace.a ../libiberty/libiberty.a 
../libdecnumber/libdecnumber.a   -L/opt/cfarm/mpc/lib -lmpc -lmpfr -lgmp 
-rdynamic -ldl  -L../zlib -lz
/usr/bin/ld: Dwarf Error: found dwarf version '4', this reader only handles 
version 2 and 3 information.
vms-c.o: In function `handle_pragma_pointer_size(char const*)':
vms-c.c:(.text+0x34d): undefined reference to `c_default_pointer_mode'
/usr/bin/ld: Dwarf Error: found dwarf version '0', this reader only handles 
version 2 and 3 information.
vms-c.c:(.text+0x362): undefined reference to `c_default_pointer_mode'
/usr/bin/ld: Dwarf Error: found dwarf version '65329', this reader only handles 
version 2 and 3 information.
vms-c.c:(.text+0x383): undefined reference to `c_default_pointer_mode'
/usr/bin/ld: Dwarf Error: found dwarf version '34564', this reader only handles 
version 2 and 3 information.
vms-c.c:(.text+0x3a0): undefined reference to `c_default_pointer_mode'
/usr/bin/ld: Dwarf Error: found dwarf version '60928', this reader only handles 
version 2 and 3 information.
vms-c.o: In function `vms_c_common_override_options()':
vms-c.c:(.text+0x9cc): undefined reference to `c_default_pointer_mode'
/usr/bin/ld: Dwarf Error: found dwarf version '4096', this reader only handles 
version 2 and 3 information.
vms-c.o:vms-c.c:(.text+0x9e2): more undefined references to 
`c_default_pointer_mode' follow
collect2: error: ld returned 1 exit status
make[2]: *** [cc1plus] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
 Signature of:  http://perl.plover.com/Questions.html
 the second  :


signature.asc
Description: Digital signature


[buildrobot] mep-elf

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40716

g++ -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC  
-DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions -fno-rtti 
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-I. -I. -I../../../gcc/gcc 
-I../../../gcc/gcc/. -I../../../gcc/gcc/../include 
-I../../../gcc/gcc/../libcpp/include -I/opt/cfarm/mpc/include  
-I../../../gcc/gcc/../libdecnumber -I../../../gcc/gcc/../libdecnumber/dpd 
-I../libdecnumber -I../../../gcc/gcc/../libbacktrace   
../../../gcc/gcc/config/mep/mep-pragma.c
../../../gcc/gcc/config/mep/mep-pragma.c: In function ‘void 
mep_pragma_coprocessor(cpp_reader*)’:
../../../gcc/gcc/config/mep/mep-pragma.c:271:18: error: ‘rclass’ may be used 
uninitialized in this function [-Werror=maybe-uninitialized]
   enum reg_class rclass;
  ^
cc1plus: all warnings being treated as errors
make[2]: *** [mep-pragma.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of:  [Nach Firefox-Update gibt es Empfehlungen, wenn man einen 
neuen Tab aufmacht.]
the second  :   13:26 <@jbglaw> "Hide the new 
tab page"
13:27 <@jbglaw> Warum zum Teufel sind gerade Kacheln so 
ungeheuer angesagt?!
  13:57 <@andrel> die Mozilla Foundation hat eine LKW Ladung 
Fugenkitt gespendet bekommen?


signature.asc
Description: Digital signature


[buildrobot] i686-mingw32crt

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40445

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/bid -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-I. -I. -I../../../gcc/gcc 
-I../../../gcc/gcc/. -I../../../gcc/gcc/../include 
-I../../../gcc/gcc/../libcpp/include -I/opt/cfarm/mpc/include  
-I../../../gcc/gcc/../libdecnumber -I../../../gcc/gcc/../libdecnumber/bid 
-I../libdecnumber -I../../../gcc/gcc/../libbacktrace   \
../../../gcc/gcc/config/i386/winnt.c
../../../gcc/gcc/config/i386/winnt.c: In function ‘unsigned int 
i386_pe_section_type_flags(tree, const char*, int)’:
../../../gcc/gcc/config/i386/winnt.c:501:42: error: cast from type ‘const 
char*’ to type ‘unsigned int*’ casts away qualifiers [-Werror=cast-qual]
   slot = htab.find_slot ((unsigned int *)name, INSERT);
  ^
cc1plus: all warnings being treated as errors
make[2]: *** [winnt.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of:   http://www.eyrie.org/~eagle/faqs/questions.html
the second  :


signature.asc
Description: Digital signature


[buildrobot] i686-interix3 --enable-obsolete

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=39836

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-I. -I. -I../../../gcc/gcc 
-I../../../gcc/gcc/. -I../../../gcc/gcc/../include 
-I../../../gcc/gcc/../libcpp/include -I/opt/cfarm/mpc/include  
-I../../../gcc/gcc/../libdecnumber -I../../../gcc/gcc/../libdecnumber/dpd 
-I../libdecnumber -I../../../gcc/gcc/../libbacktrace   \
../../../gcc/gcc/config/i386/winnt.c
../../../gcc/gcc/config/i386/winnt.c: In function \u2018void 
i386_pe_unique_section(tree, int)\u2019:
../../../gcc/gcc/config/i386/winnt.c:418:8: error: 
\u2018flag_writable_rel_rdata\u2019 was not declared in this scope
   if (!flag_writable_rel_rdata)
^
../../../gcc/gcc/config/i386/winnt.c: In function \u2018unsigned int 
i386_pe_section_type_flags(tree, const char*, int)\u2019:
../../../gcc/gcc/config/i386/winnt.c:476:8: error: 
\u2018flag_writable_rel_rdata\u2019 was not declared in this scope
   if (!flag_writable_rel_rdata)
^
../../../gcc/gcc/config/i386/winnt.c:501:42: error: cast from type \u2018const 
char*\u2019 to type \u2018unsigned int*\u2019 casts away qualifiers 
[-Werror=cast-qual]
   slot = htab.find_slot ((unsigned int *)name, INSERT);
  ^
cc1plus: all warnings being treated as errors
make[2]: *** [winnt.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of: Alles wird gut! ...und heute wirds schon ein bißchen 
besser.
the second  :


signature.asc
Description: Digital signature


[buildrobot] c6x-elf / c6x-uclinux

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Buildlog is at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40125
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40126

g++ -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC  
-DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions -fno-rtti 
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -Ic-family -I../../../gcc/gcc -I../../../gcc/gcc/c-family 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o c-family/c-cppbuiltin.o -MT 
c-family/c-cppbuiltin.o -MMD -MP -MF c-family/.deps/c-cppbuiltin.TPo 
../../../gcc/gcc/c-family/c-cppbuiltin.c
In file included from ./tm.h:16:0,
 from ../../../gcc/gcc/c-family/c-cppbuiltin.c:23:
../../../gcc/gcc/c-family/c-cppbuiltin.c: In function ‘void 
c_cpp_builtins(cpp_reader*)’:
../../../gcc/gcc/config/c6x/c6x.h:85:14: error: enumeration value ‘unk_isa’ not 
handled in switch [-Werror=switch]
   switch (c6x_arch)\
  ^
../../../gcc/gcc/c-family/c-cppbuiltin.c:1013:3: note: in expansion of macro 
‘TARGET_CPU_CPP_BUILTINS’
   TARGET_CPU_CPP_BUILTINS ();
   ^
cc1plus: all warnings being treated as errors
make[2]: *** [c-family/c-cppbuiltin.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of:  Fortschritt bedeutet, einen Schritt so zu machen,
the second  :   daß man den nächsten auch noch machen kann.


signature.asc
Description: Digital signature


[buildrobot] cr16-elf

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40127

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o reload1.o -MT reload1.o -MMD -MP -MF 
./.deps/reload1.TPo ../../../gcc/gcc/reload1.c
../../../gcc/gcc/reload1.c: In function ‘void elimination_costs_in_insn(rtx)’:
../../../gcc/gcc/reload1.c:3750:41: error: ‘orig_dup[0]’ may be used 
uninitialized in this function [-Werror=maybe-uninitialized]
 *recog_data.dup_loc[i] = orig_dup[i];
 ^
cc1plus: all warnings being treated as errors
make[2]: *** [reload1.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of:http://www.chiark.greenend.org.uk/~sgtatham/bugs.html
the second  :


signature.asc
Description: Digital signature


[buildrobot] fr30-elf

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=38806

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o reload1.o -MT reload1.o -MMD -MP -MF 
./.deps/reload1.TPo ../../../gcc/gcc/reload1.c
../../../gcc/gcc/reload1.c: In function ‘void elimination_costs_in_insn(rtx)’:
../../../gcc/gcc/reload1.c:3750:41: error: ‘orig_dup[0]’ may be used 
uninitialized in this function [-Werror=maybe-uninitialized]
 *recog_data.dup_loc[i] = orig_dup[i];
 ^
cc1plus: all warnings being treated as errors
make[2]: *** [reload1.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of: "really soon now":  an unspecified period of time, 
likly to
the second  : be greater than any reasonable 
definition
  of "soon".


signature.asc
Description: Digital signature


[buildrobot] epiphany-elf

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40206

g++ -c   -g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions 
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -I. -I../../../gcc/gcc -I../../../gcc/gcc/. 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o epiphany.o -MT epiphany.o -MMD -MP -MF 
./.deps/epiphany.TPo ../../../gcc/gcc/config/epiphany/epiphany.c
In file included from ../../../gcc/gcc/config/epiphany/epiphany.c:22:0:
../../../gcc/gcc/config/epiphany/epiphany.c: In function ‘unsigned int 
epiphany_compute_frame_size(int)’:
../../../gcc/gcc/config/epiphany/epiphany.c:1136:42: error: comparison between 
signed and unsigned integer expressions [-Werror=sign-compare]
gcc_assert (reg_size == 0 || reg_size == epiphany_stack_offset);
  ^
../../../gcc/gcc/system.h:691:14: note: in definition of macro ‘gcc_assert’
((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
  ^
../../../gcc/gcc/config/epiphany/epiphany.c: In function ‘void 
epiphany_expand_prologue()’:
../../../gcc/gcc/config/epiphany/epiphany.c:1697:7: error: unused variable 
‘save_config’ [-Werror=unused-variable]
   rtx save_config;
   ^
cc1plus: all warnings being treated as errors
make[2]: *** [epiphany.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of: "really soon now":  an unspecified period of time, 
likly to
the second  : be greater than any reasonable 
definition
  of "soon".


signature.asc
Description: Digital signature


[buildrobot] avr-rtems

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log is available at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=38764 .

g++ -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC  
-DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions -fno-rtti 
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -Ic-family -I../../../gcc/gcc -I../../../gcc/gcc/c-family 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o c-family/c-common.o -MT 
c-family/c-common.o -MMD -MP -MF c-family/.deps/c-common.TPo 
../../../gcc/gcc/c-family/c-common.c
In file included from ../../../gcc/gcc/c-family/c-common.c:29:0:
../../../gcc/gcc/c-family/c-common.c: In function ‘void 
c_common_nodes_and_builtins()’:
../../../gcc/gcc/stringpool.h:39:53: error: null argument where non-null 
required (argument 1) [-Werror=nonnull]
 ? get_identifier_with_length ((str), strlen (str))  \
 ^
../../../gcc/gcc/c-family/c-common.c:5537:22: note: in expansion of macro 
‘get_identifier’
   char16_type_node = get_identifier (CHAR16_TYPE);
  ^
../../../gcc/gcc/stringpool.h:39:53: error: null argument where non-null 
required (argument 1) [-Werror=nonnull]
 ? get_identifier_with_length ((str), strlen (str))  \
 ^
../../../gcc/gcc/c-family/c-common.c:5537:22: note: in expansion of macro 
‘get_identifier’
   char16_type_node = get_identifier (CHAR16_TYPE);
  ^
../../../gcc/gcc/stringpool.h:39:53: error: null argument where non-null 
required (argument 1) [-Werror=nonnull]
 ? get_identifier_with_length ((str), strlen (str))  \
 ^
../../../gcc/gcc/c-family/c-common.c:5537:22: note: in expansion of macro 
‘get_identifier’
   char16_type_node = get_identifier (CHAR16_TYPE);
  ^
../../../gcc/gcc/stringpool.h:39:53: error: null argument where non-null 
required (argument 1) [-Werror=nonnull]
 ? get_identifier_with_length ((str), strlen (str))  \
 ^
../../../gcc/gcc/c-family/c-common.c:5537:22: note: in expansion of macro 
‘get_identifier’
   char16_type_node = get_identifier (CHAR16_TYPE);
  ^
../../../gcc/gcc/stringpool.h:39:53: error: null argument where non-null 
required (argument 1) [-Werror=nonnull]
 ? get_identifier_with_length ((str), strlen (str))  \
 ^
../../../gcc/gcc/c-family/c-common.c:5553:22: note: in expansion of macro 
‘get_identifier’
   char32_type_node = get_identifier (CHAR32_TYPE);
  ^
../../../gcc/gcc/stringpool.h:39:53: error: null argument where non-null 
required (argument 1) [-Werror=nonnull]
 ? get_identifier_with_length ((str), strlen (str))  \
 ^
../../../gcc/gcc/c-family/c-common.c:5553:22: note: in expansion of macro 
‘get_identifier’
   char32_type_node = get_identifier (CHAR32_TYPE);
  ^
../../../gcc/gcc/stringpool.h:39:53: error: null argument where non-null 
required (argument 1) [-Werror=nonnull]
 ? get_identifier_with_length ((str), strlen (str))  \
 ^
../../../gcc/gcc/c-family/c-common.c:5553:22: note: in expansion of macro 
‘get_identifier’
   char32_type_node = get_identifier (CHAR32_TYPE);
  ^
cc1plus: all warnings being treated as errors

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of:http://catb.org/~esr/faqs/smart-questions.html
the second  :


signature.asc
Description: Digital signature


[buildrobot] bfin-elf / bfin-linux-uclibc / bfin-openbsd / bfin-uclinux

2013-11-25 Thread Jan-Benedict Glaw
Hi!

Build log is available at
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40112
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40121
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40123
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40122
http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=40120

g++ -c  -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND -g -O2 -DIN_GCC  
-DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions -fno-rtti 
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings 
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
-DHAVE_CONFIG_H -I. -Ic-family -I../../../gcc/gcc -I../../../gcc/gcc/c-family 
-I../../../gcc/gcc/../include -I../../../gcc/gcc/../libcpp/include 
-I/opt/cfarm/mpc/include  -I../../../gcc/gcc/../libdecnumber 
-I../../../gcc/gcc/../libdecnumber/dpd -I../libdecnumber 
-I../../../gcc/gcc/../libbacktrace-o c-family/c-cppbuiltin.o -MT 
c-family/c-cppbuiltin.o -MMD -MP -MF c-family/.deps/c-cppbuiltin.TPo 
../../../gcc/gcc/c-family/c-cppbuiltin.c
In file included from ./tm.h:15:0,
 from ../../../gcc/gcc/c-family/c-cppbuiltin.c:23:
../../../gcc/gcc/c-family/c-cppbuiltin.c: In function ‘void 
c_cpp_builtins(cpp_reader*)’:
../../../gcc/gcc/config/bfin/bfin.h:43:14: error: enumeration value 
‘BFIN_CPU_UNKNOWN’ not handled in switch [-Werror=switch]
   switch (bfin_cpu_type)   \
  ^
../../../gcc/gcc/c-family/c-cppbuiltin.c:1013:3: note: in expansion of macro 
‘TARGET_CPU_CPP_BUILTINS’
   TARGET_CPU_CPP_BUILTINS ();
   ^
cc1plus: all warnings being treated as errors
make[2]: *** [c-family/c-cppbuiltin.o] Error 1

MfG, JBG

-- 
  Jan-Benedict Glaw  jbg...@lug-owl.de  +49-172-7608481
Signature of:  The course of history shows that as a government grows, liberty
the second  : decreases."  (Thomas Jefferson)


signature.asc
Description: Digital signature