All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH for-2.0] configure: use do_cc when checking for -fstack-protector support
@ 2014-04-09 11:04 Peter Maydell
  2014-04-10 16:31 ` Michael S. Tsirkin
  2014-04-11 12:34 ` Alexey Kardashevskiy
  0 siblings, 2 replies; 9+ messages in thread
From: Peter Maydell @ 2014-04-09 11:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: Paolo Bonzini, Andreas Färber, Steven Noonan, patches

MacOSX clang silently swallows unrecognized -f options when doing a link
with '-framework' also on the command line, so to detect support for
the various -fstack-protector options we must do a plain .c to .o compile,
not a complete compile-and-link.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
This should be a pretty safe change and it prevents clang/MacOSX
builds from spewing a warning on every C file compilation, so I'd
like to get it into 2.0.

 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index eb0e7bb..c85475f 100755
--- a/configure
+++ b/configure
@@ -1448,7 +1448,7 @@ done
 if test "$stack_protector" != "no" ; then
   gcc_flags="-fstack-protector-strong -fstack-protector-all"
   for flag in $gcc_flags; do
-    if compile_prog "-Werror $flag" "" ; then
+    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC ; then
       QEMU_CFLAGS="$QEMU_CFLAGS $flag"
       LIBTOOLFLAGS="$LIBTOOLFLAGS -Wc,$flag"
       break
-- 
1.8.5.4

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [Qemu-devel] [PATCH for-2.0] configure: use do_cc when checking for -fstack-protector support
  2014-04-09 11:04 [Qemu-devel] [PATCH for-2.0] configure: use do_cc when checking for -fstack-protector support Peter Maydell
@ 2014-04-10 16:31 ` Michael S. Tsirkin
  2014-04-10 16:37   ` Peter Maydell
  2014-04-11 12:34 ` Alexey Kardashevskiy
  1 sibling, 1 reply; 9+ messages in thread
From: Michael S. Tsirkin @ 2014-04-10 16:31 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Paolo Bonzini, Andreas Färber, Steven Noonan, qemu-devel, patches

On Wed, Apr 09, 2014 at 12:04:47PM +0100, Peter Maydell wrote:
> MacOSX clang silently swallows unrecognized -f options when doing a link
> with '-framework' also on the command line, so to detect support for
> the various -fstack-protector options we must do a plain .c to .o compile,
> not a complete compile-and-link.
> 
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

Hmm it worries me a bit that we aren't passing it to linker:
might break some builds in case compiler has a working
protector but linker doesn't.

How about checking both do_cc and compile_prog here?




> ---
> This should be a pretty safe change and it prevents clang/MacOSX
> builds from spewing a warning on every C file compilation, so I'd
> like to get it into 2.0.
> 
>  configure | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configure b/configure
> index eb0e7bb..c85475f 100755
> --- a/configure
> +++ b/configure
> @@ -1448,7 +1448,7 @@ done
>  if test "$stack_protector" != "no" ; then
>    gcc_flags="-fstack-protector-strong -fstack-protector-all"
>    for flag in $gcc_flags; do
> -    if compile_prog "-Werror $flag" "" ; then
> +    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC ; then
>        QEMU_CFLAGS="$QEMU_CFLAGS $flag"
>        LIBTOOLFLAGS="$LIBTOOLFLAGS -Wc,$flag"
>        break
> -- 
> 1.8.5.4
>

Long term we might want this:

But I'm not sure it's a good idea to make this change
so late.

-->

configure: check -c each time we run compiler

Some warnings/errors only surface if you run compiler
without a linker. Run both on each test.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

 
diff --git a/configure b/configure
index eb0e7bb..8adc72b 100755
--- a/configure
+++ b/configure
@@ -102,6 +102,7 @@ compile_object() {
 compile_prog() {
   local_cflags="$1"
   local_ldflags="$2"
+  do_cc $QEMU_CFLAGS -c $local_cflags -o $TMPO $TMPC
   do_cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
 }
 

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [Qemu-devel] [PATCH for-2.0] configure: use do_cc when checking for -fstack-protector support
  2014-04-10 16:31 ` Michael S. Tsirkin
@ 2014-04-10 16:37   ` Peter Maydell
  2014-04-10 17:51     ` Michael S. Tsirkin
  0 siblings, 1 reply; 9+ messages in thread
From: Peter Maydell @ 2014-04-10 16:37 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Paolo Bonzini, Andreas Färber, Steven Noonan,
	QEMU Developers, Patch Tracking

On 10 April 2014 17:31, Michael S. Tsirkin <mst@redhat.com> wrote:
> On Wed, Apr 09, 2014 at 12:04:47PM +0100, Peter Maydell wrote:
>> MacOSX clang silently swallows unrecognized -f options when doing a link
>> with '-framework' also on the command line, so to detect support for
>> the various -fstack-protector options we must do a plain .c to .o compile,
>> not a complete compile-and-link.
>>
>> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
>
> Hmm it worries me a bit that we aren't passing it to linker:
> might break some builds in case compiler has a working
> protector but linker doesn't.

Given we both compile and link (in configure) with the
same $compiler binary, this seems vanishingly unlikely.

> configure: check -c each time we run compiler
>
> Some warnings/errors only surface if you run compiler
> without a linker. Run both on each test.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>
>
> diff --git a/configure b/configure
> index eb0e7bb..8adc72b 100755
> --- a/configure
> +++ b/configure
> @@ -102,6 +102,7 @@ compile_object() {
>  compile_prog() {
>    local_cflags="$1"
>    local_ldflags="$2"
> +  do_cc $QEMU_CFLAGS -c $local_cflags -o $TMPO $TMPC
>    do_cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
>  }
>

That's a lot of extra compiles and configure isn't
exactly a speed demon as it is...

thanks
-- PMM

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Qemu-devel] [PATCH for-2.0] configure: use do_cc when checking for -fstack-protector support
  2014-04-10 16:37   ` Peter Maydell
@ 2014-04-10 17:51     ` Michael S. Tsirkin
  2014-04-10 22:31       ` Peter Maydell
  0 siblings, 1 reply; 9+ messages in thread
From: Michael S. Tsirkin @ 2014-04-10 17:51 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Paolo Bonzini, Andreas Färber, Patch Tracking,
	Steven Noonan, QEMU Developers

On Thu, Apr 10, 2014 at 05:37:31PM +0100, Peter Maydell wrote:
> On 10 April 2014 17:31, Michael S. Tsirkin <mst@redhat.com> wrote:
> > On Wed, Apr 09, 2014 at 12:04:47PM +0100, Peter Maydell wrote:
> >> MacOSX clang silently swallows unrecognized -f options when doing a link
> >> with '-framework' also on the command line, so to detect support for
> >> the various -fstack-protector options we must do a plain .c to .o compile,
> >> not a complete compile-and-link.
> >>
> >> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> >
> > Hmm it worries me a bit that we aren't passing it to linker:
> > might break some builds in case compiler has a working
> > protector but linker doesn't.
> 
> Given we both compile and link (in configure) with the
> same $compiler binary, this seems vanishingly unlikely.


True - I really meant libtool but we don't test it ATM
so we can leave that for another day.

OK fair enough:

Reviewed-by: Michael S. Tsirkin <mst@redhat.com>


> > configure: check -c each time we run compiler
> >
> > Some warnings/errors only surface if you run compiler
> > without a linker. Run both on each test.
> >
> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> >
> >
> > diff --git a/configure b/configure
> > index eb0e7bb..8adc72b 100755
> > --- a/configure
> > +++ b/configure
> > @@ -102,6 +102,7 @@ compile_object() {
> >  compile_prog() {
> >    local_cflags="$1"
> >    local_ldflags="$2"
> > +  do_cc $QEMU_CFLAGS -c $local_cflags -o $TMPO $TMPC
> >    do_cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
> >  }
> >
> 
> That's a lot of extra compiles and configure isn't
> exactly a speed demon as it is...
> 
> thanks
> -- PMM

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Qemu-devel] [PATCH for-2.0] configure: use do_cc when checking for -fstack-protector support
  2014-04-10 17:51     ` Michael S. Tsirkin
@ 2014-04-10 22:31       ` Peter Maydell
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Maydell @ 2014-04-10 22:31 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Paolo Bonzini, Andreas Färber, Patch Tracking,
	Steven Noonan, QEMU Developers

On 10 April 2014 18:51, Michael S. Tsirkin <mst@redhat.com> wrote:
> Reviewed-by: Michael S. Tsirkin <mst@redhat.com>

Thanks; patch applied to master.

-- PMM

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Qemu-devel] [PATCH for-2.0] configure: use do_cc when checking for -fstack-protector support
  2014-04-09 11:04 [Qemu-devel] [PATCH for-2.0] configure: use do_cc when checking for -fstack-protector support Peter Maydell
  2014-04-10 16:31 ` Michael S. Tsirkin
@ 2014-04-11 12:34 ` Alexey Kardashevskiy
  2014-04-11 14:24   ` Alexey Kardashevskiy
  1 sibling, 1 reply; 9+ messages in thread
From: Alexey Kardashevskiy @ 2014-04-11 12:34 UTC (permalink / raw)
  To: Peter Maydell, qemu-devel
  Cc: Paolo Bonzini, Andreas Färber, Steven Noonan, patches

On 04/09/2014 09:04 PM, Peter Maydell wrote:
> MacOSX clang silently swallows unrecognized -f options when doing a link
> with '-framework' also on the command line, so to detect support for
> the various -fstack-protector options we must do a plain .c to .o compile,
> not a complete compile-and-link.
> 
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> This should be a pretty safe change and it prevents clang/MacOSX
> builds from spewing a warning on every C file compilation, so I'd
> like to get it into 2.0.
> 
>  configure | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configure b/configure
> index eb0e7bb..c85475f 100755
> --- a/configure
> +++ b/configure
> @@ -1448,7 +1448,7 @@ done
>  if test "$stack_protector" != "no" ; then
>    gcc_flags="-fstack-protector-strong -fstack-protector-all"
>    for flag in $gcc_flags; do
> -    if compile_prog "-Werror $flag" "" ; then
> +    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC ; then
>        QEMU_CFLAGS="$QEMU_CFLAGS $flag"
>        LIBTOOLFLAGS="$LIBTOOLFLAGS -Wc,$flag"
>        break
> 

My cross environment fails after this patch on "-fstack-protector-all".
Without the patch, gcc for test program gets additional "-m64 -g
-L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64" (the last one is
mine, passed via --extra-ldflags=), fails with an error (below). With the
patch, the configure script thinks everything is fine and fails on "ERROR:
zlib check failed".

Why is this happening? Thanks.



powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
-D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef
-Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common
--sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem
/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS
-D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls
-Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers
-Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs
-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers
-Wold-style-declaration -Wold-style-definition -Wtype-limits -Werror
-fstack-protector-strong -o /tmp/qemu-conf-24556-2284-15038.exe
/tmp/qemu-conf-31026-2284-18135.c -m64 -g
-L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc: error: unrecognized command line option
'-fstack-protector-strong'
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
-D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef
-Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common
--sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem
/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS
-D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls
-Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers
-Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs
-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers
-Wold-style-declaration -Wold-style-definition -Wtype-limits -Werror
-fstack-protector-all -o /tmp/qemu-conf-24556-2284-15038.exe
/tmp/qemu-conf-31026-2284-18135.c -m64 -g
-L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
/home/system/opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/../lib/gcc/powerpc64-linux/4.8.0/../../../../powerpc64-linux/bin/ld:
cannot find -lssp_nonshared
/home/system/opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/../lib/gcc/powerpc64-linux/4.8.0/../../../../powerpc64-linux/bin/ld:
cannot find -lssp
collect2: error: ld returned 1 exit status




-- 
Alexey

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Qemu-devel] [PATCH for-2.0] configure: use do_cc when checking for -fstack-protector support
  2014-04-11 12:34 ` Alexey Kardashevskiy
@ 2014-04-11 14:24   ` Alexey Kardashevskiy
  2014-04-11 14:33     ` Alexey Kardashevskiy
  0 siblings, 1 reply; 9+ messages in thread
From: Alexey Kardashevskiy @ 2014-04-11 14:24 UTC (permalink / raw)
  To: Peter Maydell, qemu-devel
  Cc: Paolo Bonzini, Andreas Färber, Steven Noonan, patches

On 04/11/2014 10:34 PM, Alexey Kardashevskiy wrote:
> On 04/09/2014 09:04 PM, Peter Maydell wrote:
>> MacOSX clang silently swallows unrecognized -f options when doing a link
>> with '-framework' also on the command line, so to detect support for
>> the various -fstack-protector options we must do a plain .c to .o compile,
>> not a complete compile-and-link.
>>
>> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
>> ---
>> This should be a pretty safe change and it prevents clang/MacOSX
>> builds from spewing a warning on every C file compilation, so I'd
>> like to get it into 2.0.
>>
>>  configure | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/configure b/configure
>> index eb0e7bb..c85475f 100755
>> --- a/configure
>> +++ b/configure
>> @@ -1448,7 +1448,7 @@ done
>>  if test "$stack_protector" != "no" ; then
>>    gcc_flags="-fstack-protector-strong -fstack-protector-all"
>>    for flag in $gcc_flags; do
>> -    if compile_prog "-Werror $flag" "" ; then
>> +    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC ; then
>>        QEMU_CFLAGS="$QEMU_CFLAGS $flag"
>>        LIBTOOLFLAGS="$LIBTOOLFLAGS -Wc,$flag"
>>        break
>>
> 
> My cross environment fails after this patch on "-fstack-protector-all".
> Without the patch, gcc for test program gets additional "-m64 -g
> -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64" (the last one is
> mine, passed via --extra-ldflags=), fails with an error (below). With the
> patch, the configure script thinks everything is fine and fails on "ERROR:
> zlib check failed".
> 
> Why is this happening? Thanks.


This helps. No idea why. Any ideas? :)

@@ -1448,7 +1452,7 @@ done
 if test "$stack_protector" != "no" ; then
   gcc_flags="-fstack-protector-strong -fstack-protector-all"
   for flag in $gcc_flags; do
-    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC ; then
+    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC "" ; then
       QEMU_CFLAGS="$QEMU_CFLAGS $flag"
       LIBTOOLFLAGS="$LIBTOOLFLAGS -Wc,$flag"
       break




> 
> 
> 
> powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
> -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef
> -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common
> --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem
> /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS
> -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls
> -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers
> -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs
> -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers
> -Wold-style-declaration -Wold-style-definition -Wtype-limits -Werror
> -fstack-protector-strong -o /tmp/qemu-conf-24556-2284-15038.exe
> /tmp/qemu-conf-31026-2284-18135.c -m64 -g
> -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
> powerpc64-linux-gcc: error: unrecognized command line option
> '-fstack-protector-strong'
> powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
> -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef
> -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common
> --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem
> /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS
> -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls
> -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers
> -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs
> -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers
> -Wold-style-declaration -Wold-style-definition -Wtype-limits -Werror
> -fstack-protector-all -o /tmp/qemu-conf-24556-2284-15038.exe
> /tmp/qemu-conf-31026-2284-18135.c -m64 -g
> -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
> /home/system/opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/../lib/gcc/powerpc64-linux/4.8.0/../../../../powerpc64-linux/bin/ld:
> cannot find -lssp_nonshared
> /home/system/opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/../lib/gcc/powerpc64-linux/4.8.0/../../../../powerpc64-linux/bin/ld:
> cannot find -lssp
> collect2: error: ld returned 1 exit status
> 
> 
> 
> 


-- 
Alexey

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Qemu-devel] [PATCH for-2.0] configure: use do_cc when checking for -fstack-protector support
  2014-04-11 14:24   ` Alexey Kardashevskiy
@ 2014-04-11 14:33     ` Alexey Kardashevskiy
  2014-04-11 15:30       ` Peter Maydell
  0 siblings, 1 reply; 9+ messages in thread
From: Alexey Kardashevskiy @ 2014-04-11 14:33 UTC (permalink / raw)
  To: Peter Maydell, qemu-devel
  Cc: Paolo Bonzini, Andreas Färber, Steven Noonan, patches

[-- Attachment #1: Type: text/plain, Size: 4468 bytes --]

On 04/12/2014 12:24 AM, Alexey Kardashevskiy wrote:
> On 04/11/2014 10:34 PM, Alexey Kardashevskiy wrote:
>> On 04/09/2014 09:04 PM, Peter Maydell wrote:
>>> MacOSX clang silently swallows unrecognized -f options when doing a link
>>> with '-framework' also on the command line, so to detect support for
>>> the various -fstack-protector options we must do a plain .c to .o compile,
>>> not a complete compile-and-link.
>>>
>>> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
>>> ---
>>> This should be a pretty safe change and it prevents clang/MacOSX
>>> builds from spewing a warning on every C file compilation, so I'd
>>> like to get it into 2.0.
>>>
>>>  configure | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/configure b/configure
>>> index eb0e7bb..c85475f 100755
>>> --- a/configure
>>> +++ b/configure
>>> @@ -1448,7 +1448,7 @@ done
>>>  if test "$stack_protector" != "no" ; then
>>>    gcc_flags="-fstack-protector-strong -fstack-protector-all"
>>>    for flag in $gcc_flags; do
>>> -    if compile_prog "-Werror $flag" "" ; then
>>> +    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC ; then
>>>        QEMU_CFLAGS="$QEMU_CFLAGS $flag"
>>>        LIBTOOLFLAGS="$LIBTOOLFLAGS -Wc,$flag"
>>>        break
>>>
>>
>> My cross environment fails after this patch on "-fstack-protector-all".
>> Without the patch, gcc for test program gets additional "-m64 -g
>> -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64" (the last one is
>> mine, passed via --extra-ldflags=), fails with an error (below). With the
>> patch, the configure script thinks everything is fine and fails on "ERROR:
>> zlib check failed".
>>
>> Why is this happening? Thanks.
> 
> 
> This helps. No idea why. Any ideas? :)
> 
> @@ -1448,7 +1452,7 @@ done
>  if test "$stack_protector" != "no" ; then
>    gcc_flags="-fstack-protector-strong -fstack-protector-all"
>    for flag in $gcc_flags; do
> -    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC ; then
> +    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC "" ; then
>        QEMU_CFLAGS="$QEMU_CFLAGS $flag"
>        LIBTOOLFLAGS="$LIBTOOLFLAGS -Wc,$flag"
>        break



Ok. Here are 2 logs - "good" with the patch above, "bad" - without.


> 
> 
> 
> 
>>
>>
>>
>> powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
>> -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef
>> -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common
>> --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem
>> /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS
>> -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls
>> -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers
>> -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs
>> -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers
>> -Wold-style-declaration -Wold-style-definition -Wtype-limits -Werror
>> -fstack-protector-strong -o /tmp/qemu-conf-24556-2284-15038.exe
>> /tmp/qemu-conf-31026-2284-18135.c -m64 -g
>> -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
>> powerpc64-linux-gcc: error: unrecognized command line option
>> '-fstack-protector-strong'
>> powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
>> -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef
>> -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common
>> --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem
>> /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS
>> -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls
>> -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers
>> -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs
>> -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers
>> -Wold-style-declaration -Wold-style-definition -Wtype-limits -Werror
>> -fstack-protector-all -o /tmp/qemu-conf-24556-2284-15038.exe
>> /tmp/qemu-conf-31026-2284-18135.c -m64 -g
>> -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
>> /home/system/opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/../lib/gcc/powerpc64-linux/4.8.0/../../../../powerpc64-linux/bin/ld:
>> cannot find -lssp_nonshared
>> /home/system/opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/../lib/gcc/powerpc64-linux/4.8.0/../../../../powerpc64-linux/bin/ld:
>> cannot find -lssp
>> collect2: error: ld returned 1 exit status
>>
>>
>>
>>
> 
> 


-- 
Alexey

[-- Attachment #2: cfg.bad --]
[-- Type: text/plain, Size: 18450 bytes --]

# QEMU configure log Saturday 12 April  00:30:37 EST 2014
# Configured with: '../../qemu/configure' '--source-path=../../qemu' '--target-list=ppc64-softmmu' '--cpu=ppc64' '--cxx=' '--cross-prefix=powerpc64-linux-' '--prefix=/home/alexey/crosslib/qemu-build-lib-fc19/install' '--extra-ldflags=-L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64' '--extra-cflags=--sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers' '--enable-fdt' '--enable-attr' '--enable-kvm' '--enable-profiler' '--disable-seccomp' '--enable-trace-backend=stderr' '--enable-debug' '--disable-debug-tcg' '--enable-debug-info' '--enable-glusterfs' '--enable-libssh2' '--disable-linux-aio' '--enable-vnc' '--disable-gtk' '--disable-xfsctl'
#
powerpc64-linux-gcc -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -c -o /tmp/qemu-conf-24627-16532-27744.o /tmp/qemu-conf-2673-16532-10122.c
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -c -o /tmp/qemu-conf-24627-16532-27744.o /tmp/qemu-conf-2673-16532-10122.c
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -c -o /tmp/qemu-conf-24627-16532-27744.o /tmp/qemu-conf-2673-16532-10122.c
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Werror -Wstring-plus-int -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc: error: unrecognized command line option '-Wstring-plus-int'
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Werror -Winitializer-overrides -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc: error: unrecognized command line option '-Winitializer-overrides'
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Werror -Wendif-labels -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Werror -Wmissing-include-dirs -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Werror -Wempty-body -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Werror -Wnested-externs -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Werror -Wformat-security -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Werror -Wformat-y2k -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Werror -Winit-self -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Werror -Wignored-qualifiers -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Werror -Wold-style-declaration -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Werror -Wold-style-definition -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Werror -Wtype-limits -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -Werror -fstack-protector-strong -c -o /tmp/qemu-conf-24627-16532-27744.o /tmp/qemu-conf-2673-16532-10122.c
powerpc64-linux-gcc: error: unrecognized command line option '-fstack-protector-strong'
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -Werror -fstack-protector-all -c -o /tmp/qemu-conf-24627-16532-27744.o /tmp/qemu-conf-2673-16532-10122.c
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -fstack-protector-all -Werror -fno-gcse -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
/tmp/qemu-conf-2673-16532-10122.c:4:2: error: #error No bug in this compiler.
 #error No bug in this compiler.
  ^
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -fstack-protector-all -c -o /tmp/qemu-conf-24627-16532-27744.o /tmp/qemu-conf-2673-16532-10122.c
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -fstack-protector-all -c -o /tmp/qemu-conf-24627-16532-27744.o /tmp/qemu-conf-2673-16532-10122.c
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -fstack-protector-all -c -o /tmp/qemu-conf-24627-16532-27744.o /tmp/qemu-conf-2673-16532-10122.c
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -fstack-protector-all -c -o /tmp/qemu-conf-24627-16532-27744.o /tmp/qemu-conf-2673-16532-10122.c
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -fstack-protector-all -o /tmp/qemu-conf-16441-16532-4251.exe /tmp/qemu-conf-2673-16532-10122.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lz
/home/system/opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/../lib/gcc/powerpc64-linux/4.8.0/../../../../powerpc64-linux/bin/ld: cannot find -lssp_nonshared
/home/system/opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/../lib/gcc/powerpc64-linux/4.8.0/../../../../powerpc64-linux/bin/ld: cannot find -lssp
collect2: error: ld returned 1 exit status

[-- Attachment #3: cfg.good --]
[-- Type: text/plain, Size: 143036 bytes --]

# QEMU configure log Saturday 12 April  00:31:19 EST 2014
# Configured with: '../../qemu/configure' '--source-path=../../qemu' '--target-list=ppc64-softmmu' '--cpu=ppc64' '--cxx=' '--cross-prefix=powerpc64-linux-' '--prefix=/home/alexey/crosslib/qemu-build-lib-fc19/install' '--extra-ldflags=-L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64' '--extra-cflags=--sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers' '--enable-fdt' '--enable-attr' '--enable-kvm' '--enable-profiler' '--disable-seccomp' '--enable-trace-backend=stderr' '--enable-debug' '--disable-debug-tcg' '--enable-debug-info' '--enable-glusterfs' '--enable-libssh2' '--disable-linux-aio' '--enable-vnc' '--disable-gtk' '--disable-xfsctl'
#
powerpc64-linux-gcc -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -c -o /tmp/qemu-conf-28789-16850-7357.o /tmp/qemu-conf-21647-16850-5092.c
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -c -o /tmp/qemu-conf-28789-16850-7357.o /tmp/qemu-conf-21647-16850-5092.c
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -c -o /tmp/qemu-conf-28789-16850-7357.o /tmp/qemu-conf-21647-16850-5092.c
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Werror -Wstring-plus-int -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc: error: unrecognized command line option '-Wstring-plus-int'
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Werror -Winitializer-overrides -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc: error: unrecognized command line option '-Winitializer-overrides'
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Werror -Wendif-labels -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Werror -Wmissing-include-dirs -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Werror -Wempty-body -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Werror -Wnested-externs -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Werror -Wformat-security -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Werror -Wformat-y2k -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Werror -Winit-self -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Werror -Wignored-qualifiers -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Werror -Wold-style-declaration -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Werror -Wold-style-definition -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Werror -Wtype-limits -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -Werror -fstack-protector-strong -c -o /tmp/qemu-conf-28789-16850-7357.o /tmp/qemu-conf-21647-16850-5092.c 
powerpc64-linux-gcc: error: : No such file or directory
powerpc64-linux-gcc: error: unrecognized command line option '-fstack-protector-strong'
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -Werror -fstack-protector-all -c -o /tmp/qemu-conf-28789-16850-7357.o /tmp/qemu-conf-21647-16850-5092.c 
powerpc64-linux-gcc: error: : No such file or directory
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -Werror -fno-gcse -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
/tmp/qemu-conf-21647-16850-5092.c:4:2: error: #error No bug in this compiler.
 #error No bug in this compiler.
  ^
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -c -o /tmp/qemu-conf-28789-16850-7357.o /tmp/qemu-conf-21647-16850-5092.c
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -c -o /tmp/qemu-conf-28789-16850-7357.o /tmp/qemu-conf-21647-16850-5092.c
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -c -o /tmp/qemu-conf-28789-16850-7357.o /tmp/qemu-conf-21647-16850-5092.c
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -c -o /tmp/qemu-conf-28789-16850-7357.o /tmp/qemu-conf-21647-16850-5092.c
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lz
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lz
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lxenstore -lxenctrl -lxenguest
/tmp/qemu-conf-21647-16850-5092.c:1:21: fatal error: xenctrl.h: No such file or directory
 #include <xenctrl.h>
                     ^
compilation terminated.
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -D_GNU_SOURCE=1 -D_REENTRANT -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/SDL -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lSDL -lpthread
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -D_GNU_SOURCE=1 -D_REENTRANT -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/SDL -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lSDL -lpthread
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -D_GNU_SOURCE=1 -D_REENTRANT -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/SDL -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lSDL -lpthread
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -D_GNU_SOURCE=1 -D_REENTRANT -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/SDL -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lSDL -lpthread
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lrdmacm -libverbs
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lrdmacm -libverbs
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lgnutls
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lgnutls
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lsasl2
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lsasl2
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -ljpeg
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -ljpeg
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lpng15
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lpng15
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
/tmp/ccsfibon.o: In function `main':
/tmp/qemu-conf-21647-16850-5092.c:5: undefined reference to `uuid_generate'
collect2: error: ld returned 1 exit status
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -luuid
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -luuid
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lvdeplug
/tmp/qemu-conf-21647-16850-5092.c:1:24: fatal error: libvdeplug.h: No such file or directory
 #include <libvdeplug.h>
                        ^
compilation terminated.
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lcap-ng
/tmp/qemu-conf-21647-16850-5092.c:1:20: fatal error: cap-ng.h: No such file or directory
 #include <cap-ng.h>
                    ^
compilation terminated.
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lbrlapi
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lbrlapi
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lncurses
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lncurses
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lcurl
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lcurl
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lbluetooth
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lbluetooth
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lcap
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lcap
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
/tmp/cc4tphrp.o: In function `main':
/tmp/qemu-conf-21647-16850-5092.c:5: undefined reference to `pthread_create'
collect2: error: ld returned 1 exit status
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -pthread
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -pthread
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -pthread
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -pthread
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lrbd -lrados
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lrbd -lrados
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lssh2
/tmp/qemu-conf-21647-16850-5092.c: In function 'main':
/tmp/qemu-conf-21647-16850-5092.c:11:5: warning: implicit declaration of function 'libssh2_sftp_fsync' [-Wimplicit-function-declaration]
     libssh2_sftp_fsync (sftp_handle);
     ^
/tmp/qemu-conf-21647-16850-5092.c:11:5: warning: nested extern declaration of 'libssh2_sftp_fsync' [-Wnested-externs]
/tmp/ccMmfmqd.o: In function `main':
/tmp/qemu-conf-21647-16850-5092.c:11: undefined reference to `libssh2_sftp_fsync'
collect2: error: ld returned 1 exit status
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lfdt
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lfdt
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lGL -lX11
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lGL -lX11
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
/tmp/qemu-conf-21647-16850-5092.c:1:24: fatal error: sys/endian.h: No such file or directory
 #include <sys/endian.h>
                        ^
compilation terminated.
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -liscsi
/tmp/qemu-conf-21647-16850-5092.c: In function 'main':
/tmp/qemu-conf-21647-16850-5092.c:4:3: error: too few arguments to function 'iscsi_read10_task'
   iscsi_read10_task(0, 0, 0, 0, 0, 0, 0);
   ^
In file included from /tmp/qemu-conf-21647-16850-5092.c:1:0:
/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/iscsi/iscsi.h:629:1: note: declared here
 iscsi_read10_task(struct iscsi_context *iscsi, int lun, uint32_t lba,
 ^
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
/tmp/ccOQrWOB.o: In function `main':
/tmp/qemu-conf-21647-16850-5092.c:4: undefined reference to `timer_create'
collect2: error: ld returned 1 exit status
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lrt -pthread
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -lrt -pthread
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -Werror -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
/tmp/qemu-conf-21647-16850-5092.c:1:31: fatal error: valgrind/valgrind.h: No such file or directory
 #include <valgrind/valgrind.h>
                               ^
compilation terminated.
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
/tmp/qemu-conf-21647-16850-5092.c:1:19: fatal error: cpuid.h: No such file or directory
 #include <cpuid.h>
                   ^
compilation terminated.
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64
powerpc64-linux-gcc -Werror -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common --sysroot=/home/alexey/crosslib/qemu-build-lib-fc19/ -isystem /home/alexey/crosslib/qemu-build-lib-fc19/usr/include -D__EXCEPTIONS -D__LONG_DOUBLE_128__ -D__NO_INLINE__ -Wno-redundant-decls -Wno-missing-prototypes -Wmissing-include-dirs -Wno-system-headers -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/p11-kit-1 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libpng15 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include/libusb-1.0 -I/home/alexey/crosslib/qemu-build-lib-fc19/usr/include -o /tmp/qemu-conf-15620-16850-4713.exe /tmp/qemu-conf-21647-16850-5092.c -Wl,--warn-common -m64 -g -L/home/alexey/crosslib/qemu-build-lib-fc19/usr/lib64 -Wl,-Ttext-segment=0x60000000

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Qemu-devel] [PATCH for-2.0] configure: use do_cc when checking for -fstack-protector support
  2014-04-11 14:33     ` Alexey Kardashevskiy
@ 2014-04-11 15:30       ` Peter Maydell
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Maydell @ 2014-04-11 15:30 UTC (permalink / raw)
  To: Alexey Kardashevskiy
  Cc: Paolo Bonzini, Andreas Färber, Steven Noonan,
	QEMU Developers, Patch Tracking

On 11 April 2014 15:33, Alexey Kardashevskiy <aik@ozlabs.ru> wrote:
> On 04/12/2014 12:24 AM, Alexey Kardashevskiy wrote:
>> This helps. No idea why. Any ideas? :)
>>
>> @@ -1448,7 +1452,7 @@ done
>>  if test "$stack_protector" != "no" ; then
>>    gcc_flags="-fstack-protector-strong -fstack-protector-all"
>>    for flag in $gcc_flags; do
>> -    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC ; then
>> +    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC "" ; then
>>        QEMU_CFLAGS="$QEMU_CFLAGS $flag"
>>        LIBTOOLFLAGS="$LIBTOOLFLAGS -Wc,$flag"
>>        break

This change causes the do_cc to always fail (you can see the compiler
errors in the logs as it fails to find a file whose name is the empty string),
so it means we don't use the -fstack-protector arguments.

>>> /home/system/opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/../lib/gcc/powerpc64-linux/4.8.0/../../../../powerpc64-linux/bin/ld:
>>> cannot find -lssp_nonshared
>>> /home/system/opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/../lib/gcc/powerpc64-linux/4.8.0/../../../../powerpc64-linux/bin/ld:
>>> cannot find -lssp
>>> collect2: error: ld returned 1 exit status

If we do use the stack protector arguments then the next time
we try to do a configure test which does a link then it fails
like this, because your cross compile environment doesn't
have the stack-protector libraries in it. You should probably
add those, so you get the benefit of the stack protection, but
we can work around this in configure by doing both a compile
and a link check, as MST originally suggested. Patch to
follow shortly.

(Here's a linux perf tools patch which deals with a similar situation:
https://lkml.org/lkml/2010/1/11/117
)

thanks
-- PMM

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2014-04-11 15:30 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-09 11:04 [Qemu-devel] [PATCH for-2.0] configure: use do_cc when checking for -fstack-protector support Peter Maydell
2014-04-10 16:31 ` Michael S. Tsirkin
2014-04-10 16:37   ` Peter Maydell
2014-04-10 17:51     ` Michael S. Tsirkin
2014-04-10 22:31       ` Peter Maydell
2014-04-11 12:34 ` Alexey Kardashevskiy
2014-04-11 14:24   ` Alexey Kardashevskiy
2014-04-11 14:33     ` Alexey Kardashevskiy
2014-04-11 15:30       ` Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.