public inbox for elfutils@sourceware.org
 help / color / mirror / Atom feed
* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-28 17:34 Mark Wielaard
  0 siblings, 0 replies; 22+ messages in thread
From: Mark Wielaard @ 2015-04-28 17:34 UTC (permalink / raw)
  To: elfutils-devel

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

On Mon, Apr 27, 2015 at 05:12:01AM +0300, Max Filippov wrote:
> So, I've switched to the pristine sources from git and forward-ported
> series pointed to by Anthony and now the results are the following:
> 
> # TOTAL: 134
> # PASS:  116
> # SKIP:  7
> # XFAIL: 0
> # FAIL:  11
> # XPASS: 0
> # ERROR: 0
> 
> The log is attached. I'll take a look at the segfaults.

> FAIL: run-strip-reloc.sh
> ========================
> 
> *** failure --reloc-debug-sections not smaller /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/strip.o
> FAIL run-strip-reloc.sh (exit status: 1)
> 
> FAIL: run-elflint-self.sh
> =========================
> 
> invalid machine flags: 0x300
> section [ 7] '.rela.dyn': relocation 0: invalid type
> [...]
> section [17] '.dynamic': entry 19: unknown tag
> section [17] '.dynamic': entry 20: unknown tag
> section [35] '.symtab': _GLOBAL_OFFSET_TABLE_ symbol refers to section [ 9] '.text'

These kind of failures often indicate that the backend code couldn't
be loaded for the ELF file. Which architecture is this? What is the
ELF EM machine type of the file? Does ebl openbackend () find the correct
shared library to dlopen?

> FAIL: run-backtrace-native.sh
> =============================
> 
> /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/tests/backtrace: backtrace.c: 346: exec_dump: Assertion `((((__extension__ (((union { __typeof(status) __in; int __i; }) { .__in = (status) }).__i))) & 0xff) == 0x7f)' failed.
> ./test-subr.sh: line 84:  2886 Aborted                 LD_LIBRARY_PATH="${built_library_path}${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH" $VALGRIND_CMD "$@"
> backtrace-child: no main
> FAIL run-backtrace-native.sh (exit status: 1)

That is strange. waitpid () returned something we didn't expect.

> FAIL: run-stack-d-test.sh
> =========================
> 
> --- stack.out
> +++ -
> @@ -1,5 +1,5 @@
>  PID 13654 - core
>  TID 13654:
> -#0  0x00000000004006c8 _Z2fui
> +#0  0x00000000004006c8 fu(int)
>  #1  0x00000000004004c5 main
>  /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/stack: tid 13654: shown max number of frames (2, use -n 0 for unlimited)
> FAIL run-stack-d-test.sh (exit status: 1)

This might be a testsuite bug.
I assume the configure check for __cxa_demangle failed because you
don't have libstdc++ installed. Then some tools will not be able to
demangle (C++) symbols. We should fix the test to SKIP in that case.

>  #1  0x00000000004006c8 foobar
>  #2  0x00000000004006c8 bar
>  #3  0x00000000004006c8 foo
> -#4  0x00000000004006c8 _Z2fui
> +#4  0x00000000004006c8 fu(int)
>  #5  0x00000000004004c5 main
>  /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/stack: tid 13654: shown max number of frames (6, use -n 0 for unlimited)
> FAIL run-stack-i-test.sh (exit status: 1)

Likewise.

Cheers,

Mark

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-05-03 18:18 Max Filippov
  0 siblings, 0 replies; 22+ messages in thread
From: Max Filippov @ 2015-05-03 18:18 UTC (permalink / raw)
  To: elfutils-devel

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

On Fri, May 1, 2015 at 11:52 AM, Mark Wielaard <mjw@redhat.com> wrote:
> On Wed, 2015-04-29 at 03:29 +0300, Max Filippov wrote:
>> It's Tensilica Xtensa, EM_XTENSA, 94.
>> openbackend couldn't dlopen libebl_xtensa.so because
>> there's no such file.
>
> Aha. Yes, we don't have a backend for that architecture.
> It shouldn't be too hard to write a backend for it. But it needs someone
> who knows about the relocation types, special symbols, DWARF register
> number mappings and ptrace/pt_regs setup to fully support. Let me know
> if you would like to try and need some help.

I guess I'll try. No help is needed at that point, will ask here if I need any.

-- 
Thanks.
-- Max

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-05-01  8:52 Mark Wielaard
  0 siblings, 0 replies; 22+ messages in thread
From: Mark Wielaard @ 2015-05-01  8:52 UTC (permalink / raw)
  To: elfutils-devel

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

On Wed, 2015-04-29 at 03:29 +0300, Max Filippov wrote:
> On Tue, Apr 28, 2015 at 8:34 PM, Mark Wielaard <mjw@redhat.com> wrote:
> > These kind of failures often indicate that the backend code couldn't
> > be loaded for the ELF file. Which architecture is this? What is the
> > ELF EM machine type of the file? Does ebl openbackend () find the correct
> > shared library to dlopen?
> 
> It's Tensilica Xtensa, EM_XTENSA, 94.
> openbackend couldn't dlopen libebl_xtensa.so because
> there's no such file.

Aha. Yes, we don't have a backend for that architecture.
It shouldn't be too hard to write a backend for it. But it needs someone
who knows about the relocation types, special symbols, DWARF register
number mappings and ptrace/pt_regs setup to fully support. Let me know
if you would like to try and need some help.

> > This might be a testsuite bug.
> > I assume the configure check for __cxa_demangle failed because you
> > don't have libstdc++ installed. Then some tools will not be able to
> > demangle (C++) symbols. We should fix the test to SKIP in that case.
> 
> Correct. After installing libstdc++ and rebuilding these two tests pass.

Great. I did just add two patches to SKIP these tests if the demangler
cannot be found and to print out recommended features for configure so
it is more clear when you configure elfutils in a not-recommended
setting.

Cheers,

Mark


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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-29  0:35 Max Filippov
  0 siblings, 0 replies; 22+ messages in thread
From: Max Filippov @ 2015-04-29  0:35 UTC (permalink / raw)
  To: elfutils-devel

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

On Tue, Apr 28, 2015 at 8:35 PM, Mark Wielaard <mjw@redhat.com> wrote:
> On Tue, Apr 28, 2015 at 01:01:44PM +0300, Max Filippov wrote:
>> Ok, segfaults were caused by uClibc (not supporting %m[...] in sscanf)
>> and argp-standalone (passing arbitrary ints to isprint).
>
> How did you fix these issues?
> elfutils used to use %a instead of %m.
> But %a was a GNU extension, while %m is standard POSIX.
> Does uclibc support %a?

No, I've fixed its %m support:
http://lists.uclibc.org/pipermail/uclibc/2015-April/048927.html

Not sure where I could send argp-standalone patch, sent it
to buildroot ML for now:
http://lists.busybox.net/pipermail/buildroot/2015-April/127150.html

-- 
Thanks.
-- Max

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-29  0:29 Max Filippov
  0 siblings, 0 replies; 22+ messages in thread
From: Max Filippov @ 2015-04-29  0:29 UTC (permalink / raw)
  To: elfutils-devel

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

On Tue, Apr 28, 2015 at 8:34 PM, Mark Wielaard <mjw@redhat.com> wrote:
> On Mon, Apr 27, 2015 at 05:12:01AM +0300, Max Filippov wrote:
>> So, I've switched to the pristine sources from git and forward-ported
>> series pointed to by Anthony and now the results are the following:
>>
>> # TOTAL: 134
>> # PASS:  116
>> # SKIP:  7
>> # XFAIL: 0
>> # FAIL:  11
>> # XPASS: 0
>> # ERROR: 0
>>
>> The log is attached. I'll take a look at the segfaults.
>
>> FAIL: run-strip-reloc.sh
>> ========================
>>
>> *** failure --reloc-debug-sections not smaller /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/strip.o
>> FAIL run-strip-reloc.sh (exit status: 1)
>>
>> FAIL: run-elflint-self.sh
>> =========================
>>
>> invalid machine flags: 0x300
>> section [ 7] '.rela.dyn': relocation 0: invalid type
>> [...]
>> section [17] '.dynamic': entry 19: unknown tag
>> section [17] '.dynamic': entry 20: unknown tag
>> section [35] '.symtab': _GLOBAL_OFFSET_TABLE_ symbol refers to section [ 9] '.text'
>
> These kind of failures often indicate that the backend code couldn't
> be loaded for the ELF file. Which architecture is this? What is the
> ELF EM machine type of the file? Does ebl openbackend () find the correct
> shared library to dlopen?

It's Tensilica Xtensa, EM_XTENSA, 94.
openbackend couldn't dlopen libebl_xtensa.so because
there's no such file.

>> FAIL: run-backtrace-native.sh
>> =============================
>>
>> /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/tests/backtrace: backtrace.c: 346: exec_dump: Assertion `((((__extension__ (((union { __typeof(status) __in; int __i; }) { .__in = (status) }).__i))) & 0xff) == 0x7f)' failed.
>> ./test-subr.sh: line 84:  2886 Aborted                 LD_LIBRARY_PATH="${built_library_path}${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH" $VALGRIND_CMD "$@"
>> backtrace-child: no main
>> FAIL run-backtrace-native.sh (exit status: 1)
>
> That is strange. waitpid () returned something we didn't expect.

I'll take a look.

>> FAIL: run-stack-d-test.sh
>> =========================
>>
>> --- stack.out
>> +++ -
>> @@ -1,5 +1,5 @@
>>  PID 13654 - core
>>  TID 13654:
>> -#0  0x00000000004006c8 _Z2fui
>> +#0  0x00000000004006c8 fu(int)
>>  #1  0x00000000004004c5 main
>>  /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/stack: tid 13654: shown max number of frames (2, use -n 0 for unlimited)
>> FAIL run-stack-d-test.sh (exit status: 1)
>
> This might be a testsuite bug.
> I assume the configure check for __cxa_demangle failed because you
> don't have libstdc++ installed. Then some tools will not be able to
> demangle (C++) symbols. We should fix the test to SKIP in that case.

Correct. After installing libstdc++ and rebuilding these two tests pass.

>>  #1  0x00000000004006c8 foobar
>>  #2  0x00000000004006c8 bar
>>  #3  0x00000000004006c8 foo
>> -#4  0x00000000004006c8 _Z2fui
>> +#4  0x00000000004006c8 fu(int)
>>  #5  0x00000000004004c5 main
>>  /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/stack: tid 13654: shown max number of frames (6, use -n 0 for unlimited)
>> FAIL run-stack-i-test.sh (exit status: 1)
>
> Likewise.

-- 
Thanks.
-- Max

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-28 17:35 Mark Wielaard
  0 siblings, 0 replies; 22+ messages in thread
From: Mark Wielaard @ 2015-04-28 17:35 UTC (permalink / raw)
  To: elfutils-devel

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

On Tue, Apr 28, 2015 at 01:01:44PM +0300, Max Filippov wrote:
> Ok, segfaults were caused by uClibc (not supporting %m[...] in sscanf)
> and argp-standalone (passing arbitrary ints to isprint). 

How did you fix these issues?
elfutils used to use %a instead of %m.
But %a was a GNU extension, while %m is standard POSIX.
Does uclibc support %a?

Thanks,

Mark

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-28 17:35 Anthony G. Basile
  0 siblings, 0 replies; 22+ messages in thread
From: Anthony G. Basile @ 2015-04-28 17:35 UTC (permalink / raw)
  To: elfutils-devel

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

On 04/28/15 13:04, Mark Wielaard wrote:
> On Sat, Apr 25, 2015 at 09:14:56AM -0400, Anthony G. Basile wrote:
>> I hit elfutils because some of these stage3's are
>> "hardened" meaning that they are meant to run with a pax hardened kernel.
>> These require "marking" of some elf objects which is done by a utility I
>> wrote called paxutils-ng.  This depends on elfutils

I meant paxctl-ng.

>
> Do you have a link to the source code for this utility?
>
> Thanks,
>
> Mark
>

See:

   https://gitweb.gentoo.org/proj/elfix.git/

Specifically:

   https://gitweb.gentoo.org/proj/elfix.git/tree/src/paxctl-ng.c

-- 
Anthony G. Basile, Ph. D.
Chair of Information Technology
D'Youville College
Buffalo, NY 14201
(716) 829-8197

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-28 17:10 Mark Wielaard
  0 siblings, 0 replies; 22+ messages in thread
From: Mark Wielaard @ 2015-04-28 17:10 UTC (permalink / raw)
  To: elfutils-devel

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

On Sat, Apr 25, 2015 at 09:29:14AM -0400, Anthony G. Basile wrote:
> On 04/25/15 05:41, Mark Wielaard wrote:
> >If you could work together and see which patches seem reasonable to
> >submit upstream that would be appreciated. I cannot guarantee they
> >will all accepted if they make the code really complicated/broken.
> 
> The patches need some configure.ac love to test for the availability of
> various features like mtrace() and add the appropriate #ifdef's.  I don't
> think they'll be overly complicated, I just didn't polish and push them
> upstream because (in those days) I anticipated resistance.  I'll have some
> time in about a week and can get something ready.

Thanks. Just a note that if we can avoid extra ifdefs that would be nice.
For example in the case of these mtrace () calls I would prefer to just
remove them because I believe they are not really used.

Cheers,

Mark

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-28 17:04 Mark Wielaard
  0 siblings, 0 replies; 22+ messages in thread
From: Mark Wielaard @ 2015-04-28 17:04 UTC (permalink / raw)
  To: elfutils-devel

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

On Sat, Apr 25, 2015 at 09:14:56AM -0400, Anthony G. Basile wrote:
> I hit elfutils because some of these stage3's are
> "hardened" meaning that they are meant to run with a pax hardened kernel.
> These require "marking" of some elf objects which is done by a utility I
> wrote called paxutils-ng.  This depends on elfutils

Do you have a link to the source code for this utility?

Thanks,

Mark

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-28 10:01 Max Filippov
  0 siblings, 0 replies; 22+ messages in thread
From: Max Filippov @ 2015-04-28 10:01 UTC (permalink / raw)
  To: elfutils-devel

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

On Mon, Apr 27, 2015 at 5:12 AM, Max Filippov <jcmvbkbc@gmail.com> wrote:
> On Fri, Apr 24, 2015 at 4:36 PM, Mark Wielaard <mjw@redhat.com> wrote:
>> On Fri, Apr 24, 2015 at 07:49:55AM -0400, Anthony G. Basile wrote:
>>> On 04/23/15 18:24, Max Filippov wrote:
>>> >A lot of tests failed because elfutils were built with --disable-progs
>>> >(otherwise the build fails), and some test binaries failed to build
>>> >because they call functions not available in uClibc.
>>
>> Hmmm. elfutils doesn't support --disable-progs. Not having the tools
>
> I'm building my rootfs in the Buildroot. That must be a local buildroot
> patch from some kind soul that's been using uClibc.
>
> So, I've switched to the pristine sources from git and forward-ported
> series pointed to by Anthony and now the results are the following:
> The log is attached. I'll take a look at the segfaults.

Ok, segfaults were caused by uClibc (not supporting %m[...] in sscanf)
and argp-standalone (passing arbitrary ints to isprint). After fixing
these issues I get the following numbers:

# TOTAL: 134
# PASS:  121
# SKIP:  7
# XFAIL: 0
# FAIL:  6
# XPASS: 0
# ERROR: 0

-- 
Thanks.
-- Max

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-27  2:12 Max Filippov
  0 siblings, 0 replies; 22+ messages in thread
From: Max Filippov @ 2015-04-27  2:12 UTC (permalink / raw)
  To: elfutils-devel

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

On Fri, Apr 24, 2015 at 4:36 PM, Mark Wielaard <mjw@redhat.com> wrote:
> On Fri, Apr 24, 2015 at 07:49:55AM -0400, Anthony G. Basile wrote:
>> On 04/23/15 18:24, Max Filippov wrote:
>> >A lot of tests failed because elfutils were built with --disable-progs
>> >(otherwise the build fails), and some test binaries failed to build
>> >because they call functions not available in uClibc.
>
> Hmmm. elfutils doesn't support --disable-progs. Not having the tools

I'm building my rootfs in the Buildroot. That must be a local buildroot
patch from some kind soul that's been using uClibc.

So, I've switched to the pristine sources from git and forward-ported
series pointed to by Anthony and now the results are the following:

# TOTAL: 134
# PASS:  116
# SKIP:  7
# XFAIL: 0
# FAIL:  11
# XPASS: 0
# ERROR: 0

The log is attached. I'll take a look at the segfaults.

-- 
Thanks.
-- Max

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: test-suite.log --]
[-- Type: text/x-log, Size: 961987 bytes --]

==========================================
   elfutils 0.161: tests/test-suite.log
==========================================

# TOTAL: 134
# PASS:  116
# SKIP:  7
# XFAIL: 0
# FAIL:  11
# XPASS: 0
# ERROR: 0

.. contents:: :depth: 2

FAIL: run-line2addr.sh
======================

--- line2addr.out
+++ -
@@ -1 +1 @@
-Segmentation fault
+f.c:4 -> 0x804846b (/home/drepper/gnu/new-bu/build/ttt/f.c:4)
FAIL run-line2addr.sh (exit status: 1)

FAIL: run-strip-reloc.sh
========================

*** failure --reloc-debug-sections not smaller /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/strip.o
FAIL run-strip-reloc.sh (exit status: 1)

FAIL: run-elflint-self.sh
=========================

invalid machine flags: 0x300
section [ 7] '.rela.dyn': relocation 0: invalid type
section [ 7] '.rela.dyn': relocation 0: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1: invalid type
section [ 7] '.rela.dyn': relocation 1: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 2: invalid type
section [ 7] '.rela.dyn': relocation 2: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 3: invalid type
section [ 7] '.rela.dyn': relocation 3: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 4: invalid type
section [ 7] '.rela.dyn': relocation 4: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 5: invalid type
section [ 7] '.rela.dyn': relocation 5: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 6: invalid type
section [ 7] '.rela.dyn': relocation 6: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 7: invalid type
section [ 7] '.rela.dyn': relocation 7: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 8: invalid type
section [ 7] '.rela.dyn': relocation 8: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 9: invalid type
section [ 7] '.rela.dyn': relocation 9: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 10: invalid type
section [ 7] '.rela.dyn': relocation 10: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 11: invalid type
section [ 7] '.rela.dyn': relocation 11: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 12: invalid type
section [ 7] '.rela.dyn': relocation 12: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 13: invalid type
section [ 7] '.rela.dyn': relocation 13: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 14: invalid type
section [ 7] '.rela.dyn': relocation 14: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 0: invalid type
section [ 8] '.rela.plt': relocation 0: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 1: invalid type
section [ 8] '.rela.plt': relocation 1: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 2: invalid type
section [ 8] '.rela.plt': relocation 2: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 3: invalid type
section [ 8] '.rela.plt': relocation 3: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 4: invalid type
section [ 8] '.rela.plt': relocation 4: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 5: invalid type
section [ 8] '.rela.plt': relocation 5: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 6: invalid type
section [ 8] '.rela.plt': relocation 6: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 7: invalid type
section [ 8] '.rela.plt': relocation 7: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 8: invalid type
section [ 8] '.rela.plt': relocation 8: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 9: invalid type
section [ 8] '.rela.plt': relocation 9: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 10: invalid type
section [ 8] '.rela.plt': relocation 10: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 11: invalid type
section [ 8] '.rela.plt': relocation 11: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 12: invalid type
section [ 8] '.rela.plt': relocation 12: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 13: invalid type
section [ 8] '.rela.plt': relocation 13: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 14: invalid type
section [ 8] '.rela.plt': relocation 14: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 15: invalid type
section [ 8] '.rela.plt': relocation 15: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 16: invalid type
section [ 8] '.rela.plt': relocation 16: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 17: invalid type
section [ 8] '.rela.plt': relocation 17: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 18: invalid type
section [ 8] '.rela.plt': relocation 18: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 19: invalid type
section [ 8] '.rela.plt': relocation 19: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 20: invalid type
section [ 8] '.rela.plt': relocation 20: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 21: invalid type
section [ 8] '.rela.plt': relocation 21: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 22: invalid type
section [ 8] '.rela.plt': relocation 22: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 23: invalid type
section [ 8] '.rela.plt': relocation 23: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 24: invalid type
section [ 8] '.rela.plt': relocation 24: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 25: invalid type
section [ 8] '.rela.plt': relocation 25: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 26: invalid type
section [ 8] '.rela.plt': relocation 26: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 27: invalid type
section [ 8] '.rela.plt': relocation 27: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 28: invalid type
section [ 8] '.rela.plt': relocation 28: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 29: invalid type
section [ 8] '.rela.plt': relocation 29: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 30: invalid type
section [ 8] '.rela.plt': relocation 30: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 31: invalid type
section [ 8] '.rela.plt': relocation 31: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 32: invalid type
section [ 8] '.rela.plt': relocation 32: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 33: invalid type
section [ 8] '.rela.plt': relocation 33: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 34: invalid type
section [ 8] '.rela.plt': relocation 34: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 35: invalid type
section [ 8] '.rela.plt': relocation 35: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 36: invalid type
section [ 8] '.rela.plt': relocation 36: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 37: invalid type
section [ 8] '.rela.plt': relocation 37: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 38: invalid type
section [ 8] '.rela.plt': relocation 38: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 39: invalid type
section [ 8] '.rela.plt': relocation 39: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 40: invalid type
section [ 8] '.rela.plt': relocation 40: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 41: invalid type
section [ 8] '.rela.plt': relocation 41: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 42: invalid type
section [ 8] '.rela.plt': relocation 42: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 43: invalid type
section [ 8] '.rela.plt': relocation 43: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 44: invalid type
section [ 8] '.rela.plt': relocation 44: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 45: invalid type
section [ 8] '.rela.plt': relocation 45: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 46: invalid type
section [ 8] '.rela.plt': relocation 46: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 47: invalid type
section [ 8] '.rela.plt': relocation 47: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 48: invalid type
section [ 8] '.rela.plt': relocation 48: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 49: invalid type
section [ 8] '.rela.plt': relocation 49: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 50: invalid type
section [ 8] '.rela.plt': relocation 50: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 51: invalid type
section [ 8] '.rela.plt': relocation 51: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 52: invalid type
section [ 8] '.rela.plt': relocation 52: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 53: invalid type
section [ 8] '.rela.plt': relocation 53: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 54: invalid type
section [ 8] '.rela.plt': relocation 54: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 55: invalid type
section [ 8] '.rela.plt': relocation 55: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 56: invalid type
section [ 8] '.rela.plt': relocation 56: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 57: invalid type
section [ 8] '.rela.plt': relocation 57: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 58: invalid type
section [ 8] '.rela.plt': relocation 58: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 59: invalid type
section [ 8] '.rela.plt': relocation 59: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 60: invalid type
section [ 8] '.rela.plt': relocation 60: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 61: invalid type
section [ 8] '.rela.plt': relocation 61: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 62: invalid type
section [ 8] '.rela.plt': relocation 62: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 63: invalid type
section [ 8] '.rela.plt': relocation 63: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 64: invalid type
section [ 8] '.rela.plt': relocation 64: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 65: invalid type
section [ 8] '.rela.plt': relocation 65: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 66: invalid type
section [ 8] '.rela.plt': relocation 66: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 67: invalid type
section [ 8] '.rela.plt': relocation 67: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 68: invalid type
section [ 8] '.rela.plt': relocation 68: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 69: invalid type
section [ 8] '.rela.plt': relocation 69: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 70: invalid type
section [ 8] '.rela.plt': relocation 70: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 71: invalid type
section [ 8] '.rela.plt': relocation 71: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 72: invalid type
section [ 8] '.rela.plt': relocation 72: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 73: invalid type
section [ 8] '.rela.plt': relocation 73: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 74: invalid type
section [ 8] '.rela.plt': relocation 74: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 75: invalid type
section [ 8] '.rela.plt': relocation 75: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 76: invalid type
section [ 8] '.rela.plt': relocation 76: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 77: invalid type
section [ 8] '.rela.plt': relocation 77: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 78: invalid type
section [ 8] '.rela.plt': relocation 78: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 79: invalid type
section [ 8] '.rela.plt': relocation 79: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 80: invalid type
section [ 8] '.rela.plt': relocation 80: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 81: invalid type
section [ 8] '.rela.plt': relocation 81: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 82: invalid type
section [ 8] '.rela.plt': relocation 82: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 83: invalid type
section [ 8] '.rela.plt': relocation 83: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 84: invalid type
section [ 8] '.rela.plt': relocation 84: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 85: invalid type
section [ 8] '.rela.plt': relocation 85: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 86: invalid type
section [ 8] '.rela.plt': relocation 86: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 87: invalid type
section [ 8] '.rela.plt': relocation 87: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 88: invalid type
section [ 8] '.rela.plt': relocation 88: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 89: invalid type
section [ 8] '.rela.plt': relocation 89: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 90: invalid type
section [ 8] '.rela.plt': relocation 90: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 91: invalid type
section [ 8] '.rela.plt': relocation 91: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 92: invalid type
section [ 8] '.rela.plt': relocation 92: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 93: invalid type
section [ 8] '.rela.plt': relocation 93: read-only section modified but text relocation flag not set
section [17] '.dynamic': entry 19: unknown tag
section [17] '.dynamic': entry 20: unknown tag
section [35] '.symtab': _GLOBAL_OFFSET_TABLE_ symbol refers to section [ 9] '.text'
*** failure in /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/addr2line
invalid machine flags: 0x300
section [ 7] '.rela.dyn': relocation 0: invalid type
section [ 7] '.rela.dyn': relocation 0: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1: invalid type
section [ 7] '.rela.dyn': relocation 1: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 2: invalid type
section [ 7] '.rela.dyn': relocation 2: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 3: invalid type
section [ 7] '.rela.dyn': relocation 3: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 4: invalid type
section [ 7] '.rela.dyn': relocation 4: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 5: invalid type
section [ 7] '.rela.dyn': relocation 5: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 6: invalid type
section [ 7] '.rela.dyn': relocation 6: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 7: invalid type
section [ 7] '.rela.dyn': relocation 7: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 8: invalid type
section [ 7] '.rela.dyn': relocation 8: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 9: invalid type
section [ 7] '.rela.dyn': relocation 9: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 10: invalid type
section [ 7] '.rela.dyn': relocation 10: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 11: invalid type
section [ 7] '.rela.dyn': relocation 11: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 12: invalid type
section [ 7] '.rela.dyn': relocation 12: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 13: invalid type
section [ 7] '.rela.dyn': relocation 13: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 0: invalid type
section [ 8] '.rela.plt': relocation 0: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 1: invalid type
section [ 8] '.rela.plt': relocation 1: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 2: invalid type
section [ 8] '.rela.plt': relocation 2: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 3: invalid type
section [ 8] '.rela.plt': relocation 3: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 4: invalid type
section [ 8] '.rela.plt': relocation 4: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 5: invalid type
section [ 8] '.rela.plt': relocation 5: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 6: invalid type
section [ 8] '.rela.plt': relocation 6: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 7: invalid type
section [ 8] '.rela.plt': relocation 7: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 8: invalid type
section [ 8] '.rela.plt': relocation 8: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 9: invalid type
section [ 8] '.rela.plt': relocation 9: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 10: invalid type
section [ 8] '.rela.plt': relocation 10: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 11: invalid type
section [ 8] '.rela.plt': relocation 11: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 12: invalid type
section [ 8] '.rela.plt': relocation 12: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 13: invalid type
section [ 8] '.rela.plt': relocation 13: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 14: invalid type
section [ 8] '.rela.plt': relocation 14: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 15: invalid type
section [ 8] '.rela.plt': relocation 15: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 16: invalid type
section [ 8] '.rela.plt': relocation 16: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 17: invalid type
section [ 8] '.rela.plt': relocation 17: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 18: invalid type
section [ 8] '.rela.plt': relocation 18: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 19: invalid type
section [ 8] '.rela.plt': relocation 19: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 20: invalid type
section [ 8] '.rela.plt': relocation 20: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 21: invalid type
section [ 8] '.rela.plt': relocation 21: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 22: invalid type
section [ 8] '.rela.plt': relocation 22: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 23: invalid type
section [ 8] '.rela.plt': relocation 23: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 24: invalid type
section [ 8] '.rela.plt': relocation 24: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 25: invalid type
section [ 8] '.rela.plt': relocation 25: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 26: invalid type
section [ 8] '.rela.plt': relocation 26: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 27: invalid type
section [ 8] '.rela.plt': relocation 27: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 28: invalid type
section [ 8] '.rela.plt': relocation 28: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 29: invalid type
section [ 8] '.rela.plt': relocation 29: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 30: invalid type
section [ 8] '.rela.plt': relocation 30: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 31: invalid type
section [ 8] '.rela.plt': relocation 31: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 32: invalid type
section [ 8] '.rela.plt': relocation 32: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 33: invalid type
section [ 8] '.rela.plt': relocation 33: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 34: invalid type
section [ 8] '.rela.plt': relocation 34: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 35: invalid type
section [ 8] '.rela.plt': relocation 35: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 36: invalid type
section [ 8] '.rela.plt': relocation 36: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 37: invalid type
section [ 8] '.rela.plt': relocation 37: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 38: invalid type
section [ 8] '.rela.plt': relocation 38: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 39: invalid type
section [ 8] '.rela.plt': relocation 39: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 40: invalid type
section [ 8] '.rela.plt': relocation 40: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 41: invalid type
section [ 8] '.rela.plt': relocation 41: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 42: invalid type
section [ 8] '.rela.plt': relocation 42: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 43: invalid type
section [ 8] '.rela.plt': relocation 43: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 44: invalid type
section [ 8] '.rela.plt': relocation 44: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 45: invalid type
section [ 8] '.rela.plt': relocation 45: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 46: invalid type
section [ 8] '.rela.plt': relocation 46: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 47: invalid type
section [ 8] '.rela.plt': relocation 47: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 48: invalid type
section [ 8] '.rela.plt': relocation 48: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 49: invalid type
section [ 8] '.rela.plt': relocation 49: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 50: invalid type
section [ 8] '.rela.plt': relocation 50: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 51: invalid type
section [ 8] '.rela.plt': relocation 51: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 52: invalid type
section [ 8] '.rela.plt': relocation 52: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 53: invalid type
section [ 8] '.rela.plt': relocation 53: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 54: invalid type
section [ 8] '.rela.plt': relocation 54: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 55: invalid type
section [ 8] '.rela.plt': relocation 55: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 56: invalid type
section [ 8] '.rela.plt': relocation 56: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 57: invalid type
section [ 8] '.rela.plt': relocation 57: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 58: invalid type
section [ 8] '.rela.plt': relocation 58: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 59: invalid type
section [ 8] '.rela.plt': relocation 59: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 60: invalid type
section [ 8] '.rela.plt': relocation 60: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 61: invalid type
section [ 8] '.rela.plt': relocation 61: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 62: invalid type
section [ 8] '.rela.plt': relocation 62: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 63: invalid type
section [ 8] '.rela.plt': relocation 63: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 64: invalid type
section [ 8] '.rela.plt': relocation 64: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 65: invalid type
section [ 8] '.rela.plt': relocation 65: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 66: invalid type
section [ 8] '.rela.plt': relocation 66: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 67: invalid type
section [ 8] '.rela.plt': relocation 67: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 68: invalid type
section [ 8] '.rela.plt': relocation 68: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 69: invalid type
section [ 8] '.rela.plt': relocation 69: read-only section modified but text relocation flag not set
section [18] '.dynamic': entry 19: unknown tag
section [18] '.dynamic': entry 20: unknown tag
section [36] '.symtab': _GLOBAL_OFFSET_TABLE_ symbol refers to section [ 9] '.text'
*** failure in /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elfcmp
invalid machine flags: 0x300
section [ 7] '.rela.dyn': relocation 0: invalid type
section [ 7] '.rela.dyn': relocation 0: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1: invalid type
section [ 7] '.rela.dyn': relocation 1: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 2: invalid type
section [ 7] '.rela.dyn': relocation 2: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 3: invalid type
section [ 7] '.rela.dyn': relocation 3: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 4: invalid type
section [ 7] '.rela.dyn': relocation 4: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 5: invalid type
section [ 7] '.rela.dyn': relocation 5: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 6: invalid type
section [ 7] '.rela.dyn': relocation 6: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 7: invalid type
section [ 7] '.rela.dyn': relocation 7: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 8: invalid type
section [ 7] '.rela.dyn': relocation 8: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 9: invalid type
section [ 7] '.rela.dyn': relocation 9: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 10: invalid type
section [ 7] '.rela.dyn': relocation 10: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 11: invalid type
section [ 7] '.rela.dyn': relocation 11: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 12: invalid type
section [ 7] '.rela.dyn': relocation 12: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 13: invalid type
section [ 7] '.rela.dyn': relocation 13: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 0: invalid type
section [ 8] '.rela.plt': relocation 0: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 1: invalid type
section [ 8] '.rela.plt': relocation 1: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 2: invalid type
section [ 8] '.rela.plt': relocation 2: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 3: invalid type
section [ 8] '.rela.plt': relocation 3: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 4: invalid type
section [ 8] '.rela.plt': relocation 4: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 5: invalid type
section [ 8] '.rela.plt': relocation 5: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 6: invalid type
section [ 8] '.rela.plt': relocation 6: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 7: invalid type
section [ 8] '.rela.plt': relocation 7: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 8: invalid type
section [ 8] '.rela.plt': relocation 8: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 9: invalid type
section [ 8] '.rela.plt': relocation 9: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 10: invalid type
section [ 8] '.rela.plt': relocation 10: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 11: invalid type
section [ 8] '.rela.plt': relocation 11: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 12: invalid type
section [ 8] '.rela.plt': relocation 12: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 13: invalid type
section [ 8] '.rela.plt': relocation 13: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 14: invalid type
section [ 8] '.rela.plt': relocation 14: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 15: invalid type
section [ 8] '.rela.plt': relocation 15: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 16: invalid type
section [ 8] '.rela.plt': relocation 16: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 17: invalid type
section [ 8] '.rela.plt': relocation 17: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 18: invalid type
section [ 8] '.rela.plt': relocation 18: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 19: invalid type
section [ 8] '.rela.plt': relocation 19: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 20: invalid type
section [ 8] '.rela.plt': relocation 20: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 21: invalid type
section [ 8] '.rela.plt': relocation 21: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 22: invalid type
section [ 8] '.rela.plt': relocation 22: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 23: invalid type
section [ 8] '.rela.plt': relocation 23: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 24: invalid type
section [ 8] '.rela.plt': relocation 24: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 25: invalid type
section [ 8] '.rela.plt': relocation 25: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 26: invalid type
section [ 8] '.rela.plt': relocation 26: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 27: invalid type
section [ 8] '.rela.plt': relocation 27: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 28: invalid type
section [ 8] '.rela.plt': relocation 28: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 29: invalid type
section [ 8] '.rela.plt': relocation 29: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 30: invalid type
section [ 8] '.rela.plt': relocation 30: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 31: invalid type
section [ 8] '.rela.plt': relocation 31: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 32: invalid type
section [ 8] '.rela.plt': relocation 32: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 33: invalid type
section [ 8] '.rela.plt': relocation 33: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 34: invalid type
section [ 8] '.rela.plt': relocation 34: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 35: invalid type
section [ 8] '.rela.plt': relocation 35: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 36: invalid type
section [ 8] '.rela.plt': relocation 36: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 37: invalid type
section [ 8] '.rela.plt': relocation 37: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 38: invalid type
section [ 8] '.rela.plt': relocation 38: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 39: invalid type
section [ 8] '.rela.plt': relocation 39: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 40: invalid type
section [ 8] '.rela.plt': relocation 40: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 41: invalid type
section [ 8] '.rela.plt': relocation 41: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 42: invalid type
section [ 8] '.rela.plt': relocation 42: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 43: invalid type
section [ 8] '.rela.plt': relocation 43: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 44: invalid type
section [ 8] '.rela.plt': relocation 44: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 45: invalid type
section [ 8] '.rela.plt': relocation 45: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 46: invalid type
section [ 8] '.rela.plt': relocation 46: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 47: invalid type
section [ 8] '.rela.plt': relocation 47: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 48: invalid type
section [ 8] '.rela.plt': relocation 48: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 49: invalid type
section [ 8] '.rela.plt': relocation 49: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 50: invalid type
section [ 8] '.rela.plt': relocation 50: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 51: invalid type
section [ 8] '.rela.plt': relocation 51: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 52: invalid type
section [ 8] '.rela.plt': relocation 52: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 53: invalid type
section [ 8] '.rela.plt': relocation 53: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 54: invalid type
section [ 8] '.rela.plt': relocation 54: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 55: invalid type
section [ 8] '.rela.plt': relocation 55: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 56: invalid type
section [ 8] '.rela.plt': relocation 56: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 57: invalid type
section [ 8] '.rela.plt': relocation 57: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 58: invalid type
section [ 8] '.rela.plt': relocation 58: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 59: invalid type
section [ 8] '.rela.plt': relocation 59: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 60: invalid type
section [ 8] '.rela.plt': relocation 60: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 61: invalid type
section [ 8] '.rela.plt': relocation 61: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 62: invalid type
section [ 8] '.rela.plt': relocation 62: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 63: invalid type
section [ 8] '.rela.plt': relocation 63: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 64: invalid type
section [ 8] '.rela.plt': relocation 64: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 65: invalid type
section [ 8] '.rela.plt': relocation 65: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 66: invalid type
section [ 8] '.rela.plt': relocation 66: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 67: invalid type
section [ 8] '.rela.plt': relocation 67: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 68: invalid type
section [ 8] '.rela.plt': relocation 68: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 69: invalid type
section [ 8] '.rela.plt': relocation 69: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 70: invalid type
section [ 8] '.rela.plt': relocation 70: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 71: invalid type
section [ 8] '.rela.plt': relocation 71: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 72: invalid type
section [ 8] '.rela.plt': relocation 72: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 73: invalid type
section [ 8] '.rela.plt': relocation 73: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 74: invalid type
section [ 8] '.rela.plt': relocation 74: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 75: invalid type
section [ 8] '.rela.plt': relocation 75: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 76: invalid type
section [ 8] '.rela.plt': relocation 76: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 77: invalid type
section [ 8] '.rela.plt': relocation 77: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 78: invalid type
section [ 8] '.rela.plt': relocation 78: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 79: invalid type
section [ 8] '.rela.plt': relocation 79: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 80: invalid type
section [ 8] '.rela.plt': relocation 80: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 81: invalid type
section [ 8] '.rela.plt': relocation 81: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 82: invalid type
section [ 8] '.rela.plt': relocation 82: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 83: invalid type
section [ 8] '.rela.plt': relocation 83: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 84: invalid type
section [ 8] '.rela.plt': relocation 84: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 85: invalid type
section [ 8] '.rela.plt': relocation 85: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 86: invalid type
section [ 8] '.rela.plt': relocation 86: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 87: invalid type
section [ 8] '.rela.plt': relocation 87: read-only section modified but text relocation flag not set
section [18] '.dynamic': entry 19: unknown tag
section [18] '.dynamic': entry 20: unknown tag
section [36] '.symtab': _GLOBAL_OFFSET_TABLE_ symbol refers to section [ 9] '.text'
*** failure in /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint
invalid machine flags: 0x300
section [ 7] '.rela.dyn': relocation 0: invalid type
section [ 7] '.rela.dyn': relocation 0: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1: invalid type
section [ 7] '.rela.dyn': relocation 1: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 2: invalid type
section [ 7] '.rela.dyn': relocation 2: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 3: invalid type
section [ 7] '.rela.dyn': relocation 3: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 4: invalid type
section [ 7] '.rela.dyn': relocation 4: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 5: invalid type
section [ 7] '.rela.dyn': relocation 5: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 6: invalid type
section [ 7] '.rela.dyn': relocation 6: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 7: invalid type
section [ 7] '.rela.dyn': relocation 7: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 8: invalid type
section [ 7] '.rela.dyn': relocation 8: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 9: invalid type
section [ 7] '.rela.dyn': relocation 9: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 10: invalid type
section [ 7] '.rela.dyn': relocation 10: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 11: invalid type
section [ 7] '.rela.dyn': relocation 11: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 12: invalid type
section [ 7] '.rela.dyn': relocation 12: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 13: invalid type
section [ 7] '.rela.dyn': relocation 13: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 14: invalid type
section [ 7] '.rela.dyn': relocation 14: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 15: invalid type
section [ 7] '.rela.dyn': relocation 15: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 0: invalid type
section [ 8] '.rela.plt': relocation 0: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 1: invalid type
section [ 8] '.rela.plt': relocation 1: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 2: invalid type
section [ 8] '.rela.plt': relocation 2: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 3: invalid type
section [ 8] '.rela.plt': relocation 3: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 4: invalid type
section [ 8] '.rela.plt': relocation 4: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 5: invalid type
section [ 8] '.rela.plt': relocation 5: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 6: invalid type
section [ 8] '.rela.plt': relocation 6: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 7: invalid type
section [ 8] '.rela.plt': relocation 7: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 8: invalid type
section [ 8] '.rela.plt': relocation 8: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 9: invalid type
section [ 8] '.rela.plt': relocation 9: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 10: invalid type
section [ 8] '.rela.plt': relocation 10: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 11: invalid type
section [ 8] '.rela.plt': relocation 11: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 12: invalid type
section [ 8] '.rela.plt': relocation 12: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 13: invalid type
section [ 8] '.rela.plt': relocation 13: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 14: invalid type
section [ 8] '.rela.plt': relocation 14: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 15: invalid type
section [ 8] '.rela.plt': relocation 15: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 16: invalid type
section [ 8] '.rela.plt': relocation 16: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 17: invalid type
section [ 8] '.rela.plt': relocation 17: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 18: invalid type
section [ 8] '.rela.plt': relocation 18: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 19: invalid type
section [ 8] '.rela.plt': relocation 19: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 20: invalid type
section [ 8] '.rela.plt': relocation 20: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 21: invalid type
section [ 8] '.rela.plt': relocation 21: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 22: invalid type
section [ 8] '.rela.plt': relocation 22: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 23: invalid type
section [ 8] '.rela.plt': relocation 23: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 24: invalid type
section [ 8] '.rela.plt': relocation 24: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 25: invalid type
section [ 8] '.rela.plt': relocation 25: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 26: invalid type
section [ 8] '.rela.plt': relocation 26: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 27: invalid type
section [ 8] '.rela.plt': relocation 27: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 28: invalid type
section [ 8] '.rela.plt': relocation 28: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 29: invalid type
section [ 8] '.rela.plt': relocation 29: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 30: invalid type
section [ 8] '.rela.plt': relocation 30: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 31: invalid type
section [ 8] '.rela.plt': relocation 31: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 32: invalid type
section [ 8] '.rela.plt': relocation 32: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 33: invalid type
section [ 8] '.rela.plt': relocation 33: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 34: invalid type
section [ 8] '.rela.plt': relocation 34: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 35: invalid type
section [ 8] '.rela.plt': relocation 35: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 36: invalid type
section [ 8] '.rela.plt': relocation 36: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 37: invalid type
section [ 8] '.rela.plt': relocation 37: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 38: invalid type
section [ 8] '.rela.plt': relocation 38: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 39: invalid type
section [ 8] '.rela.plt': relocation 39: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 40: invalid type
section [ 8] '.rela.plt': relocation 40: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 41: invalid type
section [ 8] '.rela.plt': relocation 41: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 42: invalid type
section [ 8] '.rela.plt': relocation 42: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 43: invalid type
section [ 8] '.rela.plt': relocation 43: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 44: invalid type
section [ 8] '.rela.plt': relocation 44: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 45: invalid type
section [ 8] '.rela.plt': relocation 45: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 46: invalid type
section [ 8] '.rela.plt': relocation 46: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 47: invalid type
section [ 8] '.rela.plt': relocation 47: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 48: invalid type
section [ 8] '.rela.plt': relocation 48: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 49: invalid type
section [ 8] '.rela.plt': relocation 49: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 50: invalid type
section [ 8] '.rela.plt': relocation 50: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 51: invalid type
section [ 8] '.rela.plt': relocation 51: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 52: invalid type
section [ 8] '.rela.plt': relocation 52: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 53: invalid type
section [ 8] '.rela.plt': relocation 53: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 54: invalid type
section [ 8] '.rela.plt': relocation 54: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 55: invalid type
section [ 8] '.rela.plt': relocation 55: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 56: invalid type
section [ 8] '.rela.plt': relocation 56: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 57: invalid type
section [ 8] '.rela.plt': relocation 57: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 58: invalid type
section [ 8] '.rela.plt': relocation 58: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 59: invalid type
section [ 8] '.rela.plt': relocation 59: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 60: invalid type
section [ 8] '.rela.plt': relocation 60: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 61: invalid type
section [ 8] '.rela.plt': relocation 61: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 62: invalid type
section [ 8] '.rela.plt': relocation 62: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 63: invalid type
section [ 8] '.rela.plt': relocation 63: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 64: invalid type
section [ 8] '.rela.plt': relocation 64: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 65: invalid type
section [ 8] '.rela.plt': relocation 65: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 66: invalid type
section [ 8] '.rela.plt': relocation 66: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 67: invalid type
section [ 8] '.rela.plt': relocation 67: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 68: invalid type
section [ 8] '.rela.plt': relocation 68: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 69: invalid type
section [ 8] '.rela.plt': relocation 69: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 70: invalid type
section [ 8] '.rela.plt': relocation 70: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 71: invalid type
section [ 8] '.rela.plt': relocation 71: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 72: invalid type
section [ 8] '.rela.plt': relocation 72: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 73: invalid type
section [ 8] '.rela.plt': relocation 73: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 74: invalid type
section [ 8] '.rela.plt': relocation 74: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 75: invalid type
section [ 8] '.rela.plt': relocation 75: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 76: invalid type
section [ 8] '.rela.plt': relocation 76: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 77: invalid type
section [ 8] '.rela.plt': relocation 77: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 78: invalid type
section [ 8] '.rela.plt': relocation 78: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 79: invalid type
section [ 8] '.rela.plt': relocation 79: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 80: invalid type
section [ 8] '.rela.plt': relocation 80: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 81: invalid type
section [ 8] '.rela.plt': relocation 81: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 82: invalid type
section [ 8] '.rela.plt': relocation 82: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 83: invalid type
section [ 8] '.rela.plt': relocation 83: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 84: invalid type
section [ 8] '.rela.plt': relocation 84: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 85: invalid type
section [ 8] '.rela.plt': relocation 85: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 86: invalid type
section [ 8] '.rela.plt': relocation 86: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 87: invalid type
section [ 8] '.rela.plt': relocation 87: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 88: invalid type
section [ 8] '.rela.plt': relocation 88: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 89: invalid type
section [ 8] '.rela.plt': relocation 89: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 90: invalid type
section [ 8] '.rela.plt': relocation 90: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 91: invalid type
section [ 8] '.rela.plt': relocation 91: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 92: invalid type
section [ 8] '.rela.plt': relocation 92: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 93: invalid type
section [ 8] '.rela.plt': relocation 93: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 94: invalid type
section [ 8] '.rela.plt': relocation 94: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 95: invalid type
section [ 8] '.rela.plt': relocation 95: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 96: invalid type
section [ 8] '.rela.plt': relocation 96: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 97: invalid type
section [ 8] '.rela.plt': relocation 97: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 98: invalid type
section [ 8] '.rela.plt': relocation 98: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 99: invalid type
section [ 8] '.rela.plt': relocation 99: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 100: invalid type
section [ 8] '.rela.plt': relocation 100: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 101: invalid type
section [ 8] '.rela.plt': relocation 101: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 102: invalid type
section [ 8] '.rela.plt': relocation 102: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 103: invalid type
section [ 8] '.rela.plt': relocation 103: read-only section modified but text relocation flag not set
section [17] '.dynamic': entry 20: unknown tag
section [17] '.dynamic': entry 21: unknown tag
section [35] '.symtab': _GLOBAL_OFFSET_TABLE_ symbol refers to section [ 9] '.text'
*** failure in /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/nm
invalid machine flags: 0x300
section [ 7] '.rela.dyn': relocation 0: invalid type
section [ 7] '.rela.dyn': relocation 0: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1: invalid type
section [ 7] '.rela.dyn': relocation 1: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 2: invalid type
section [ 7] '.rela.dyn': relocation 2: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 3: invalid type
section [ 7] '.rela.dyn': relocation 3: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 4: invalid type
section [ 7] '.rela.dyn': relocation 4: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 5: invalid type
section [ 7] '.rela.dyn': relocation 5: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 6: invalid type
section [ 7] '.rela.dyn': relocation 6: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 7: invalid type
section [ 7] '.rela.dyn': relocation 7: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 8: invalid type
section [ 7] '.rela.dyn': relocation 8: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 9: invalid type
section [ 7] '.rela.dyn': relocation 9: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 10: invalid type
section [ 7] '.rela.dyn': relocation 10: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 11: invalid type
section [ 7] '.rela.dyn': relocation 11: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 12: invalid type
section [ 7] '.rela.dyn': relocation 12: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 13: invalid type
section [ 7] '.rela.dyn': relocation 13: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 14: invalid type
section [ 7] '.rela.dyn': relocation 14: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 0: invalid type
section [ 8] '.rela.plt': relocation 0: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 1: invalid type
section [ 8] '.rela.plt': relocation 1: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 2: invalid type
section [ 8] '.rela.plt': relocation 2: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 3: invalid type
section [ 8] '.rela.plt': relocation 3: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 4: invalid type
section [ 8] '.rela.plt': relocation 4: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 5: invalid type
section [ 8] '.rela.plt': relocation 5: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 6: invalid type
section [ 8] '.rela.plt': relocation 6: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 7: invalid type
section [ 8] '.rela.plt': relocation 7: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 8: invalid type
section [ 8] '.rela.plt': relocation 8: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 9: invalid type
section [ 8] '.rela.plt': relocation 9: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 10: invalid type
section [ 8] '.rela.plt': relocation 10: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 11: invalid type
section [ 8] '.rela.plt': relocation 11: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 12: invalid type
section [ 8] '.rela.plt': relocation 12: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 13: invalid type
section [ 8] '.rela.plt': relocation 13: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 14: invalid type
section [ 8] '.rela.plt': relocation 14: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 15: invalid type
section [ 8] '.rela.plt': relocation 15: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 16: invalid type
section [ 8] '.rela.plt': relocation 16: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 17: invalid type
section [ 8] '.rela.plt': relocation 17: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 18: invalid type
section [ 8] '.rela.plt': relocation 18: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 19: invalid type
section [ 8] '.rela.plt': relocation 19: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 20: invalid type
section [ 8] '.rela.plt': relocation 20: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 21: invalid type
section [ 8] '.rela.plt': relocation 21: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 22: invalid type
section [ 8] '.rela.plt': relocation 22: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 23: invalid type
section [ 8] '.rela.plt': relocation 23: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 24: invalid type
section [ 8] '.rela.plt': relocation 24: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 25: invalid type
section [ 8] '.rela.plt': relocation 25: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 26: invalid type
section [ 8] '.rela.plt': relocation 26: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 27: invalid type
section [ 8] '.rela.plt': relocation 27: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 28: invalid type
section [ 8] '.rela.plt': relocation 28: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 29: invalid type
section [ 8] '.rela.plt': relocation 29: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 30: invalid type
section [ 8] '.rela.plt': relocation 30: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 31: invalid type
section [ 8] '.rela.plt': relocation 31: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 32: invalid type
section [ 8] '.rela.plt': relocation 32: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 33: invalid type
section [ 8] '.rela.plt': relocation 33: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 34: invalid type
section [ 8] '.rela.plt': relocation 34: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 35: invalid type
section [ 8] '.rela.plt': relocation 35: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 36: invalid type
section [ 8] '.rela.plt': relocation 36: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 37: invalid type
section [ 8] '.rela.plt': relocation 37: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 38: invalid type
section [ 8] '.rela.plt': relocation 38: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 39: invalid type
section [ 8] '.rela.plt': relocation 39: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 40: invalid type
section [ 8] '.rela.plt': relocation 40: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 41: invalid type
section [ 8] '.rela.plt': relocation 41: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 42: invalid type
section [ 8] '.rela.plt': relocation 42: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 43: invalid type
section [ 8] '.rela.plt': relocation 43: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 44: invalid type
section [ 8] '.rela.plt': relocation 44: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 45: invalid type
section [ 8] '.rela.plt': relocation 45: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 46: invalid type
section [ 8] '.rela.plt': relocation 46: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 47: invalid type
section [ 8] '.rela.plt': relocation 47: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 48: invalid type
section [ 8] '.rela.plt': relocation 48: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 49: invalid type
section [ 8] '.rela.plt': relocation 49: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 50: invalid type
section [ 8] '.rela.plt': relocation 50: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 51: invalid type
section [ 8] '.rela.plt': relocation 51: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 52: invalid type
section [ 8] '.rela.plt': relocation 52: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 53: invalid type
section [ 8] '.rela.plt': relocation 53: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 54: invalid type
section [ 8] '.rela.plt': relocation 54: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 55: invalid type
section [ 8] '.rela.plt': relocation 55: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 56: invalid type
section [ 8] '.rela.plt': relocation 56: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 57: invalid type
section [ 8] '.rela.plt': relocation 57: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 58: invalid type
section [ 8] '.rela.plt': relocation 58: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 59: invalid type
section [ 8] '.rela.plt': relocation 59: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 60: invalid type
section [ 8] '.rela.plt': relocation 60: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 61: invalid type
section [ 8] '.rela.plt': relocation 61: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 62: invalid type
section [ 8] '.rela.plt': relocation 62: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 63: invalid type
section [ 8] '.rela.plt': relocation 63: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 64: invalid type
section [ 8] '.rela.plt': relocation 64: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 65: invalid type
section [ 8] '.rela.plt': relocation 65: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 66: invalid type
section [ 8] '.rela.plt': relocation 66: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 67: invalid type
section [ 8] '.rela.plt': relocation 67: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 68: invalid type
section [ 8] '.rela.plt': relocation 68: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 69: invalid type
section [ 8] '.rela.plt': relocation 69: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 70: invalid type
section [ 8] '.rela.plt': relocation 70: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 71: invalid type
section [ 8] '.rela.plt': relocation 71: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 72: invalid type
section [ 8] '.rela.plt': relocation 72: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 73: invalid type
section [ 8] '.rela.plt': relocation 73: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 74: invalid type
section [ 8] '.rela.plt': relocation 74: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 75: invalid type
section [ 8] '.rela.plt': relocation 75: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 76: invalid type
section [ 8] '.rela.plt': relocation 76: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 77: invalid type
section [ 8] '.rela.plt': relocation 77: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 78: invalid type
section [ 8] '.rela.plt': relocation 78: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 79: invalid type
section [ 8] '.rela.plt': relocation 79: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 80: invalid type
section [ 8] '.rela.plt': relocation 80: read-only section modified but text relocation flag not set
section [18] '.dynamic': entry 20: unknown tag
section [18] '.dynamic': entry 21: unknown tag
section [36] '.symtab': _GLOBAL_OFFSET_TABLE_ symbol refers to section [ 9] '.text'
*** failure in /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/objdump
invalid machine flags: 0x300
section [ 7] '.rela.dyn': relocation 0: invalid type
section [ 7] '.rela.dyn': relocation 0: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1: invalid type
section [ 7] '.rela.dyn': relocation 1: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 2: invalid type
section [ 7] '.rela.dyn': relocation 2: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 3: invalid type
section [ 7] '.rela.dyn': relocation 3: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 4: invalid type
section [ 7] '.rela.dyn': relocation 4: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 5: invalid type
section [ 7] '.rela.dyn': relocation 5: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 6: invalid type
section [ 7] '.rela.dyn': relocation 6: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 7: invalid type
section [ 7] '.rela.dyn': relocation 7: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 8: invalid type
section [ 7] '.rela.dyn': relocation 8: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 9: invalid type
section [ 7] '.rela.dyn': relocation 9: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 10: invalid type
section [ 7] '.rela.dyn': relocation 10: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 11: invalid type
section [ 7] '.rela.dyn': relocation 11: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 12: invalid type
section [ 7] '.rela.dyn': relocation 12: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 13: invalid type
section [ 7] '.rela.dyn': relocation 13: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 14: invalid type
section [ 7] '.rela.dyn': relocation 14: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 15: invalid type
section [ 7] '.rela.dyn': relocation 15: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 16: invalid type
section [ 7] '.rela.dyn': relocation 16: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 17: invalid type
section [ 7] '.rela.dyn': relocation 17: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 18: invalid type
section [ 7] '.rela.dyn': relocation 18: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 19: invalid type
section [ 8] '.rela.plt': relocation 0: invalid type
section [ 8] '.rela.plt': relocation 0: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 1: invalid type
section [ 8] '.rela.plt': relocation 1: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 2: invalid type
section [ 8] '.rela.plt': relocation 2: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 3: invalid type
section [ 8] '.rela.plt': relocation 3: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 4: invalid type
section [ 8] '.rela.plt': relocation 4: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 5: invalid type
section [ 8] '.rela.plt': relocation 5: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 6: invalid type
section [ 8] '.rela.plt': relocation 6: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 7: invalid type
section [ 8] '.rela.plt': relocation 7: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 8: invalid type
section [ 8] '.rela.plt': relocation 8: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 9: invalid type
section [ 8] '.rela.plt': relocation 9: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 10: invalid type
section [ 8] '.rela.plt': relocation 10: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 11: invalid type
section [ 8] '.rela.plt': relocation 11: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 12: invalid type
section [ 8] '.rela.plt': relocation 12: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 13: invalid type
section [ 8] '.rela.plt': relocation 13: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 14: invalid type
section [ 8] '.rela.plt': relocation 14: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 15: invalid type
section [ 8] '.rela.plt': relocation 15: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 16: invalid type
section [ 8] '.rela.plt': relocation 16: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 17: invalid type
section [ 8] '.rela.plt': relocation 17: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 18: invalid type
section [ 8] '.rela.plt': relocation 18: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 19: invalid type
section [ 8] '.rela.plt': relocation 19: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 20: invalid type
section [ 8] '.rela.plt': relocation 20: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 21: invalid type
section [ 8] '.rela.plt': relocation 21: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 22: invalid type
section [ 8] '.rela.plt': relocation 22: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 23: invalid type
section [ 8] '.rela.plt': relocation 23: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 24: invalid type
section [ 8] '.rela.plt': relocation 24: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 25: invalid type
section [ 8] '.rela.plt': relocation 25: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 26: invalid type
section [ 8] '.rela.plt': relocation 26: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 27: invalid type
section [ 8] '.rela.plt': relocation 27: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 28: invalid type
section [ 8] '.rela.plt': relocation 28: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 29: invalid type
section [ 8] '.rela.plt': relocation 29: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 30: invalid type
section [ 8] '.rela.plt': relocation 30: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 31: invalid type
section [ 8] '.rela.plt': relocation 31: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 32: invalid type
section [ 8] '.rela.plt': relocation 32: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 33: invalid type
section [ 8] '.rela.plt': relocation 33: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 34: invalid type
section [ 8] '.rela.plt': relocation 34: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 35: invalid type
section [ 8] '.rela.plt': relocation 35: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 36: invalid type
section [ 8] '.rela.plt': relocation 36: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 37: invalid type
section [ 8] '.rela.plt': relocation 37: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 38: invalid type
section [ 8] '.rela.plt': relocation 38: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 39: invalid type
section [ 8] '.rela.plt': relocation 39: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 40: invalid type
section [ 8] '.rela.plt': relocation 40: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 41: invalid type
section [ 8] '.rela.plt': relocation 41: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 42: invalid type
section [ 8] '.rela.plt': relocation 42: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 43: invalid type
section [ 8] '.rela.plt': relocation 43: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 44: invalid type
section [ 8] '.rela.plt': relocation 44: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 45: invalid type
section [ 8] '.rela.plt': relocation 45: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 46: invalid type
section [ 8] '.rela.plt': relocation 46: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 47: invalid type
section [ 8] '.rela.plt': relocation 47: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 48: invalid type
section [ 8] '.rela.plt': relocation 48: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 49: invalid type
section [ 8] '.rela.plt': relocation 49: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 50: invalid type
section [ 8] '.rela.plt': relocation 50: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 51: invalid type
section [ 8] '.rela.plt': relocation 51: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 52: invalid type
section [ 8] '.rela.plt': relocation 52: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 53: invalid type
section [ 8] '.rela.plt': relocation 53: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 54: invalid type
section [ 8] '.rela.plt': relocation 54: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 55: invalid type
section [ 8] '.rela.plt': relocation 55: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 56: invalid type
section [ 8] '.rela.plt': relocation 56: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 57: invalid type
section [ 8] '.rela.plt': relocation 57: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 58: invalid type
section [ 8] '.rela.plt': relocation 58: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 59: invalid type
section [ 8] '.rela.plt': relocation 59: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 60: invalid type
section [ 8] '.rela.plt': relocation 60: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 61: invalid type
section [ 8] '.rela.plt': relocation 61: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 62: invalid type
section [ 8] '.rela.plt': relocation 62: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 63: invalid type
section [ 8] '.rela.plt': relocation 63: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 64: invalid type
section [ 8] '.rela.plt': relocation 64: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 65: invalid type
section [ 8] '.rela.plt': relocation 65: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 66: invalid type
section [ 8] '.rela.plt': relocation 66: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 67: invalid type
section [ 8] '.rela.plt': relocation 67: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 68: invalid type
section [ 8] '.rela.plt': relocation 68: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 69: invalid type
section [ 8] '.rela.plt': relocation 69: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 70: invalid type
section [ 8] '.rela.plt': relocation 70: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 71: invalid type
section [ 8] '.rela.plt': relocation 71: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 72: invalid type
section [ 8] '.rela.plt': relocation 72: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 73: invalid type
section [ 8] '.rela.plt': relocation 73: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 74: invalid type
section [ 8] '.rela.plt': relocation 74: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 75: invalid type
section [ 8] '.rela.plt': relocation 75: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 76: invalid type
section [ 8] '.rela.plt': relocation 76: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 77: invalid type
section [ 8] '.rela.plt': relocation 77: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 78: invalid type
section [ 8] '.rela.plt': relocation 78: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 79: invalid type
section [ 8] '.rela.plt': relocation 79: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 80: invalid type
section [ 8] '.rela.plt': relocation 80: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 81: invalid type
section [ 8] '.rela.plt': relocation 81: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 82: invalid type
section [ 8] '.rela.plt': relocation 82: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 83: invalid type
section [ 8] '.rela.plt': relocation 83: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 84: invalid type
section [ 8] '.rela.plt': relocation 84: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 85: invalid type
section [ 8] '.rela.plt': relocation 85: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 86: invalid type
section [ 8] '.rela.plt': relocation 86: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 87: invalid type
section [ 8] '.rela.plt': relocation 87: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 88: invalid type
section [ 8] '.rela.plt': relocation 88: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 89: invalid type
section [ 8] '.rela.plt': relocation 89: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 90: invalid type
section [ 8] '.rela.plt': relocation 90: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 91: invalid type
section [ 8] '.rela.plt': relocation 91: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 92: invalid type
section [ 8] '.rela.plt': relocation 92: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 93: invalid type
section [ 8] '.rela.plt': relocation 93: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 94: invalid type
section [ 8] '.rela.plt': relocation 94: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 95: invalid type
section [ 8] '.rela.plt': relocation 95: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 96: invalid type
section [ 8] '.rela.plt': relocation 96: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 97: invalid type
section [ 8] '.rela.plt': relocation 97: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 98: invalid type
section [ 8] '.rela.plt': relocation 98: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 99: invalid type
section [ 8] '.rela.plt': relocation 99: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 100: invalid type
section [ 8] '.rela.plt': relocation 100: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 101: invalid type
section [ 8] '.rela.plt': relocation 101: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 102: invalid type
section [ 8] '.rela.plt': relocation 102: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 103: invalid type
section [ 8] '.rela.plt': relocation 103: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 104: invalid type
section [ 8] '.rela.plt': relocation 104: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 105: invalid type
section [ 8] '.rela.plt': relocation 105: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 106: invalid type
section [ 8] '.rela.plt': relocation 106: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 107: invalid type
section [ 8] '.rela.plt': relocation 107: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 108: invalid type
section [ 8] '.rela.plt': relocation 108: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 109: invalid type
section [ 8] '.rela.plt': relocation 109: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 110: invalid type
section [ 8] '.rela.plt': relocation 110: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 111: invalid type
section [ 8] '.rela.plt': relocation 111: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 112: invalid type
section [ 8] '.rela.plt': relocation 112: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 113: invalid type
section [ 8] '.rela.plt': relocation 113: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 114: invalid type
section [ 8] '.rela.plt': relocation 114: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 115: invalid type
section [ 8] '.rela.plt': relocation 115: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 116: invalid type
section [ 8] '.rela.plt': relocation 116: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 117: invalid type
section [ 8] '.rela.plt': relocation 117: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 118: invalid type
section [ 8] '.rela.plt': relocation 118: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 119: invalid type
section [ 8] '.rela.plt': relocation 119: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 120: invalid type
section [ 8] '.rela.plt': relocation 120: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 121: invalid type
section [ 8] '.rela.plt': relocation 121: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 122: invalid type
section [ 8] '.rela.plt': relocation 122: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 123: invalid type
section [ 8] '.rela.plt': relocation 123: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 124: invalid type
section [ 8] '.rela.plt': relocation 124: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 125: invalid type
section [ 8] '.rela.plt': relocation 125: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 126: invalid type
section [ 8] '.rela.plt': relocation 126: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 127: invalid type
section [ 8] '.rela.plt': relocation 127: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 128: invalid type
section [ 8] '.rela.plt': relocation 128: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 129: invalid type
section [ 8] '.rela.plt': relocation 129: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 130: invalid type
section [ 8] '.rela.plt': relocation 130: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 131: invalid type
section [ 8] '.rela.plt': relocation 131: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 132: invalid type
section [ 8] '.rela.plt': relocation 132: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 133: invalid type
section [ 8] '.rela.plt': relocation 133: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 134: invalid type
section [ 8] '.rela.plt': relocation 134: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 135: invalid type
section [ 8] '.rela.plt': relocation 135: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 136: invalid type
section [ 8] '.rela.plt': relocation 136: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 137: invalid type
section [ 8] '.rela.plt': relocation 137: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 138: invalid type
section [ 8] '.rela.plt': relocation 138: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 139: invalid type
section [ 8] '.rela.plt': relocation 139: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 140: invalid type
section [ 8] '.rela.plt': relocation 140: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 141: invalid type
section [ 8] '.rela.plt': relocation 141: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 142: invalid type
section [ 8] '.rela.plt': relocation 142: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 143: invalid type
section [ 8] '.rela.plt': relocation 143: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 144: invalid type
section [ 8] '.rela.plt': relocation 144: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 145: invalid type
section [ 8] '.rela.plt': relocation 145: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 146: invalid type
section [ 8] '.rela.plt': relocation 146: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 147: invalid type
section [ 8] '.rela.plt': relocation 147: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 148: invalid type
section [ 8] '.rela.plt': relocation 148: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 149: invalid type
section [ 8] '.rela.plt': relocation 149: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 150: invalid type
section [ 8] '.rela.plt': relocation 150: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 151: invalid type
section [ 8] '.rela.plt': relocation 151: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 152: invalid type
section [ 8] '.rela.plt': relocation 152: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 153: invalid type
section [ 8] '.rela.plt': relocation 153: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 154: invalid type
section [ 8] '.rela.plt': relocation 154: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 155: invalid type
section [ 8] '.rela.plt': relocation 155: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 156: invalid type
section [ 8] '.rela.plt': relocation 156: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 157: invalid type
section [ 8] '.rela.plt': relocation 157: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 158: invalid type
section [ 8] '.rela.plt': relocation 158: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 159: invalid type
section [ 8] '.rela.plt': relocation 159: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 160: invalid type
section [ 8] '.rela.plt': relocation 160: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 161: invalid type
section [ 8] '.rela.plt': relocation 161: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 162: invalid type
section [ 8] '.rela.plt': relocation 162: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 163: invalid type
section [ 8] '.rela.plt': relocation 163: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 164: invalid type
section [ 8] '.rela.plt': relocation 164: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 165: invalid type
section [ 8] '.rela.plt': relocation 165: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 166: invalid type
section [ 8] '.rela.plt': relocation 166: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 167: invalid type
section [ 8] '.rela.plt': relocation 167: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 168: invalid type
section [ 8] '.rela.plt': relocation 168: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 169: invalid type
section [ 8] '.rela.plt': relocation 169: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 170: invalid type
section [ 8] '.rela.plt': relocation 170: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 171: invalid type
section [ 8] '.rela.plt': relocation 171: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 172: invalid type
section [ 8] '.rela.plt': relocation 172: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 173: invalid type
section [ 8] '.rela.plt': relocation 173: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 174: invalid type
section [ 8] '.rela.plt': relocation 174: read-only section modified but text relocation flag not set
section [18] '.dynamic': entry 20: unknown tag
section [18] '.dynamic': entry 21: unknown tag
section [36] '.symtab': _GLOBAL_OFFSET_TABLE_ symbol refers to section [ 9] '.text'
*** failure in /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/readelf
invalid machine flags: 0x300
section [ 2] '.rela.literal': relocation 0: invalid type
section [ 2] '.rela.literal': relocation 1: invalid type
section [ 2] '.rela.literal': relocation 2: invalid type
section [ 2] '.rela.literal': relocation 3: invalid type
section [ 2] '.rela.literal': relocation 4: invalid type
section [ 2] '.rela.literal': relocation 5: invalid type
section [ 2] '.rela.literal': relocation 6: invalid type
section [ 2] '.rela.literal': relocation 7: invalid type
section [ 2] '.rela.literal': relocation 8: invalid type
section [ 2] '.rela.literal': relocation 9: invalid type
section [ 2] '.rela.literal': relocation 10: invalid type
section [ 2] '.rela.literal': relocation 11: invalid type
section [ 2] '.rela.literal': relocation 12: invalid type
section [ 2] '.rela.literal': relocation 13: invalid type
section [ 2] '.rela.literal': relocation 14: invalid type
section [ 2] '.rela.literal': relocation 15: invalid type
section [ 2] '.rela.literal': relocation 16: invalid type
section [ 2] '.rela.literal': relocation 17: invalid type
section [ 2] '.rela.literal': relocation 18: invalid type
section [ 2] '.rela.literal': relocation 19: invalid type
section [ 2] '.rela.literal': relocation 20: invalid type
section [ 2] '.rela.literal': relocation 21: invalid type
section [ 2] '.rela.literal': relocation 22: invalid type
section [ 2] '.rela.literal': relocation 23: invalid type
section [ 2] '.rela.literal': relocation 24: invalid type
section [ 2] '.rela.literal': relocation 25: invalid type
section [ 2] '.rela.literal': relocation 26: invalid type
section [ 2] '.rela.literal': relocation 27: invalid type
section [ 2] '.rela.literal': relocation 28: invalid type
section [ 2] '.rela.literal': relocation 29: invalid type
section [ 2] '.rela.literal': relocation 30: invalid type
section [ 2] '.rela.literal': relocation 31: invalid type
section [ 2] '.rela.literal': relocation 32: invalid type
section [ 2] '.rela.literal': relocation 33: invalid type
section [ 2] '.rela.literal': relocation 34: invalid type
section [ 2] '.rela.literal': relocation 35: invalid type
section [ 2] '.rela.literal': relocation 36: invalid type
section [ 2] '.rela.literal': relocation 37: invalid type
section [ 2] '.rela.literal': relocation 38: invalid type
section [ 2] '.rela.literal': relocation 39: invalid type
section [ 2] '.rela.literal': relocation 40: invalid type
section [ 2] '.rela.literal': relocation 41: invalid type
section [ 2] '.rela.literal': relocation 42: invalid type
section [ 2] '.rela.literal': relocation 43: invalid type
section [ 2] '.rela.literal': relocation 44: invalid type
section [ 2] '.rela.literal': relocation 45: invalid type
section [ 2] '.rela.literal': relocation 46: invalid type
section [ 2] '.rela.literal': relocation 47: invalid type
section [ 2] '.rela.literal': relocation 48: invalid type
section [ 2] '.rela.literal': relocation 49: invalid type
section [ 2] '.rela.literal': relocation 50: invalid type
section [ 2] '.rela.literal': relocation 51: invalid type
section [ 2] '.rela.literal': relocation 52: invalid type
section [ 2] '.rela.literal': relocation 53: invalid type
section [ 2] '.rela.literal': relocation 54: invalid type
section [ 2] '.rela.literal': relocation 55: invalid type
section [ 2] '.rela.literal': relocation 56: invalid type
section [ 2] '.rela.literal': relocation 57: invalid type
section [ 2] '.rela.literal': relocation 58: invalid type
section [ 2] '.rela.literal': relocation 59: invalid type
section [ 2] '.rela.literal': relocation 60: invalid type
section [ 2] '.rela.literal': relocation 61: invalid type
section [ 2] '.rela.literal': relocation 62: invalid type
section [ 2] '.rela.literal': relocation 63: invalid type
section [ 2] '.rela.literal': relocation 64: invalid type
section [ 2] '.rela.literal': relocation 65: invalid type
section [ 2] '.rela.literal': relocation 66: invalid type
section [ 2] '.rela.literal': relocation 67: invalid type
section [ 2] '.rela.literal': relocation 68: invalid type
section [ 2] '.rela.literal': relocation 69: invalid type
section [ 2] '.rela.literal': relocation 70: invalid type
section [ 2] '.rela.literal': relocation 71: invalid type
section [ 2] '.rela.literal': relocation 72: invalid type
section [ 2] '.rela.literal': relocation 73: invalid type
section [ 2] '.rela.literal': relocation 74: invalid type
section [ 2] '.rela.literal': relocation 75: invalid type
section [ 2] '.rela.literal': relocation 76: invalid type
section [ 2] '.rela.literal': relocation 77: invalid type
section [ 2] '.rela.literal': relocation 78: invalid type
section [ 2] '.rela.literal': relocation 79: invalid type
section [ 2] '.rela.literal': relocation 80: invalid type
section [ 2] '.rela.literal': relocation 81: invalid type
section [ 2] '.rela.literal': relocation 82: invalid type
section [ 2] '.rela.literal': relocation 83: invalid type
section [ 2] '.rela.literal': relocation 84: invalid type
section [ 2] '.rela.literal': relocation 85: invalid type
section [ 2] '.rela.literal': relocation 86: invalid type
section [ 2] '.rela.literal': relocation 87: invalid type
section [ 2] '.rela.literal': relocation 88: invalid type
section [ 2] '.rela.literal': relocation 89: invalid type
section [ 2] '.rela.literal': relocation 90: invalid type
section [ 2] '.rela.literal': relocation 91: invalid type
section [ 2] '.rela.literal': relocation 92: invalid type
section [ 2] '.rela.literal': relocation 93: invalid type
section [ 2] '.rela.literal': relocation 94: invalid type
section [ 2] '.rela.literal': relocation 95: invalid type
section [ 2] '.rela.literal': relocation 96: invalid type
section [ 2] '.rela.literal': relocation 97: invalid type
section [ 2] '.rela.literal': relocation 98: invalid type
section [ 2] '.rela.literal': relocation 99: invalid type
section [ 2] '.rela.literal': relocation 100: invalid type
section [ 2] '.rela.literal': relocation 101: invalid type
section [ 2] '.rela.literal': relocation 102: invalid type
section [ 2] '.rela.literal': relocation 103: invalid type
section [ 2] '.rela.literal': relocation 104: invalid type
section [ 2] '.rela.literal': relocation 105: invalid type
section [ 2] '.rela.literal': relocation 106: invalid type
section [ 2] '.rela.literal': relocation 107: invalid type
section [ 2] '.rela.literal': relocation 108: invalid type
section [ 2] '.rela.literal': relocation 109: invalid type
section [ 2] '.rela.literal': relocation 110: invalid type
section [ 2] '.rela.literal': relocation 111: invalid type
section [ 2] '.rela.literal': relocation 112: invalid type
section [ 4] '.rela.literal.startup': relocation 0: invalid type
section [ 4] '.rela.literal.startup': relocation 1: invalid type
section [ 4] '.rela.literal.startup': relocation 2: invalid type
section [ 4] '.rela.literal.startup': relocation 3: invalid type
section [ 4] '.rela.literal.startup': relocation 4: invalid type
section [ 4] '.rela.literal.startup': relocation 5: invalid type
section [ 4] '.rela.literal.startup': relocation 6: invalid type
section [ 4] '.rela.literal.startup': relocation 7: invalid type
section [ 4] '.rela.literal.startup': relocation 8: invalid type
section [ 4] '.rela.literal.startup': relocation 9: invalid type
section [ 4] '.rela.literal.startup': relocation 10: invalid type
section [ 4] '.rela.literal.startup': relocation 11: invalid type
section [ 4] '.rela.literal.startup': relocation 12: invalid type
section [ 4] '.rela.literal.startup': relocation 13: invalid type
section [ 4] '.rela.literal.startup': relocation 14: invalid type
section [ 4] '.rela.literal.startup': relocation 15: invalid type
section [ 4] '.rela.literal.startup': relocation 16: invalid type
section [ 4] '.rela.literal.startup': relocation 17: invalid type
section [ 4] '.rela.literal.startup': relocation 18: invalid type
section [ 4] '.rela.literal.startup': relocation 19: invalid type
section [ 4] '.rela.literal.startup': relocation 20: invalid type
section [ 4] '.rela.literal.startup': relocation 21: invalid type
section [ 4] '.rela.literal.startup': relocation 22: invalid type
section [ 4] '.rela.literal.startup': relocation 23: invalid type
section [ 4] '.rela.literal.startup': relocation 24: invalid type
section [ 6] '.rela.text': relocation 0: invalid type
section [ 6] '.rela.text': relocation 1: invalid type
section [ 6] '.rela.text': relocation 2: invalid type
section [ 6] '.rela.text': relocation 3: invalid type
section [ 6] '.rela.text': relocation 4: invalid type
section [ 6] '.rela.text': relocation 5: invalid type
section [ 6] '.rela.text': relocation 6: invalid type
section [ 6] '.rela.text': relocation 7: invalid type
section [ 6] '.rela.text': relocation 8: invalid type
section [ 6] '.rela.text': relocation 9: invalid type
section [ 6] '.rela.text': relocation 10: invalid type
section [ 6] '.rela.text': relocation 11: invalid type
section [ 6] '.rela.text': relocation 12: invalid type
section [ 6] '.rela.text': relocation 13: invalid type
section [ 6] '.rela.text': relocation 14: invalid type
section [ 6] '.rela.text': relocation 15: invalid type
section [ 6] '.rela.text': relocation 16: invalid type
section [ 6] '.rela.text': relocation 17: invalid type
section [ 6] '.rela.text': relocation 18: invalid type
section [ 6] '.rela.text': relocation 19: invalid type
section [ 6] '.rela.text': relocation 20: invalid type
section [ 6] '.rela.text': relocation 21: invalid type
section [ 6] '.rela.text': relocation 22: invalid type
section [ 6] '.rela.text': relocation 23: invalid type
section [ 6] '.rela.text': relocation 24: invalid type
section [ 6] '.rela.text': relocation 25: invalid type
section [ 6] '.rela.text': relocation 26: invalid type
section [ 6] '.rela.text': relocation 27: invalid type
section [ 6] '.rela.text': relocation 28: invalid type
section [ 6] '.rela.text': relocation 29: invalid type
section [ 6] '.rela.text': relocation 30: invalid type
section [ 6] '.rela.text': relocation 31: invalid type
section [ 6] '.rela.text': relocation 32: invalid type
section [ 6] '.rela.text': relocation 33: invalid type
section [ 6] '.rela.text': relocation 34: invalid type
section [ 6] '.rela.text': relocation 35: invalid type
section [ 6] '.rela.text': relocation 36: invalid type
section [ 6] '.rela.text': relocation 37: invalid type
section [ 6] '.rela.text': relocation 38: invalid type
section [ 6] '.rela.text': relocation 39: invalid type
section [ 6] '.rela.text': relocation 40: invalid type
section [ 6] '.rela.text': relocation 41: invalid type
section [ 6] '.rela.text': relocation 42: invalid type
section [ 6] '.rela.text': relocation 43: invalid type
section [ 6] '.rela.text': relocation 44: invalid type
section [ 6] '.rela.text': relocation 45: invalid type
section [ 6] '.rela.text': relocation 46: invalid type
section [ 6] '.rela.text': relocation 47: invalid type
section [ 6] '.rela.text': relocation 48: invalid type
section [ 6] '.rela.text': relocation 49: invalid type
section [ 6] '.rela.text': relocation 50: invalid type
section [ 6] '.rela.text': relocation 51: invalid type
section [ 6] '.rela.text': relocation 52: invalid type
section [ 6] '.rela.text': relocation 53: invalid type
section [ 6] '.rela.text': relocation 54: invalid type
section [ 6] '.rela.text': relocation 55: invalid type
section [ 6] '.rela.text': relocation 56: invalid type
section [ 6] '.rela.text': relocation 57: invalid type
section [ 6] '.rela.text': relocation 58: invalid type
section [ 6] '.rela.text': relocation 59: invalid type
section [ 6] '.rela.text': relocation 60: invalid type
section [ 6] '.rela.text': relocation 61: invalid type
section [ 6] '.rela.text': relocation 62: invalid type
section [ 6] '.rela.text': relocation 63: invalid type
section [ 6] '.rela.text': relocation 64: invalid type
section [ 6] '.rela.text': relocation 65: invalid type
section [ 6] '.rela.text': relocation 66: invalid type
section [ 6] '.rela.text': relocation 67: invalid type
section [ 6] '.rela.text': relocation 68: invalid type
section [ 6] '.rela.text': relocation 69: invalid type
section [ 6] '.rela.text': relocation 70: invalid type
section [ 6] '.rela.text': relocation 71: invalid type
section [ 6] '.rela.text': relocation 72: invalid type
section [ 6] '.rela.text': relocation 73: invalid type
section [ 6] '.rela.text': relocation 74: invalid type
section [ 6] '.rela.text': relocation 75: invalid type
section [ 6] '.rela.text': relocation 76: invalid type
section [ 6] '.rela.text': relocation 77: invalid type
section [ 6] '.rela.text': relocation 78: invalid type
section [ 6] '.rela.text': relocation 79: invalid type
section [ 6] '.rela.text': relocation 80: invalid type
section [ 6] '.rela.text': relocation 81: invalid type
section [ 6] '.rela.text': relocation 82: invalid type
section [ 6] '.rela.text': relocation 83: invalid type
section [ 6] '.rela.text': relocation 84: invalid type
section [ 6] '.rela.text': relocation 85: invalid type
section [ 6] '.rela.text': relocation 86: invalid type
section [ 6] '.rela.text': relocation 87: invalid type
section [ 6] '.rela.text': relocation 88: invalid type
section [ 6] '.rela.text': relocation 89: invalid type
section [ 6] '.rela.text': relocation 90: invalid type
section [ 6] '.rela.text': relocation 91: invalid type
section [ 6] '.rela.text': relocation 92: invalid type
section [ 6] '.rela.text': relocation 93: invalid type
section [ 6] '.rela.text': relocation 94: invalid type
section [ 6] '.rela.text': relocation 95: invalid type
section [ 6] '.rela.text': relocation 96: invalid type
section [ 6] '.rela.text': relocation 97: invalid type
section [ 6] '.rela.text': relocation 98: invalid type
section [ 6] '.rela.text': relocation 99: invalid type
section [ 6] '.rela.text': relocation 100: invalid type
section [ 6] '.rela.text': relocation 101: invalid type
section [ 6] '.rela.text': relocation 102: invalid type
section [ 6] '.rela.text': relocation 103: invalid type
section [ 6] '.rela.text': relocation 104: invalid type
section [ 6] '.rela.text': relocation 105: invalid type
section [ 6] '.rela.text': relocation 106: invalid type
section [ 6] '.rela.text': relocation 107: invalid type
section [ 6] '.rela.text': relocation 108: invalid type
section [ 6] '.rela.text': relocation 109: invalid type
section [ 6] '.rela.text': relocation 110: invalid type
section [ 6] '.rela.text': relocation 111: invalid type
section [ 6] '.rela.text': relocation 112: invalid type
section [ 6] '.rela.text': relocation 113: invalid type
section [ 6] '.rela.text': relocation 114: invalid type
section [ 6] '.rela.text': relocation 115: invalid type
section [ 6] '.rela.text': relocation 116: invalid type
section [ 6] '.rela.text': relocation 117: invalid type
section [ 6] '.rela.text': relocation 118: invalid type
section [ 6] '.rela.text': relocation 119: invalid type
section [ 6] '.rela.text': relocation 120: invalid type
section [ 6] '.rela.text': relocation 121: invalid type
section [ 6] '.rela.text': relocation 122: invalid type
section [ 6] '.rela.text': relocation 123: invalid type
section [ 6] '.rela.text': relocation 124: invalid type
section [ 6] '.rela.text': relocation 125: invalid type
section [ 6] '.rela.text': relocation 126: invalid type
section [ 6] '.rela.text': relocation 127: invalid type
section [ 6] '.rela.text': relocation 128: invalid type
section [ 6] '.rela.text': relocation 129: invalid type
section [ 6] '.rela.text': relocation 130: invalid type
section [ 6] '.rela.text': relocation 131: invalid type
section [ 6] '.rela.text': relocation 132: invalid type
section [ 6] '.rela.text': relocation 133: invalid type
section [ 6] '.rela.text': relocation 134: invalid type
section [ 6] '.rela.text': relocation 135: invalid type
section [ 6] '.rela.text': relocation 136: invalid type
section [ 6] '.rela.text': relocation 137: invalid type
section [ 6] '.rela.text': relocation 138: invalid type
section [ 6] '.rela.text': relocation 139: invalid type
section [ 6] '.rela.text': relocation 140: invalid type
section [ 6] '.rela.text': relocation 141: invalid type
section [ 6] '.rela.text': relocation 142: invalid type
section [ 6] '.rela.text': relocation 143: invalid type
section [ 6] '.rela.text': relocation 144: invalid type
section [ 6] '.rela.text': relocation 145: invalid type
section [ 6] '.rela.text': relocation 146: invalid type
section [ 6] '.rela.text': relocation 147: invalid type
section [ 6] '.rela.text': relocation 148: invalid type
section [ 6] '.rela.text': relocation 149: invalid type
section [ 6] '.rela.text': relocation 150: invalid type
section [ 6] '.rela.text': relocation 151: invalid type
section [ 6] '.rela.text': relocation 152: invalid type
section [ 6] '.rela.text': relocation 153: invalid type
section [ 6] '.rela.text': relocation 154: invalid type
section [ 6] '.rela.text': relocation 155: invalid type
section [ 6] '.rela.text': relocation 156: invalid type
section [ 6] '.rela.text': relocation 157: invalid type
section [ 6] '.rela.text': relocation 158: invalid type
section [ 6] '.rela.text': relocation 159: invalid type
section [ 6] '.rela.text': relocation 160: invalid type
section [ 6] '.rela.text': relocation 161: invalid type
section [ 6] '.rela.text': relocation 162: invalid type
section [ 6] '.rela.text': relocation 163: invalid type
section [ 6] '.rela.text': relocation 164: invalid type
section [ 6] '.rela.text': relocation 165: invalid type
section [ 6] '.rela.text': relocation 166: invalid type
section [ 6] '.rela.text': relocation 167: invalid type
section [ 6] '.rela.text': relocation 168: invalid type
section [ 6] '.rela.text': relocation 169: invalid type
section [ 6] '.rela.text': relocation 170: invalid type
section [ 6] '.rela.text': relocation 171: invalid type
section [ 6] '.rela.text': relocation 172: invalid type
section [ 6] '.rela.text': relocation 173: invalid type
section [ 6] '.rela.text': relocation 174: invalid type
section [ 6] '.rela.text': relocation 175: invalid type
section [ 6] '.rela.text': relocation 176: invalid type
section [ 6] '.rela.text': relocation 177: invalid type
section [ 6] '.rela.text': relocation 178: invalid type
section [ 6] '.rela.text': relocation 179: invalid type
section [ 6] '.rela.text': relocation 180: invalid type
section [ 6] '.rela.text': relocation 181: invalid type
section [ 6] '.rela.text': relocation 182: invalid type
section [ 6] '.rela.text': relocation 183: invalid type
section [ 6] '.rela.text': relocation 184: invalid type
section [ 6] '.rela.text': relocation 185: invalid type
section [ 6] '.rela.text': relocation 186: invalid type
section [ 6] '.rela.text': relocation 187: invalid type
section [ 6] '.rela.text': relocation 188: invalid type
section [ 6] '.rela.text': relocation 189: invalid type
section [ 6] '.rela.text': relocation 190: invalid type
section [ 6] '.rela.text': relocation 191: invalid type
section [ 6] '.rela.text': relocation 192: invalid type
section [ 6] '.rela.text': relocation 193: invalid type
section [ 6] '.rela.text': relocation 194: invalid type
section [ 6] '.rela.text': relocation 195: invalid type
section [ 6] '.rela.text': relocation 196: invalid type
section [ 6] '.rela.text': relocation 197: invalid type
section [ 6] '.rela.text': relocation 198: invalid type
section [ 6] '.rela.text': relocation 199: invalid type
section [ 6] '.rela.text': relocation 200: invalid type
section [ 6] '.rela.text': relocation 201: invalid type
section [ 6] '.rela.text': relocation 202: invalid type
section [ 6] '.rela.text': relocation 203: invalid type
section [ 6] '.rela.text': relocation 204: invalid type
section [ 6] '.rela.text': relocation 205: invalid type
section [ 6] '.rela.text': relocation 206: invalid type
section [ 6] '.rela.text': relocation 207: invalid type
section [ 6] '.rela.text': relocation 208: invalid type
section [ 6] '.rela.text': relocation 209: invalid type
section [ 6] '.rela.text': relocation 210: invalid type
section [ 6] '.rela.text': relocation 211: invalid type
section [ 6] '.rela.text': relocation 212: invalid type
section [ 6] '.rela.text': relocation 213: invalid type
section [ 6] '.rela.text': relocation 214: invalid type
section [ 6] '.rela.text': relocation 215: invalid type
section [ 6] '.rela.text': relocation 216: invalid type
section [ 6] '.rela.text': relocation 217: invalid type
section [ 6] '.rela.text': relocation 218: invalid type
section [ 6] '.rela.text': relocation 219: invalid type
section [ 6] '.rela.text': relocation 220: invalid type
section [ 6] '.rela.text': relocation 221: invalid type
section [ 6] '.rela.text': relocation 222: invalid type
section [ 6] '.rela.text': relocation 223: invalid type
section [ 6] '.rela.text': relocation 224: invalid type
section [ 6] '.rela.text': relocation 225: invalid type
section [ 6] '.rela.text': relocation 226: invalid type
section [ 6] '.rela.text': relocation 227: invalid type
section [ 6] '.rela.text': relocation 228: invalid type
section [ 6] '.rela.text': relocation 229: invalid type
section [ 6] '.rela.text': relocation 230: invalid type
section [ 6] '.rela.text': relocation 231: invalid type
section [ 6] '.rela.text': relocation 232: invalid type
section [ 6] '.rela.text': relocation 233: invalid type
section [ 6] '.rela.text': relocation 234: invalid type
section [ 6] '.rela.text': relocation 235: invalid type
section [ 6] '.rela.text': relocation 236: invalid type
section [ 6] '.rela.text': relocation 237: invalid type
section [ 6] '.rela.text': relocation 238: invalid type
section [ 6] '.rela.text': relocation 239: invalid type
section [ 6] '.rela.text': relocation 240: invalid type
section [ 6] '.rela.text': relocation 241: invalid type
section [ 6] '.rela.text': relocation 242: invalid type
section [ 6] '.rela.text': relocation 243: invalid type
section [ 6] '.rela.text': relocation 244: invalid type
section [ 6] '.rela.text': relocation 245: invalid type
section [ 6] '.rela.text': relocation 246: invalid type
section [ 6] '.rela.text': relocation 247: invalid type
section [ 6] '.rela.text': relocation 248: invalid type
section [ 6] '.rela.text': relocation 249: invalid type
section [ 6] '.rela.text': relocation 250: invalid type
section [ 6] '.rela.text': relocation 251: invalid type
section [ 6] '.rela.text': relocation 252: invalid type
section [ 6] '.rela.text': relocation 253: invalid type
section [ 6] '.rela.text': relocation 254: invalid type
section [ 6] '.rela.text': relocation 255: invalid type
section [ 6] '.rela.text': relocation 256: invalid type
section [ 6] '.rela.text': relocation 257: invalid type
section [ 6] '.rela.text': relocation 258: invalid type
section [ 6] '.rela.text': relocation 259: invalid type
section [ 6] '.rela.text': relocation 260: invalid type
section [ 6] '.rela.text': relocation 261: invalid type
section [ 6] '.rela.text': relocation 262: invalid type
section [ 6] '.rela.text': relocation 263: invalid type
section [ 6] '.rela.text': relocation 264: invalid type
section [ 6] '.rela.text': relocation 265: invalid type
section [ 6] '.rela.text': relocation 266: invalid type
section [ 6] '.rela.text': relocation 267: invalid type
section [ 6] '.rela.text': relocation 268: invalid type
section [ 6] '.rela.text': relocation 269: invalid type
section [ 6] '.rela.text': relocation 270: invalid type
section [ 6] '.rela.text': relocation 271: invalid type
section [ 6] '.rela.text': relocation 272: invalid type
section [ 6] '.rela.text': relocation 273: invalid type
section [ 6] '.rela.text': relocation 274: invalid type
section [ 6] '.rela.text': relocation 275: invalid type
section [ 6] '.rela.text': relocation 276: invalid type
section [ 6] '.rela.text': relocation 277: invalid type
section [ 6] '.rela.text': relocation 278: invalid type
section [ 6] '.rela.text': relocation 279: invalid type
section [ 6] '.rela.text': relocation 280: invalid type
section [ 6] '.rela.text': relocation 281: invalid type
section [ 6] '.rela.text': relocation 282: invalid type
section [ 6] '.rela.text': relocation 283: invalid type
section [ 6] '.rela.text': relocation 284: invalid type
section [ 6] '.rela.text': relocation 285: invalid type
section [ 6] '.rela.text': relocation 286: invalid type
section [ 6] '.rela.text': relocation 287: invalid type
section [ 6] '.rela.text': relocation 288: invalid type
section [ 6] '.rela.text': relocation 289: invalid type
section [ 6] '.rela.text': relocation 290: invalid type
section [ 6] '.rela.text': relocation 291: invalid type
section [ 6] '.rela.text': relocation 292: invalid type
section [ 6] '.rela.text': relocation 293: invalid type
section [ 6] '.rela.text': relocation 294: invalid type
section [ 6] '.rela.text': relocation 295: invalid type
section [ 6] '.rela.text': relocation 296: invalid type
section [ 6] '.rela.text': relocation 297: invalid type
section [ 6] '.rela.text': relocation 298: invalid type
section [ 6] '.rela.text': relocation 299: invalid type
section [ 6] '.rela.text': relocation 300: invalid type
section [ 6] '.rela.text': relocation 301: invalid type
section [ 6] '.rela.text': relocation 302: invalid type
section [ 6] '.rela.text': relocation 303: invalid type
section [ 6] '.rela.text': relocation 304: invalid type
section [ 6] '.rela.text': relocation 305: invalid type
section [ 6] '.rela.text': relocation 306: invalid type
section [ 6] '.rela.text': relocation 307: invalid type
section [ 6] '.rela.text': relocation 308: invalid type
section [ 6] '.rela.text': relocation 309: invalid type
section [ 6] '.rela.text': relocation 310: invalid type
section [ 6] '.rela.text': relocation 311: invalid type
section [ 6] '.rela.text': relocation 312: invalid type
section [ 6] '.rela.text': relocation 313: invalid type
section [ 6] '.rela.text': relocation 314: invalid type
section [ 6] '.rela.text': relocation 315: invalid type
section [ 6] '.rela.text': relocation 316: invalid type
section [ 6] '.rela.text': relocation 317: invalid type
section [ 6] '.rela.text': relocation 318: invalid type
section [ 6] '.rela.text': relocation 319: invalid type
section [11] '.rela.text.startup': relocation 0: invalid type
section [11] '.rela.text.startup': relocation 1: invalid type
section [11] '.rela.text.startup': relocation 2: invalid type
section [11] '.rela.text.startup': relocation 3: invalid type
section [11] '.rela.text.startup': relocation 4: invalid type
section [11] '.rela.text.startup': relocation 5: invalid type
section [11] '.rela.text.startup': relocation 6: invalid type
section [11] '.rela.text.startup': relocation 7: invalid type
section [11] '.rela.text.startup': relocation 8: invalid type
section [11] '.rela.text.startup': relocation 9: invalid type
section [11] '.rela.text.startup': relocation 10: invalid type
section [11] '.rela.text.startup': relocation 11: invalid type
section [11] '.rela.text.startup': relocation 12: invalid type
section [11] '.rela.text.startup': relocation 13: invalid type
section [11] '.rela.text.startup': relocation 14: invalid type
section [11] '.rela.text.startup': relocation 15: invalid type
section [11] '.rela.text.startup': relocation 16: invalid type
section [11] '.rela.text.startup': relocation 17: invalid type
section [11] '.rela.text.startup': relocation 18: invalid type
section [11] '.rela.text.startup': relocation 19: invalid type
section [11] '.rela.text.startup': relocation 20: invalid type
section [11] '.rela.text.startup': relocation 21: invalid type
section [11] '.rela.text.startup': relocation 22: invalid type
section [11] '.rela.text.startup': relocation 23: invalid type
section [11] '.rela.text.startup': relocation 24: invalid type
section [11] '.rela.text.startup': relocation 25: invalid type
section [11] '.rela.text.startup': relocation 26: invalid type
section [11] '.rela.text.startup': relocation 27: invalid type
section [11] '.rela.text.startup': relocation 28: invalid type
section [11] '.rela.text.startup': relocation 29: invalid type
section [11] '.rela.text.startup': relocation 30: invalid type
section [11] '.rela.text.startup': relocation 31: invalid type
section [11] '.rela.text.startup': relocation 32: invalid type
section [11] '.rela.text.startup': relocation 33: invalid type
section [11] '.rela.text.startup': relocation 34: invalid type
section [14] '.rela.data.rel.local': relocation 0: invalid type
section [14] '.rela.data.rel.local': relocation 1: invalid type
section [14] '.rela.data.rel.local': relocation 2: invalid type
section [14] '.rela.data.rel.local': relocation 3: invalid type
section [16] '.rela.data.rel.ro.local': relocation 0: invalid type
section [16] '.rela.data.rel.ro.local': relocation 1: invalid type
section [16] '.rela.data.rel.ro.local': relocation 2: invalid type
section [16] '.rela.data.rel.ro.local': relocation 3: invalid type
section [16] '.rela.data.rel.ro.local': relocation 4: invalid type
section [16] '.rela.data.rel.ro.local': relocation 5: invalid type
section [16] '.rela.data.rel.ro.local': relocation 6: invalid type
section [16] '.rela.data.rel.ro.local': relocation 7: invalid type
section [16] '.rela.data.rel.ro.local': relocation 8: invalid type
section [16] '.rela.data.rel.ro.local': relocation 9: invalid type
section [16] '.rela.data.rel.ro.local': relocation 10: invalid type
section [16] '.rela.data.rel.ro.local': relocation 11: invalid type
section [16] '.rela.data.rel.ro.local': relocation 12: invalid type
section [16] '.rela.data.rel.ro.local': relocation 13: invalid type
section [16] '.rela.data.rel.ro.local': relocation 14: invalid type
section [16] '.rela.data.rel.ro.local': relocation 15: invalid type
section [16] '.rela.data.rel.ro.local': relocation 16: invalid type
section [16] '.rela.data.rel.ro.local': relocation 17: invalid type
section [16] '.rela.data.rel.ro.local': relocation 18: invalid type
section [18] '.rela.debug_frame': relocation 0: invalid type
section [18] '.rela.debug_frame': relocation 1: invalid type
section [18] '.rela.debug_frame': relocation 2: invalid type
section [18] '.rela.debug_frame': relocation 3: invalid type
section [18] '.rela.debug_frame': relocation 4: invalid type
section [18] '.rela.debug_frame': relocation 5: invalid type
section [18] '.rela.debug_frame': relocation 6: invalid type
section [18] '.rela.debug_frame': relocation 7: invalid type
section [18] '.rela.debug_frame': relocation 8: invalid type
section [18] '.rela.debug_frame': relocation 9: invalid type
section [18] '.rela.debug_frame': relocation 10: invalid type
section [18] '.rela.debug_frame': relocation 11: invalid type
section [18] '.rela.debug_frame': relocation 12: invalid type
section [18] '.rela.debug_frame': relocation 13: invalid type
section [18] '.rela.debug_frame': relocation 14: invalid type
section [18] '.rela.debug_frame': relocation 15: invalid type
section [18] '.rela.debug_frame': relocation 16: invalid type
section [18] '.rela.debug_frame': relocation 17: invalid type
section [18] '.rela.debug_frame': relocation 18: invalid type
section [18] '.rela.debug_frame': relocation 19: invalid type
section [18] '.rela.debug_frame': relocation 20: invalid type
section [18] '.rela.debug_frame': relocation 21: invalid type
section [18] '.rela.debug_frame': relocation 22: invalid type
section [18] '.rela.debug_frame': relocation 23: invalid type
section [18] '.rela.debug_frame': relocation 24: invalid type
section [18] '.rela.debug_frame': relocation 25: invalid type
section [18] '.rela.debug_frame': relocation 26: invalid type
section [18] '.rela.debug_frame': relocation 27: invalid type
section [18] '.rela.debug_frame': relocation 28: invalid type
section [18] '.rela.debug_frame': relocation 29: invalid type
section [18] '.rela.debug_frame': relocation 30: invalid type
section [20] '.rela.debug_info': relocation 0: invalid type
section [20] '.rela.debug_info': relocation 1: invalid type
section [20] '.rela.debug_info': relocation 2: invalid type
section [20] '.rela.debug_info': relocation 3: invalid type
section [20] '.rela.debug_info': relocation 4: invalid type
section [20] '.rela.debug_info': relocation 5: invalid type
section [20] '.rela.debug_info': relocation 6: invalid type
section [20] '.rela.debug_info': relocation 7: invalid type
section [20] '.rela.debug_info': relocation 8: invalid type
section [20] '.rela.debug_info': relocation 9: invalid type
section [20] '.rela.debug_info': relocation 10: invalid type
section [20] '.rela.debug_info': relocation 11: invalid type
section [20] '.rela.debug_info': relocation 12: invalid type
section [20] '.rela.debug_info': relocation 13: invalid type
section [20] '.rela.debug_info': relocation 14: invalid type
section [20] '.rela.debug_info': relocation 15: invalid type
section [20] '.rela.debug_info': relocation 16: invalid type
section [20] '.rela.debug_info': relocation 17: invalid type
section [20] '.rela.debug_info': relocation 18: invalid type
section [20] '.rela.debug_info': relocation 19: invalid type
section [20] '.rela.debug_info': relocation 20: invalid type
section [20] '.rela.debug_info': relocation 21: invalid type
section [20] '.rela.debug_info': relocation 22: invalid type
section [20] '.rela.debug_info': relocation 23: invalid type
section [20] '.rela.debug_info': relocation 24: invalid type
section [20] '.rela.debug_info': relocation 25: invalid type
section [20] '.rela.debug_info': relocation 26: invalid type
section [20] '.rela.debug_info': relocation 27: invalid type
section [20] '.rela.debug_info': relocation 28: invalid type
section [20] '.rela.debug_info': relocation 29: invalid type
section [20] '.rela.debug_info': relocation 30: invalid type
section [20] '.rela.debug_info': relocation 31: invalid type
section [20] '.rela.debug_info': relocation 32: invalid type
section [20] '.rela.debug_info': relocation 33: invalid type
section [20] '.rela.debug_info': relocation 34: invalid type
section [20] '.rela.debug_info': relocation 35: invalid type
section [20] '.rela.debug_info': relocation 36: invalid type
section [20] '.rela.debug_info': relocation 37: invalid type
section [20] '.rela.debug_info': relocation 38: invalid type
section [20] '.rela.debug_info': relocation 39: invalid type
section [20] '.rela.debug_info': relocation 40: invalid type
section [20] '.rela.debug_info': relocation 41: invalid type
section [20] '.rela.debug_info': relocation 42: invalid type
section [20] '.rela.debug_info': relocation 43: invalid type
section [20] '.rela.debug_info': relocation 44: invalid type
section [20] '.rela.debug_info': relocation 45: invalid type
section [20] '.rela.debug_info': relocation 46: invalid type
section [20] '.rela.debug_info': relocation 47: invalid type
section [20] '.rela.debug_info': relocation 48: invalid type
section [20] '.rela.debug_info': relocation 49: invalid type
section [20] '.rela.debug_info': relocation 50: invalid type
section [20] '.rela.debug_info': relocation 51: invalid type
section [20] '.rela.debug_info': relocation 52: invalid type
section [20] '.rela.debug_info': relocation 53: invalid type
section [20] '.rela.debug_info': relocation 54: invalid type
section [20] '.rela.debug_info': relocation 55: invalid type
section [20] '.rela.debug_info': relocation 56: invalid type
section [20] '.rela.debug_info': relocation 57: invalid type
section [20] '.rela.debug_info': relocation 58: invalid type
section [20] '.rela.debug_info': relocation 59: invalid type
section [20] '.rela.debug_info': relocation 60: invalid type
section [20] '.rela.debug_info': relocation 61: invalid type
section [20] '.rela.debug_info': relocation 62: invalid type
section [20] '.rela.debug_info': relocation 63: invalid type
section [20] '.rela.debug_info': relocation 64: invalid type
section [20] '.rela.debug_info': relocation 65: invalid type
section [20] '.rela.debug_info': relocation 66: invalid type
section [20] '.rela.debug_info': relocation 67: invalid type
section [20] '.rela.debug_info': relocation 68: invalid type
section [20] '.rela.debug_info': relocation 69: invalid type
section [20] '.rela.debug_info': relocation 70: invalid type
section [20] '.rela.debug_info': relocation 71: invalid type
section [20] '.rela.debug_info': relocation 72: invalid type
section [20] '.rela.debug_info': relocation 73: invalid type
section [20] '.rela.debug_info': relocation 74: invalid type
section [20] '.rela.debug_info': relocation 75: invalid type
section [20] '.rela.debug_info': relocation 76: invalid type
section [20] '.rela.debug_info': relocation 77: invalid type
section [20] '.rela.debug_info': relocation 78: invalid type
section [20] '.rela.debug_info': relocation 79: invalid type
section [20] '.rela.debug_info': relocation 80: invalid type
section [20] '.rela.debug_info': relocation 81: invalid type
section [20] '.rela.debug_info': relocation 82: invalid type
section [20] '.rela.debug_info': relocation 83: invalid type
section [20] '.rela.debug_info': relocation 84: invalid type
section [20] '.rela.debug_info': relocation 85: invalid type
section [20] '.rela.debug_info': relocation 86: invalid type
section [20] '.rela.debug_info': relocation 87: invalid type
section [20] '.rela.debug_info': relocation 88: invalid type
section [20] '.rela.debug_info': relocation 89: invalid type
section [20] '.rela.debug_info': relocation 90: invalid type
section [20] '.rela.debug_info': relocation 91: invalid type
section [20] '.rela.debug_info': relocation 92: invalid type
section [20] '.rela.debug_info': relocation 93: invalid type
section [20] '.rela.debug_info': relocation 94: invalid type
section [20] '.rela.debug_info': relocation 95: invalid type
section [20] '.rela.debug_info': relocation 96: invalid type
section [20] '.rela.debug_info': relocation 97: invalid type
section [20] '.rela.debug_info': relocation 98: invalid type
section [20] '.rela.debug_info': relocation 99: invalid type
section [20] '.rela.debug_info': relocation 100: invalid type
section [20] '.rela.debug_info': relocation 101: invalid type
section [20] '.rela.debug_info': relocation 102: invalid type
section [20] '.rela.debug_info': relocation 103: invalid type
section [20] '.rela.debug_info': relocation 104: invalid type
section [20] '.rela.debug_info': relocation 105: invalid type
section [20] '.rela.debug_info': relocation 106: invalid type
section [20] '.rela.debug_info': relocation 107: invalid type
section [20] '.rela.debug_info': relocation 108: invalid type
section [20] '.rela.debug_info': relocation 109: invalid type
section [20] '.rela.debug_info': relocation 110: invalid type
section [20] '.rela.debug_info': relocation 111: invalid type
section [20] '.rela.debug_info': relocation 112: invalid type
section [20] '.rela.debug_info': relocation 113: invalid type
section [20] '.rela.debug_info': relocation 114: invalid type
section [20] '.rela.debug_info': relocation 115: invalid type
section [20] '.rela.debug_info': relocation 116: invalid type
section [20] '.rela.debug_info': relocation 117: invalid type
section [20] '.rela.debug_info': relocation 118: invalid type
section [20] '.rela.debug_info': relocation 119: invalid type
section [20] '.rela.debug_info': relocation 120: invalid type
section [20] '.rela.debug_info': relocation 121: invalid type
section [20] '.rela.debug_info': relocation 122: invalid type
section [20] '.rela.debug_info': relocation 123: invalid type
section [20] '.rela.debug_info': relocation 124: invalid type
section [20] '.rela.debug_info': relocation 125: invalid type
section [20] '.rela.debug_info': relocation 126: invalid type
section [20] '.rela.debug_info': relocation 127: invalid type
section [20] '.rela.debug_info': relocation 128: invalid type
section [20] '.rela.debug_info': relocation 129: invalid type
section [20] '.rela.debug_info': relocation 130: invalid type
section [20] '.rela.debug_info': relocation 131: invalid type
section [20] '.rela.debug_info': relocation 132: invalid type
section [20] '.rela.debug_info': relocation 133: invalid type
section [20] '.rela.debug_info': relocation 134: invalid type
section [20] '.rela.debug_info': relocation 135: invalid type
section [20] '.rela.debug_info': relocation 136: invalid type
section [20] '.rela.debug_info': relocation 137: invalid type
section [20] '.rela.debug_info': relocation 138: invalid type
section [20] '.rela.debug_info': relocation 139: invalid type
section [20] '.rela.debug_info': relocation 140: invalid type
section [20] '.rela.debug_info': relocation 141: invalid type
section [20] '.rela.debug_info': relocation 142: invalid type
section [20] '.rela.debug_info': relocation 143: invalid type
section [20] '.rela.debug_info': relocation 144: invalid type
section [20] '.rela.debug_info': relocation 145: invalid type
section [20] '.rela.debug_info': relocation 146: invalid type
section [20] '.rela.debug_info': relocation 147: invalid type
section [20] '.rela.debug_info': relocation 148: invalid type
section [20] '.rela.debug_info': relocation 149: invalid type
section [20] '.rela.debug_info': relocation 150: invalid type
section [20] '.rela.debug_info': relocation 151: invalid type
section [20] '.rela.debug_info': relocation 152: invalid type
section [20] '.rela.debug_info': relocation 153: invalid type
section [20] '.rela.debug_info': relocation 154: invalid type
section [20] '.rela.debug_info': relocation 155: invalid type
section [20] '.rela.debug_info': relocation 156: invalid type
section [20] '.rela.debug_info': relocation 157: invalid type
section [20] '.rela.debug_info': relocation 158: invalid type
section [20] '.rela.debug_info': relocation 159: invalid type
section [20] '.rela.debug_info': relocation 160: invalid type
section [20] '.rela.debug_info': relocation 161: invalid type
section [20] '.rela.debug_info': relocation 162: invalid type
section [20] '.rela.debug_info': relocation 163: invalid type
section [20] '.rela.debug_info': relocation 164: invalid type
section [20] '.rela.debug_info': relocation 165: invalid type
section [20] '.rela.debug_info': relocation 166: invalid type
section [20] '.rela.debug_info': relocation 167: invalid type
section [20] '.rela.debug_info': relocation 168: invalid type
section [20] '.rela.debug_info': relocation 169: invalid type
section [20] '.rela.debug_info': relocation 170: invalid type
section [20] '.rela.debug_info': relocation 171: invalid type
section [20] '.rela.debug_info': relocation 172: invalid type
section [20] '.rela.debug_info': relocation 173: invalid type
section [20] '.rela.debug_info': relocation 174: invalid type
section [20] '.rela.debug_info': relocation 175: invalid type
section [20] '.rela.debug_info': relocation 176: invalid type
section [20] '.rela.debug_info': relocation 177: invalid type
section [20] '.rela.debug_info': relocation 178: invalid type
section [20] '.rela.debug_info': relocation 179: invalid type
section [20] '.rela.debug_info': relocation 180: invalid type
section [20] '.rela.debug_info': relocation 181: invalid type
section [20] '.rela.debug_info': relocation 182: invalid type
section [20] '.rela.debug_info': relocation 183: invalid type
section [20] '.rela.debug_info': relocation 184: invalid type
section [20] '.rela.debug_info': relocation 185: invalid type
section [20] '.rela.debug_info': relocation 186: invalid type
section [20] '.rela.debug_info': relocation 187: invalid type
section [20] '.rela.debug_info': relocation 188: invalid type
section [20] '.rela.debug_info': relocation 189: invalid type
section [20] '.rela.debug_info': relocation 190: invalid type
section [20] '.rela.debug_info': relocation 191: invalid type
section [20] '.rela.debug_info': relocation 192: invalid type
section [20] '.rela.debug_info': relocation 193: invalid type
section [20] '.rela.debug_info': relocation 194: invalid type
section [20] '.rela.debug_info': relocation 195: invalid type
section [20] '.rela.debug_info': relocation 196: invalid type
section [20] '.rela.debug_info': relocation 197: invalid type
section [20] '.rela.debug_info': relocation 198: invalid type
section [20] '.rela.debug_info': relocation 199: invalid type
section [20] '.rela.debug_info': relocation 200: invalid type
section [20] '.rela.debug_info': relocation 201: invalid type
section [20] '.rela.debug_info': relocation 202: invalid type
section [20] '.rela.debug_info': relocation 203: invalid type
section [20] '.rela.debug_info': relocation 204: invalid type
section [20] '.rela.debug_info': relocation 205: invalid type
section [20] '.rela.debug_info': relocation 206: invalid type
section [20] '.rela.debug_info': relocation 207: invalid type
section [20] '.rela.debug_info': relocation 208: invalid type
section [20] '.rela.debug_info': relocation 209: invalid type
section [20] '.rela.debug_info': relocation 210: invalid type
section [20] '.rela.debug_info': relocation 211: invalid type
section [20] '.rela.debug_info': relocation 212: invalid type
section [20] '.rela.debug_info': relocation 213: invalid type
section [20] '.rela.debug_info': relocation 214: invalid type
section [20] '.rela.debug_info': relocation 215: invalid type
section [20] '.rela.debug_info': relocation 216: invalid type
section [20] '.rela.debug_info': relocation 217: invalid type
section [20] '.rela.debug_info': relocation 218: invalid type
section [20] '.rela.debug_info': relocation 219: invalid type
section [20] '.rela.debug_info': relocation 220: invalid type
section [20] '.rela.debug_info': relocation 221: invalid type
section [20] '.rela.debug_info': relocation 222: invalid type
section [20] '.rela.debug_info': relocation 223: invalid type
section [20] '.rela.debug_info': relocation 224: invalid type
section [20] '.rela.debug_info': relocation 225: invalid type
section [20] '.rela.debug_info': relocation 226: invalid type
section [20] '.rela.debug_info': relocation 227: invalid type
section [20] '.rela.debug_info': relocation 228: invalid type
section [20] '.rela.debug_info': relocation 229: invalid type
section [20] '.rela.debug_info': relocation 230: invalid type
section [20] '.rela.debug_info': relocation 231: invalid type
section [20] '.rela.debug_info': relocation 232: invalid type
section [20] '.rela.debug_info': relocation 233: invalid type
section [20] '.rela.debug_info': relocation 234: invalid type
section [20] '.rela.debug_info': relocation 235: invalid type
section [20] '.rela.debug_info': relocation 236: invalid type
section [20] '.rela.debug_info': relocation 237: invalid type
section [20] '.rela.debug_info': relocation 238: invalid type
section [20] '.rela.debug_info': relocation 239: invalid type
section [20] '.rela.debug_info': relocation 240: invalid type
section [20] '.rela.debug_info': relocation 241: invalid type
section [20] '.rela.debug_info': relocation 242: invalid type
section [20] '.rela.debug_info': relocation 243: invalid type
section [20] '.rela.debug_info': relocation 244: invalid type
section [20] '.rela.debug_info': relocation 245: invalid type
section [20] '.rela.debug_info': relocation 246: invalid type
section [20] '.rela.debug_info': relocation 247: invalid type
section [20] '.rela.debug_info': relocation 248: invalid type
section [20] '.rela.debug_info': relocation 249: invalid type
section [20] '.rela.debug_info': relocation 250: invalid type
section [20] '.rela.debug_info': relocation 251: invalid type
section [20] '.rela.debug_info': relocation 252: invalid type
section [20] '.rela.debug_info': relocation 253: invalid type
section [20] '.rela.debug_info': relocation 254: invalid type
section [20] '.rela.debug_info': relocation 255: invalid type
section [20] '.rela.debug_info': relocation 256: invalid type
section [20] '.rela.debug_info': relocation 257: invalid type
section [20] '.rela.debug_info': relocation 258: invalid type
section [20] '.rela.debug_info': relocation 259: invalid type
section [20] '.rela.debug_info': relocation 260: invalid type
section [20] '.rela.debug_info': relocation 261: invalid type
section [20] '.rela.debug_info': relocation 262: invalid type
section [20] '.rela.debug_info': relocation 263: invalid type
section [20] '.rela.debug_info': relocation 264: invalid type
section [20] '.rela.debug_info': relocation 265: invalid type
section [20] '.rela.debug_info': relocation 266: invalid type
section [20] '.rela.debug_info': relocation 267: invalid type
section [20] '.rela.debug_info': relocation 268: invalid type
section [20] '.rela.debug_info': relocation 269: invalid type
section [20] '.rela.debug_info': relocation 270: invalid type
section [20] '.rela.debug_info': relocation 271: invalid type
section [20] '.rela.debug_info': relocation 272: invalid type
section [20] '.rela.debug_info': relocation 273: invalid type
section [20] '.rela.debug_info': relocation 274: invalid type
section [20] '.rela.debug_info': relocation 275: invalid type
section [20] '.rela.debug_info': relocation 276: invalid type
section [20] '.rela.debug_info': relocation 277: invalid type
section [20] '.rela.debug_info': relocation 278: invalid type
section [20] '.rela.debug_info': relocation 279: invalid type
section [20] '.rela.debug_info': relocation 280: invalid type
section [20] '.rela.debug_info': relocation 281: invalid type
section [20] '.rela.debug_info': relocation 282: invalid type
section [20] '.rela.debug_info': relocation 283: invalid type
section [20] '.rela.debug_info': relocation 284: invalid type
section [20] '.rela.debug_info': relocation 285: invalid type
section [20] '.rela.debug_info': relocation 286: invalid type
section [20] '.rela.debug_info': relocation 287: invalid type
section [20] '.rela.debug_info': relocation 288: invalid type
section [20] '.rela.debug_info': relocation 289: invalid type
section [20] '.rela.debug_info': relocation 290: invalid type
section [20] '.rela.debug_info': relocation 291: invalid type
section [20] '.rela.debug_info': relocation 292: invalid type
section [20] '.rela.debug_info': relocation 293: invalid type
section [20] '.rela.debug_info': relocation 294: invalid type
section [20] '.rela.debug_info': relocation 295: invalid type
section [20] '.rela.debug_info': relocation 296: invalid type
section [20] '.rela.debug_info': relocation 297: invalid type
section [20] '.rela.debug_info': relocation 298: invalid type
section [20] '.rela.debug_info': relocation 299: invalid type
section [20] '.rela.debug_info': relocation 300: invalid type
section [20] '.rela.debug_info': relocation 301: invalid type
section [20] '.rela.debug_info': relocation 302: invalid type
section [20] '.rela.debug_info': relocation 303: invalid type
section [20] '.rela.debug_info': relocation 304: invalid type
section [20] '.rela.debug_info': relocation 305: invalid type
section [20] '.rela.debug_info': relocation 306: invalid type
section [20] '.rela.debug_info': relocation 307: invalid type
section [20] '.rela.debug_info': relocation 308: invalid type
section [20] '.rela.debug_info': relocation 309: invalid type
section [20] '.rela.debug_info': relocation 310: invalid type
section [20] '.rela.debug_info': relocation 311: invalid type
section [20] '.rela.debug_info': relocation 312: invalid type
section [20] '.rela.debug_info': relocation 313: invalid type
section [20] '.rela.debug_info': relocation 314: invalid type
section [20] '.rela.debug_info': relocation 315: invalid type
section [20] '.rela.debug_info': relocation 316: invalid type
section [20] '.rela.debug_info': relocation 317: invalid type
section [20] '.rela.debug_info': relocation 318: invalid type
section [20] '.rela.debug_info': relocation 319: invalid type
section [20] '.rela.debug_info': relocation 320: invalid type
section [20] '.rela.debug_info': relocation 321: invalid type
section [20] '.rela.debug_info': relocation 322: invalid type
section [20] '.rela.debug_info': relocation 323: invalid type
section [20] '.rela.debug_info': relocation 324: invalid type
section [20] '.rela.debug_info': relocation 325: invalid type
section [20] '.rela.debug_info': relocation 326: invalid type
section [20] '.rela.debug_info': relocation 327: invalid type
section [20] '.rela.debug_info': relocation 328: invalid type
section [20] '.rela.debug_info': relocation 329: invalid type
section [20] '.rela.debug_info': relocation 330: invalid type
section [20] '.rela.debug_info': relocation 331: invalid type
section [20] '.rela.debug_info': relocation 332: invalid type
section [20] '.rela.debug_info': relocation 333: invalid type
section [20] '.rela.debug_info': relocation 334: invalid type
section [20] '.rela.debug_info': relocation 335: invalid type
section [20] '.rela.debug_info': relocation 336: invalid type
section [20] '.rela.debug_info': relocation 337: invalid type
section [20] '.rela.debug_info': relocation 338: invalid type
section [20] '.rela.debug_info': relocation 339: invalid type
section [20] '.rela.debug_info': relocation 340: invalid type
section [20] '.rela.debug_info': relocation 341: invalid type
section [20] '.rela.debug_info': relocation 342: invalid type
section [20] '.rela.debug_info': relocation 343: invalid type
section [20] '.rela.debug_info': relocation 344: invalid type
section [20] '.rela.debug_info': relocation 345: invalid type
section [20] '.rela.debug_info': relocation 346: invalid type
section [20] '.rela.debug_info': relocation 347: invalid type
section [20] '.rela.debug_info': relocation 348: invalid type
section [20] '.rela.debug_info': relocation 349: invalid type
section [20] '.rela.debug_info': relocation 350: invalid type
section [20] '.rela.debug_info': relocation 351: invalid type
section [20] '.rela.debug_info': relocation 352: invalid type
section [20] '.rela.debug_info': relocation 353: invalid type
section [20] '.rela.debug_info': relocation 354: invalid type
section [20] '.rela.debug_info': relocation 355: invalid type
section [20] '.rela.debug_info': relocation 356: invalid type
section [20] '.rela.debug_info': relocation 357: invalid type
section [20] '.rela.debug_info': relocation 358: invalid type
section [20] '.rela.debug_info': relocation 359: invalid type
section [20] '.rela.debug_info': relocation 360: invalid type
section [20] '.rela.debug_info': relocation 361: invalid type
section [20] '.rela.debug_info': relocation 362: invalid type
section [20] '.rela.debug_info': relocation 363: invalid type
section [20] '.rela.debug_info': relocation 364: invalid type
section [20] '.rela.debug_info': relocation 365: invalid type
section [20] '.rela.debug_info': relocation 366: invalid type
section [20] '.rela.debug_info': relocation 367: invalid type
section [20] '.rela.debug_info': relocation 368: invalid type
section [20] '.rela.debug_info': relocation 369: invalid type
section [20] '.rela.debug_info': relocation 370: invalid type
section [20] '.rela.debug_info': relocation 371: invalid type
section [20] '.rela.debug_info': relocation 372: invalid type
section [20] '.rela.debug_info': relocation 373: invalid type
section [20] '.rela.debug_info': relocation 374: invalid type
section [20] '.rela.debug_info': relocation 375: invalid type
section [20] '.rela.debug_info': relocation 376: invalid type
section [20] '.rela.debug_info': relocation 377: invalid type
section [20] '.rela.debug_info': relocation 378: invalid type
section [20] '.rela.debug_info': relocation 379: invalid type
section [20] '.rela.debug_info': relocation 380: invalid type
section [20] '.rela.debug_info': relocation 381: invalid type
section [20] '.rela.debug_info': relocation 382: invalid type
section [20] '.rela.debug_info': relocation 383: invalid type
section [20] '.rela.debug_info': relocation 384: invalid type
section [20] '.rela.debug_info': relocation 385: invalid type
section [20] '.rela.debug_info': relocation 386: invalid type
section [20] '.rela.debug_info': relocation 387: invalid type
section [20] '.rela.debug_info': relocation 388: invalid type
section [20] '.rela.debug_info': relocation 389: invalid type
section [20] '.rela.debug_info': relocation 390: invalid type
section [20] '.rela.debug_info': relocation 391: invalid type
section [20] '.rela.debug_info': relocation 392: invalid type
section [20] '.rela.debug_info': relocation 393: invalid type
section [20] '.rela.debug_info': relocation 394: invalid type
section [20] '.rela.debug_info': relocation 395: invalid type
section [20] '.rela.debug_info': relocation 396: invalid type
section [20] '.rela.debug_info': relocation 397: invalid type
section [20] '.rela.debug_info': relocation 398: invalid type
section [20] '.rela.debug_info': relocation 399: invalid type
section [20] '.rela.debug_info': relocation 400: invalid type
section [20] '.rela.debug_info': relocation 401: invalid type
section [20] '.rela.debug_info': relocation 402: invalid type
section [20] '.rela.debug_info': relocation 403: invalid type
section [20] '.rela.debug_info': relocation 404: invalid type
section [20] '.rela.debug_info': relocation 405: invalid type
section [20] '.rela.debug_info': relocation 406: invalid type
section [20] '.rela.debug_info': relocation 407: invalid type
section [20] '.rela.debug_info': relocation 408: invalid type
section [20] '.rela.debug_info': relocation 409: invalid type
section [20] '.rela.debug_info': relocation 410: invalid type
section [20] '.rela.debug_info': relocation 411: invalid type
section [20] '.rela.debug_info': relocation 412: invalid type
section [20] '.rela.debug_info': relocation 413: invalid type
section [20] '.rela.debug_info': relocation 414: invalid type
section [20] '.rela.debug_info': relocation 415: invalid type
section [20] '.rela.debug_info': relocation 416: invalid type
section [20] '.rela.debug_info': relocation 417: invalid type
section [20] '.rela.debug_info': relocation 418: invalid type
section [20] '.rela.debug_info': relocation 419: invalid type
section [20] '.rela.debug_info': relocation 420: invalid type
section [20] '.rela.debug_info': relocation 421: invalid type
section [20] '.rela.debug_info': relocation 422: invalid type
section [20] '.rela.debug_info': relocation 423: invalid type
section [20] '.rela.debug_info': relocation 424: invalid type
section [20] '.rela.debug_info': relocation 425: invalid type
section [20] '.rela.debug_info': relocation 426: invalid type
section [20] '.rela.debug_info': relocation 427: invalid type
section [20] '.rela.debug_info': relocation 428: invalid type
section [20] '.rela.debug_info': relocation 429: invalid type
section [20] '.rela.debug_info': relocation 430: invalid type
section [20] '.rela.debug_info': relocation 431: invalid type
section [20] '.rela.debug_info': relocation 432: invalid type
section [20] '.rela.debug_info': relocation 433: invalid type
section [20] '.rela.debug_info': relocation 434: invalid type
section [20] '.rela.debug_info': relocation 435: invalid type
section [20] '.rela.debug_info': relocation 436: invalid type
section [20] '.rela.debug_info': relocation 437: invalid type
section [20] '.rela.debug_info': relocation 438: invalid type
section [20] '.rela.debug_info': relocation 439: invalid type
section [20] '.rela.debug_info': relocation 440: invalid type
section [20] '.rela.debug_info': relocation 441: invalid type
section [20] '.rela.debug_info': relocation 442: invalid type
section [20] '.rela.debug_info': relocation 443: invalid type
section [20] '.rela.debug_info': relocation 444: invalid type
section [20] '.rela.debug_info': relocation 445: invalid type
section [20] '.rela.debug_info': relocation 446: invalid type
section [20] '.rela.debug_info': relocation 447: invalid type
section [20] '.rela.debug_info': relocation 448: invalid type
section [20] '.rela.debug_info': relocation 449: invalid type
section [20] '.rela.debug_info': relocation 450: invalid type
section [20] '.rela.debug_info': relocation 451: invalid type
section [20] '.rela.debug_info': relocation 452: invalid type
section [20] '.rela.debug_info': relocation 453: invalid type
section [20] '.rela.debug_info': relocation 454: invalid type
section [20] '.rela.debug_info': relocation 455: invalid type
section [20] '.rela.debug_info': relocation 456: invalid type
section [20] '.rela.debug_info': relocation 457: invalid type
section [20] '.rela.debug_info': relocation 458: invalid type
section [20] '.rela.debug_info': relocation 459: invalid type
section [20] '.rela.debug_info': relocation 460: invalid type
section [20] '.rela.debug_info': relocation 461: invalid type
section [20] '.rela.debug_info': relocation 462: invalid type
section [20] '.rela.debug_info': relocation 463: invalid type
section [20] '.rela.debug_info': relocation 464: invalid type
section [20] '.rela.debug_info': relocation 465: invalid type
section [20] '.rela.debug_info': relocation 466: invalid type
section [20] '.rela.debug_info': relocation 467: invalid type
section [20] '.rela.debug_info': relocation 468: invalid type
section [20] '.rela.debug_info': relocation 469: invalid type
section [20] '.rela.debug_info': relocation 470: invalid type
section [20] '.rela.debug_info': relocation 471: invalid type
section [20] '.rela.debug_info': relocation 472: invalid type
section [20] '.rela.debug_info': relocation 473: invalid type
section [20] '.rela.debug_info': relocation 474: invalid type
section [20] '.rela.debug_info': relocation 475: invalid type
section [20] '.rela.debug_info': relocation 476: invalid type
section [20] '.rela.debug_info': relocation 477: invalid type
section [20] '.rela.debug_info': relocation 478: invalid type
section [20] '.rela.debug_info': relocation 479: invalid type
section [20] '.rela.debug_info': relocation 480: invalid type
section [20] '.rela.debug_info': relocation 481: invalid type
section [20] '.rela.debug_info': relocation 482: invalid type
section [20] '.rela.debug_info': relocation 483: invalid type
section [20] '.rela.debug_info': relocation 484: invalid type
section [20] '.rela.debug_info': relocation 485: invalid type
section [20] '.rela.debug_info': relocation 486: invalid type
section [20] '.rela.debug_info': relocation 487: invalid type
section [20] '.rela.debug_info': relocation 488: invalid type
section [20] '.rela.debug_info': relocation 489: invalid type
section [20] '.rela.debug_info': relocation 490: invalid type
section [20] '.rela.debug_info': relocation 491: invalid type
section [20] '.rela.debug_info': relocation 492: invalid type
section [20] '.rela.debug_info': relocation 493: invalid type
section [20] '.rela.debug_info': relocation 494: invalid type
section [20] '.rela.debug_info': relocation 495: invalid type
section [20] '.rela.debug_info': relocation 496: invalid type
section [20] '.rela.debug_info': relocation 497: invalid type
section [20] '.rela.debug_info': relocation 498: invalid type
section [20] '.rela.debug_info': relocation 499: invalid type
section [20] '.rela.debug_info': relocation 500: invalid type
section [20] '.rela.debug_info': relocation 501: invalid type
section [20] '.rela.debug_info': relocation 502: invalid type
section [20] '.rela.debug_info': relocation 503: invalid type
section [20] '.rela.debug_info': relocation 504: invalid type
section [20] '.rela.debug_info': relocation 505: invalid type
section [20] '.rela.debug_info': relocation 506: invalid type
section [20] '.rela.debug_info': relocation 507: invalid type
section [20] '.rela.debug_info': relocation 508: invalid type
section [20] '.rela.debug_info': relocation 509: invalid type
section [20] '.rela.debug_info': relocation 510: invalid type
section [20] '.rela.debug_info': relocation 511: invalid type
section [20] '.rela.debug_info': relocation 512: invalid type
section [20] '.rela.debug_info': relocation 513: invalid type
section [20] '.rela.debug_info': relocation 514: invalid type
section [20] '.rela.debug_info': relocation 515: invalid type
section [20] '.rela.debug_info': relocation 516: invalid type
section [20] '.rela.debug_info': relocation 517: invalid type
section [20] '.rela.debug_info': relocation 518: invalid type
section [20] '.rela.debug_info': relocation 519: invalid type
section [20] '.rela.debug_info': relocation 520: invalid type
section [20] '.rela.debug_info': relocation 521: invalid type
section [20] '.rela.debug_info': relocation 522: invalid type
section [20] '.rela.debug_info': relocation 523: invalid type
section [20] '.rela.debug_info': relocation 524: invalid type
section [20] '.rela.debug_info': relocation 525: invalid type
section [20] '.rela.debug_info': relocation 526: invalid type
section [20] '.rela.debug_info': relocation 527: invalid type
section [20] '.rela.debug_info': relocation 528: invalid type
section [20] '.rela.debug_info': relocation 529: invalid type
section [20] '.rela.debug_info': relocation 530: invalid type
section [20] '.rela.debug_info': relocation 531: invalid type
section [20] '.rela.debug_info': relocation 532: invalid type
section [20] '.rela.debug_info': relocation 533: invalid type
section [20] '.rela.debug_info': relocation 534: invalid type
section [20] '.rela.debug_info': relocation 535: invalid type
section [20] '.rela.debug_info': relocation 536: invalid type
section [20] '.rela.debug_info': relocation 537: invalid type
section [20] '.rela.debug_info': relocation 538: invalid type
section [20] '.rela.debug_info': relocation 539: invalid type
section [20] '.rela.debug_info': relocation 540: invalid type
section [20] '.rela.debug_info': relocation 541: invalid type
section [20] '.rela.debug_info': relocation 542: invalid type
section [20] '.rela.debug_info': relocation 543: invalid type
section [20] '.rela.debug_info': relocation 544: invalid type
section [20] '.rela.debug_info': relocation 545: invalid type
section [20] '.rela.debug_info': relocation 546: invalid type
section [20] '.rela.debug_info': relocation 547: invalid type
section [20] '.rela.debug_info': relocation 548: invalid type
section [20] '.rela.debug_info': relocation 549: invalid type
section [20] '.rela.debug_info': relocation 550: invalid type
section [20] '.rela.debug_info': relocation 551: invalid type
section [20] '.rela.debug_info': relocation 552: invalid type
section [20] '.rela.debug_info': relocation 553: invalid type
section [20] '.rela.debug_info': relocation 554: invalid type
section [20] '.rela.debug_info': relocation 555: invalid type
section [20] '.rela.debug_info': relocation 556: invalid type
section [20] '.rela.debug_info': relocation 557: invalid type
section [20] '.rela.debug_info': relocation 558: invalid type
section [20] '.rela.debug_info': relocation 559: invalid type
section [20] '.rela.debug_info': relocation 560: invalid type
section [20] '.rela.debug_info': relocation 561: invalid type
section [20] '.rela.debug_info': relocation 562: invalid type
section [20] '.rela.debug_info': relocation 563: invalid type
section [20] '.rela.debug_info': relocation 564: invalid type
section [20] '.rela.debug_info': relocation 565: invalid type
section [20] '.rela.debug_info': relocation 566: invalid type
section [20] '.rela.debug_info': relocation 567: invalid type
section [20] '.rela.debug_info': relocation 568: invalid type
section [20] '.rela.debug_info': relocation 569: invalid type
section [20] '.rela.debug_info': relocation 570: invalid type
section [20] '.rela.debug_info': relocation 571: invalid type
section [20] '.rela.debug_info': relocation 572: invalid type
section [20] '.rela.debug_info': relocation 573: invalid type
section [20] '.rela.debug_info': relocation 574: invalid type
section [20] '.rela.debug_info': relocation 575: invalid type
section [20] '.rela.debug_info': relocation 576: invalid type
section [20] '.rela.debug_info': relocation 577: invalid type
section [20] '.rela.debug_info': relocation 578: invalid type
section [20] '.rela.debug_info': relocation 579: invalid type
section [20] '.rela.debug_info': relocation 580: invalid type
section [20] '.rela.debug_info': relocation 581: invalid type
section [20] '.rela.debug_info': relocation 582: invalid type
section [20] '.rela.debug_info': relocation 583: invalid type
section [20] '.rela.debug_info': relocation 584: invalid type
section [20] '.rela.debug_info': relocation 585: invalid type
section [20] '.rela.debug_info': relocation 586: invalid type
section [20] '.rela.debug_info': relocation 587: invalid type
section [20] '.rela.debug_info': relocation 588: invalid type
section [20] '.rela.debug_info': relocation 589: invalid type
section [20] '.rela.debug_info': relocation 590: invalid type
section [20] '.rela.debug_info': relocation 591: invalid type
section [20] '.rela.debug_info': relocation 592: invalid type
section [20] '.rela.debug_info': relocation 593: invalid type
section [20] '.rela.debug_info': relocation 594: invalid type
section [20] '.rela.debug_info': relocation 595: invalid type
section [20] '.rela.debug_info': relocation 596: invalid type
section [20] '.rela.debug_info': relocation 597: invalid type
section [20] '.rela.debug_info': relocation 598: invalid type
section [20] '.rela.debug_info': relocation 599: invalid type
section [20] '.rela.debug_info': relocation 600: invalid type
section [20] '.rela.debug_info': relocation 601: invalid type
section [20] '.rela.debug_info': relocation 602: invalid type
section [20] '.rela.debug_info': relocation 603: invalid type
section [20] '.rela.debug_info': relocation 604: invalid type
section [20] '.rela.debug_info': relocation 605: invalid type
section [20] '.rela.debug_info': relocation 606: invalid type
section [20] '.rela.debug_info': relocation 607: invalid type
section [20] '.rela.debug_info': relocation 608: invalid type
section [20] '.rela.debug_info': relocation 609: invalid type
section [20] '.rela.debug_info': relocation 610: invalid type
section [20] '.rela.debug_info': relocation 611: invalid type
section [20] '.rela.debug_info': relocation 612: invalid type
section [20] '.rela.debug_info': relocation 613: invalid type
section [20] '.rela.debug_info': relocation 614: invalid type
section [20] '.rela.debug_info': relocation 615: invalid type
section [20] '.rela.debug_info': relocation 616: invalid type
section [20] '.rela.debug_info': relocation 617: invalid type
section [20] '.rela.debug_info': relocation 618: invalid type
section [20] '.rela.debug_info': relocation 619: invalid type
section [20] '.rela.debug_info': relocation 620: invalid type
section [20] '.rela.debug_info': relocation 621: invalid type
section [20] '.rela.debug_info': relocation 622: invalid type
section [20] '.rela.debug_info': relocation 623: invalid type
section [20] '.rela.debug_info': relocation 624: invalid type
section [20] '.rela.debug_info': relocation 625: invalid type
section [20] '.rela.debug_info': relocation 626: invalid type
section [20] '.rela.debug_info': relocation 627: invalid type
section [20] '.rela.debug_info': relocation 628: invalid type
section [20] '.rela.debug_info': relocation 629: invalid type
section [20] '.rela.debug_info': relocation 630: invalid type
section [20] '.rela.debug_info': relocation 631: invalid type
section [20] '.rela.debug_info': relocation 632: invalid type
section [20] '.rela.debug_info': relocation 633: invalid type
section [20] '.rela.debug_info': relocation 634: invalid type
section [20] '.rela.debug_info': relocation 635: invalid type
section [20] '.rela.debug_info': relocation 636: invalid type
section [20] '.rela.debug_info': relocation 637: invalid type
section [20] '.rela.debug_info': relocation 638: invalid type
section [20] '.rela.debug_info': relocation 639: invalid type
section [20] '.rela.debug_info': relocation 640: invalid type
section [20] '.rela.debug_info': relocation 641: invalid type
section [20] '.rela.debug_info': relocation 642: invalid type
section [20] '.rela.debug_info': relocation 643: invalid type
section [20] '.rela.debug_info': relocation 644: invalid type
section [20] '.rela.debug_info': relocation 645: invalid type
section [20] '.rela.debug_info': relocation 646: invalid type
section [20] '.rela.debug_info': relocation 647: invalid type
section [20] '.rela.debug_info': relocation 648: invalid type
section [20] '.rela.debug_info': relocation 649: invalid type
section [20] '.rela.debug_info': relocation 650: invalid type
section [20] '.rela.debug_info': relocation 651: invalid type
section [20] '.rela.debug_info': relocation 652: invalid type
section [20] '.rela.debug_info': relocation 653: invalid type
section [20] '.rela.debug_info': relocation 654: invalid type
section [20] '.rela.debug_info': relocation 655: invalid type
section [20] '.rela.debug_info': relocation 656: invalid type
section [20] '.rela.debug_info': relocation 657: invalid type
section [20] '.rela.debug_info': relocation 658: invalid type
section [20] '.rela.debug_info': relocation 659: invalid type
section [20] '.rela.debug_info': relocation 660: invalid type
section [20] '.rela.debug_info': relocation 661: invalid type
section [20] '.rela.debug_info': relocation 662: invalid type
section [20] '.rela.debug_info': relocation 663: invalid type
section [20] '.rela.debug_info': relocation 664: invalid type
section [20] '.rela.debug_info': relocation 665: invalid type
section [20] '.rela.debug_info': relocation 666: invalid type
section [20] '.rela.debug_info': relocation 667: invalid type
section [23] '.rela.debug_loc': relocation 0: invalid type
section [23] '.rela.debug_loc': relocation 1: invalid type
section [23] '.rela.debug_loc': relocation 2: invalid type
section [23] '.rela.debug_loc': relocation 3: invalid type
section [23] '.rela.debug_loc': relocation 4: invalid type
section [23] '.rela.debug_loc': relocation 5: invalid type
section [23] '.rela.debug_loc': relocation 6: invalid type
section [23] '.rela.debug_loc': relocation 7: invalid type
section [23] '.rela.debug_loc': relocation 8: invalid type
section [23] '.rela.debug_loc': relocation 9: invalid type
section [23] '.rela.debug_loc': relocation 10: invalid type
section [23] '.rela.debug_loc': relocation 11: invalid type
section [23] '.rela.debug_loc': relocation 12: invalid type
section [23] '.rela.debug_loc': relocation 13: invalid type
section [23] '.rela.debug_loc': relocation 14: invalid type
section [23] '.rela.debug_loc': relocation 15: invalid type
section [23] '.rela.debug_loc': relocation 16: invalid type
section [23] '.rela.debug_loc': relocation 17: invalid type
section [23] '.rela.debug_loc': relocation 18: invalid type
section [23] '.rela.debug_loc': relocation 19: invalid type
section [23] '.rela.debug_loc': relocation 20: invalid type
section [23] '.rela.debug_loc': relocation 21: invalid type
section [23] '.rela.debug_loc': relocation 22: invalid type
section [23] '.rela.debug_loc': relocation 23: invalid type
section [23] '.rela.debug_loc': relocation 24: invalid type
section [23] '.rela.debug_loc': relocation 25: invalid type
section [23] '.rela.debug_loc': relocation 26: invalid type
section [23] '.rela.debug_loc': relocation 27: invalid type
section [23] '.rela.debug_loc': relocation 28: invalid type
section [23] '.rela.debug_loc': relocation 29: invalid type
section [23] '.rela.debug_loc': relocation 30: invalid type
section [23] '.rela.debug_loc': relocation 31: invalid type
section [23] '.rela.debug_loc': relocation 32: invalid type
section [23] '.rela.debug_loc': relocation 33: invalid type
section [23] '.rela.debug_loc': relocation 34: invalid type
section [23] '.rela.debug_loc': relocation 35: invalid type
section [23] '.rela.debug_loc': relocation 36: invalid type
section [23] '.rela.debug_loc': relocation 37: invalid type
section [23] '.rela.debug_loc': relocation 38: invalid type
section [23] '.rela.debug_loc': relocation 39: invalid type
section [23] '.rela.debug_loc': relocation 40: invalid type
section [23] '.rela.debug_loc': relocation 41: invalid type
section [23] '.rela.debug_loc': relocation 42: invalid type
section [23] '.rela.debug_loc': relocation 43: invalid type
section [23] '.rela.debug_loc': relocation 44: invalid type
section [23] '.rela.debug_loc': relocation 45: invalid type
section [23] '.rela.debug_loc': relocation 46: invalid type
section [23] '.rela.debug_loc': relocation 47: invalid type
section [23] '.rela.debug_loc': relocation 48: invalid type
section [23] '.rela.debug_loc': relocation 49: invalid type
section [23] '.rela.debug_loc': relocation 50: invalid type
section [23] '.rela.debug_loc': relocation 51: invalid type
section [23] '.rela.debug_loc': relocation 52: invalid type
section [23] '.rela.debug_loc': relocation 53: invalid type
section [23] '.rela.debug_loc': relocation 54: invalid type
section [23] '.rela.debug_loc': relocation 55: invalid type
section [23] '.rela.debug_loc': relocation 56: invalid type
section [23] '.rela.debug_loc': relocation 57: invalid type
section [23] '.rela.debug_loc': relocation 58: invalid type
section [23] '.rela.debug_loc': relocation 59: invalid type
section [23] '.rela.debug_loc': relocation 60: invalid type
section [23] '.rela.debug_loc': relocation 61: invalid type
section [23] '.rela.debug_loc': relocation 62: invalid type
section [23] '.rela.debug_loc': relocation 63: invalid type
section [23] '.rela.debug_loc': relocation 64: invalid type
section [23] '.rela.debug_loc': relocation 65: invalid type
section [23] '.rela.debug_loc': relocation 66: invalid type
section [23] '.rela.debug_loc': relocation 67: invalid type
section [23] '.rela.debug_loc': relocation 68: invalid type
section [23] '.rela.debug_loc': relocation 69: invalid type
section [23] '.rela.debug_loc': relocation 70: invalid type
section [23] '.rela.debug_loc': relocation 71: invalid type
section [23] '.rela.debug_loc': relocation 72: invalid type
section [23] '.rela.debug_loc': relocation 73: invalid type
section [23] '.rela.debug_loc': relocation 74: invalid type
section [23] '.rela.debug_loc': relocation 75: invalid type
section [23] '.rela.debug_loc': relocation 76: invalid type
section [23] '.rela.debug_loc': relocation 77: invalid type
section [23] '.rela.debug_loc': relocation 78: invalid type
section [23] '.rela.debug_loc': relocation 79: invalid type
section [23] '.rela.debug_loc': relocation 80: invalid type
section [23] '.rela.debug_loc': relocation 81: invalid type
section [23] '.rela.debug_loc': relocation 82: invalid type
section [23] '.rela.debug_loc': relocation 83: invalid type
section [23] '.rela.debug_loc': relocation 84: invalid type
section [23] '.rela.debug_loc': relocation 85: invalid type
section [23] '.rela.debug_loc': relocation 86: invalid type
section [23] '.rela.debug_loc': relocation 87: invalid type
section [23] '.rela.debug_loc': relocation 88: invalid type
section [23] '.rela.debug_loc': relocation 89: invalid type
section [23] '.rela.debug_loc': relocation 90: invalid type
section [23] '.rela.debug_loc': relocation 91: invalid type
section [23] '.rela.debug_loc': relocation 92: invalid type
section [23] '.rela.debug_loc': relocation 93: invalid type
section [23] '.rela.debug_loc': relocation 94: invalid type
section [23] '.rela.debug_loc': relocation 95: invalid type
section [23] '.rela.debug_loc': relocation 96: invalid type
section [23] '.rela.debug_loc': relocation 97: invalid type
section [23] '.rela.debug_loc': relocation 98: invalid type
section [23] '.rela.debug_loc': relocation 99: invalid type
section [23] '.rela.debug_loc': relocation 100: invalid type
section [23] '.rela.debug_loc': relocation 101: invalid type
section [23] '.rela.debug_loc': relocation 102: invalid type
section [23] '.rela.debug_loc': relocation 103: invalid type
section [23] '.rela.debug_loc': relocation 104: invalid type
section [23] '.rela.debug_loc': relocation 105: invalid type
section [23] '.rela.debug_loc': relocation 106: invalid type
section [23] '.rela.debug_loc': relocation 107: invalid type
section [23] '.rela.debug_loc': relocation 108: invalid type
section [23] '.rela.debug_loc': relocation 109: invalid type
section [23] '.rela.debug_loc': relocation 110: invalid type
section [23] '.rela.debug_loc': relocation 111: invalid type
section [23] '.rela.debug_loc': relocation 112: invalid type
section [23] '.rela.debug_loc': relocation 113: invalid type
section [23] '.rela.debug_loc': relocation 114: invalid type
section [23] '.rela.debug_loc': relocation 115: invalid type
section [23] '.rela.debug_loc': relocation 116: invalid type
section [23] '.rela.debug_loc': relocation 117: invalid type
section [23] '.rela.debug_loc': relocation 118: invalid type
section [23] '.rela.debug_loc': relocation 119: invalid type
section [23] '.rela.debug_loc': relocation 120: invalid type
section [23] '.rela.debug_loc': relocation 121: invalid type
section [23] '.rela.debug_loc': relocation 122: invalid type
section [23] '.rela.debug_loc': relocation 123: invalid type
section [23] '.rela.debug_loc': relocation 124: invalid type
section [23] '.rela.debug_loc': relocation 125: invalid type
section [23] '.rela.debug_loc': relocation 126: invalid type
section [23] '.rela.debug_loc': relocation 127: invalid type
section [23] '.rela.debug_loc': relocation 128: invalid type
section [23] '.rela.debug_loc': relocation 129: invalid type
section [23] '.rela.debug_loc': relocation 130: invalid type
section [23] '.rela.debug_loc': relocation 131: invalid type
section [23] '.rela.debug_loc': relocation 132: invalid type
section [23] '.rela.debug_loc': relocation 133: invalid type
section [23] '.rela.debug_loc': relocation 134: invalid type
section [23] '.rela.debug_loc': relocation 135: invalid type
section [23] '.rela.debug_loc': relocation 136: invalid type
section [23] '.rela.debug_loc': relocation 137: invalid type
section [23] '.rela.debug_loc': relocation 138: invalid type
section [23] '.rela.debug_loc': relocation 139: invalid type
section [23] '.rela.debug_loc': relocation 140: invalid type
section [23] '.rela.debug_loc': relocation 141: invalid type
section [23] '.rela.debug_loc': relocation 142: invalid type
section [23] '.rela.debug_loc': relocation 143: invalid type
section [23] '.rela.debug_loc': relocation 144: invalid type
section [23] '.rela.debug_loc': relocation 145: invalid type
section [23] '.rela.debug_loc': relocation 146: invalid type
section [23] '.rela.debug_loc': relocation 147: invalid type
section [23] '.rela.debug_loc': relocation 148: invalid type
section [23] '.rela.debug_loc': relocation 149: invalid type
section [23] '.rela.debug_loc': relocation 150: invalid type
section [23] '.rela.debug_loc': relocation 151: invalid type
section [23] '.rela.debug_loc': relocation 152: invalid type
section [23] '.rela.debug_loc': relocation 153: invalid type
section [23] '.rela.debug_loc': relocation 154: invalid type
section [23] '.rela.debug_loc': relocation 155: invalid type
section [23] '.rela.debug_loc': relocation 156: invalid type
section [23] '.rela.debug_loc': relocation 157: invalid type
section [23] '.rela.debug_loc': relocation 158: invalid type
section [23] '.rela.debug_loc': relocation 159: invalid type
section [23] '.rela.debug_loc': relocation 160: invalid type
section [23] '.rela.debug_loc': relocation 161: invalid type
section [23] '.rela.debug_loc': relocation 162: invalid type
section [23] '.rela.debug_loc': relocation 163: invalid type
section [23] '.rela.debug_loc': relocation 164: invalid type
section [23] '.rela.debug_loc': relocation 165: invalid type
section [23] '.rela.debug_loc': relocation 166: invalid type
section [23] '.rela.debug_loc': relocation 167: invalid type
section [23] '.rela.debug_loc': relocation 168: invalid type
section [23] '.rela.debug_loc': relocation 169: invalid type
section [23] '.rela.debug_loc': relocation 170: invalid type
section [23] '.rela.debug_loc': relocation 171: invalid type
section [23] '.rela.debug_loc': relocation 172: invalid type
section [23] '.rela.debug_loc': relocation 173: invalid type
section [23] '.rela.debug_loc': relocation 174: invalid type
section [23] '.rela.debug_loc': relocation 175: invalid type
section [23] '.rela.debug_loc': relocation 176: invalid type
section [23] '.rela.debug_loc': relocation 177: invalid type
section [23] '.rela.debug_loc': relocation 178: invalid type
section [23] '.rela.debug_loc': relocation 179: invalid type
section [23] '.rela.debug_loc': relocation 180: invalid type
section [23] '.rela.debug_loc': relocation 181: invalid type
section [23] '.rela.debug_loc': relocation 182: invalid type
section [23] '.rela.debug_loc': relocation 183: invalid type
section [23] '.rela.debug_loc': relocation 184: invalid type
section [23] '.rela.debug_loc': relocation 185: invalid type
section [23] '.rela.debug_loc': relocation 186: invalid type
section [23] '.rela.debug_loc': relocation 187: invalid type
section [23] '.rela.debug_loc': relocation 188: invalid type
section [23] '.rela.debug_loc': relocation 189: invalid type
section [23] '.rela.debug_loc': relocation 190: invalid type
section [23] '.rela.debug_loc': relocation 191: invalid type
section [23] '.rela.debug_loc': relocation 192: invalid type
section [23] '.rela.debug_loc': relocation 193: invalid type
section [23] '.rela.debug_loc': relocation 194: invalid type
section [23] '.rela.debug_loc': relocation 195: invalid type
section [23] '.rela.debug_loc': relocation 196: invalid type
section [23] '.rela.debug_loc': relocation 197: invalid type
section [23] '.rela.debug_loc': relocation 198: invalid type
section [23] '.rela.debug_loc': relocation 199: invalid type
section [23] '.rela.debug_loc': relocation 200: invalid type
section [23] '.rela.debug_loc': relocation 201: invalid type
section [23] '.rela.debug_loc': relocation 202: invalid type
section [23] '.rela.debug_loc': relocation 203: invalid type
section [23] '.rela.debug_loc': relocation 204: invalid type
section [23] '.rela.debug_loc': relocation 205: invalid type
section [23] '.rela.debug_loc': relocation 206: invalid type
section [23] '.rela.debug_loc': relocation 207: invalid type
section [23] '.rela.debug_loc': relocation 208: invalid type
section [23] '.rela.debug_loc': relocation 209: invalid type
section [23] '.rela.debug_loc': relocation 210: invalid type
section [23] '.rela.debug_loc': relocation 211: invalid type
section [23] '.rela.debug_loc': relocation 212: invalid type
section [23] '.rela.debug_loc': relocation 213: invalid type
section [23] '.rela.debug_loc': relocation 214: invalid type
section [23] '.rela.debug_loc': relocation 215: invalid type
section [23] '.rela.debug_loc': relocation 216: invalid type
section [23] '.rela.debug_loc': relocation 217: invalid type
section [23] '.rela.debug_loc': relocation 218: invalid type
section [23] '.rela.debug_loc': relocation 219: invalid type
section [23] '.rela.debug_loc': relocation 220: invalid type
section [23] '.rela.debug_loc': relocation 221: invalid type
section [23] '.rela.debug_loc': relocation 222: invalid type
section [23] '.rela.debug_loc': relocation 223: invalid type
section [23] '.rela.debug_loc': relocation 224: invalid type
section [23] '.rela.debug_loc': relocation 225: invalid type
section [23] '.rela.debug_loc': relocation 226: invalid type
section [23] '.rela.debug_loc': relocation 227: invalid type
section [23] '.rela.debug_loc': relocation 228: invalid type
section [23] '.rela.debug_loc': relocation 229: invalid type
section [23] '.rela.debug_loc': relocation 230: invalid type
section [23] '.rela.debug_loc': relocation 231: invalid type
section [23] '.rela.debug_loc': relocation 232: invalid type
section [23] '.rela.debug_loc': relocation 233: invalid type
section [23] '.rela.debug_loc': relocation 234: invalid type
section [23] '.rela.debug_loc': relocation 235: invalid type
section [23] '.rela.debug_loc': relocation 236: invalid type
section [23] '.rela.debug_loc': relocation 237: invalid type
section [23] '.rela.debug_loc': relocation 238: invalid type
section [23] '.rela.debug_loc': relocation 239: invalid type
section [23] '.rela.debug_loc': relocation 240: invalid type
section [23] '.rela.debug_loc': relocation 241: invalid type
section [23] '.rela.debug_loc': relocation 242: invalid type
section [23] '.rela.debug_loc': relocation 243: invalid type
section [23] '.rela.debug_loc': relocation 244: invalid type
section [23] '.rela.debug_loc': relocation 245: invalid type
section [23] '.rela.debug_loc': relocation 246: invalid type
section [23] '.rela.debug_loc': relocation 247: invalid type
section [23] '.rela.debug_loc': relocation 248: invalid type
section [23] '.rela.debug_loc': relocation 249: invalid type
section [23] '.rela.debug_loc': relocation 250: invalid type
section [23] '.rela.debug_loc': relocation 251: invalid type
section [23] '.rela.debug_loc': relocation 252: invalid type
section [23] '.rela.debug_loc': relocation 253: invalid type
section [23] '.rela.debug_loc': relocation 254: invalid type
section [23] '.rela.debug_loc': relocation 255: invalid type
section [23] '.rela.debug_loc': relocation 256: invalid type
section [23] '.rela.debug_loc': relocation 257: invalid type
section [23] '.rela.debug_loc': relocation 258: invalid type
section [23] '.rela.debug_loc': relocation 259: invalid type
section [23] '.rela.debug_loc': relocation 260: invalid type
section [23] '.rela.debug_loc': relocation 261: invalid type
section [23] '.rela.debug_loc': relocation 262: invalid type
section [23] '.rela.debug_loc': relocation 263: invalid type
section [23] '.rela.debug_loc': relocation 264: invalid type
section [23] '.rela.debug_loc': relocation 265: invalid type
section [23] '.rela.debug_loc': relocation 266: invalid type
section [23] '.rela.debug_loc': relocation 267: invalid type
section [23] '.rela.debug_loc': relocation 268: invalid type
section [23] '.rela.debug_loc': relocation 269: invalid type
section [23] '.rela.debug_loc': relocation 270: invalid type
section [23] '.rela.debug_loc': relocation 271: invalid type
section [23] '.rela.debug_loc': relocation 272: invalid type
section [23] '.rela.debug_loc': relocation 273: invalid type
section [23] '.rela.debug_loc': relocation 274: invalid type
section [23] '.rela.debug_loc': relocation 275: invalid type
section [23] '.rela.debug_loc': relocation 276: invalid type
section [23] '.rela.debug_loc': relocation 277: invalid type
section [23] '.rela.debug_loc': relocation 278: invalid type
section [23] '.rela.debug_loc': relocation 279: invalid type
section [23] '.rela.debug_loc': relocation 280: invalid type
section [23] '.rela.debug_loc': relocation 281: invalid type
section [23] '.rela.debug_loc': relocation 282: invalid type
section [23] '.rela.debug_loc': relocation 283: invalid type
section [23] '.rela.debug_loc': relocation 284: invalid type
section [23] '.rela.debug_loc': relocation 285: invalid type
section [23] '.rela.debug_loc': relocation 286: invalid type
section [23] '.rela.debug_loc': relocation 287: invalid type
section [23] '.rela.debug_loc': relocation 288: invalid type
section [23] '.rela.debug_loc': relocation 289: invalid type
section [23] '.rela.debug_loc': relocation 290: invalid type
section [23] '.rela.debug_loc': relocation 291: invalid type
section [23] '.rela.debug_loc': relocation 292: invalid type
section [23] '.rela.debug_loc': relocation 293: invalid type
section [23] '.rela.debug_loc': relocation 294: invalid type
section [23] '.rela.debug_loc': relocation 295: invalid type
section [23] '.rela.debug_loc': relocation 296: invalid type
section [23] '.rela.debug_loc': relocation 297: invalid type
section [23] '.rela.debug_loc': relocation 298: invalid type
section [23] '.rela.debug_loc': relocation 299: invalid type
section [23] '.rela.debug_loc': relocation 300: invalid type
section [23] '.rela.debug_loc': relocation 301: invalid type
section [23] '.rela.debug_loc': relocation 302: invalid type
section [23] '.rela.debug_loc': relocation 303: invalid type
section [23] '.rela.debug_loc': relocation 304: invalid type
section [23] '.rela.debug_loc': relocation 305: invalid type
section [23] '.rela.debug_loc': relocation 306: invalid type
section [23] '.rela.debug_loc': relocation 307: invalid type
section [23] '.rela.debug_loc': relocation 308: invalid type
section [23] '.rela.debug_loc': relocation 309: invalid type
section [23] '.rela.debug_loc': relocation 310: invalid type
section [23] '.rela.debug_loc': relocation 311: invalid type
section [23] '.rela.debug_loc': relocation 312: invalid type
section [23] '.rela.debug_loc': relocation 313: invalid type
section [23] '.rela.debug_loc': relocation 314: invalid type
section [23] '.rela.debug_loc': relocation 315: invalid type
section [23] '.rela.debug_loc': relocation 316: invalid type
section [23] '.rela.debug_loc': relocation 317: invalid type
section [23] '.rela.debug_loc': relocation 318: invalid type
section [23] '.rela.debug_loc': relocation 319: invalid type
section [23] '.rela.debug_loc': relocation 320: invalid type
section [23] '.rela.debug_loc': relocation 321: invalid type
section [23] '.rela.debug_loc': relocation 322: invalid type
section [23] '.rela.debug_loc': relocation 323: invalid type
section [23] '.rela.debug_loc': relocation 324: invalid type
section [23] '.rela.debug_loc': relocation 325: invalid type
section [23] '.rela.debug_loc': relocation 326: invalid type
section [23] '.rela.debug_loc': relocation 327: invalid type
section [23] '.rela.debug_loc': relocation 328: invalid type
section [23] '.rela.debug_loc': relocation 329: invalid type
section [23] '.rela.debug_loc': relocation 330: invalid type
section [23] '.rela.debug_loc': relocation 331: invalid type
section [23] '.rela.debug_loc': relocation 332: invalid type
section [23] '.rela.debug_loc': relocation 333: invalid type
section [23] '.rela.debug_loc': relocation 334: invalid type
section [23] '.rela.debug_loc': relocation 335: invalid type
section [23] '.rela.debug_loc': relocation 336: invalid type
section [23] '.rela.debug_loc': relocation 337: invalid type
section [23] '.rela.debug_loc': relocation 338: invalid type
section [23] '.rela.debug_loc': relocation 339: invalid type
section [23] '.rela.debug_loc': relocation 340: invalid type
section [23] '.rela.debug_loc': relocation 341: invalid type
section [23] '.rela.debug_loc': relocation 342: invalid type
section [23] '.rela.debug_loc': relocation 343: invalid type
section [23] '.rela.debug_loc': relocation 344: invalid type
section [23] '.rela.debug_loc': relocation 345: invalid type
section [23] '.rela.debug_loc': relocation 346: invalid type
section [23] '.rela.debug_loc': relocation 347: invalid type
section [23] '.rela.debug_loc': relocation 348: invalid type
section [23] '.rela.debug_loc': relocation 349: invalid type
section [23] '.rela.debug_loc': relocation 350: invalid type
section [23] '.rela.debug_loc': relocation 351: invalid type
section [23] '.rela.debug_loc': relocation 352: invalid type
section [23] '.rela.debug_loc': relocation 353: invalid type
section [23] '.rela.debug_loc': relocation 354: invalid type
section [23] '.rela.debug_loc': relocation 355: invalid type
section [23] '.rela.debug_loc': relocation 356: invalid type
section [23] '.rela.debug_loc': relocation 357: invalid type
section [23] '.rela.debug_loc': relocation 358: invalid type
section [23] '.rela.debug_loc': relocation 359: invalid type
section [23] '.rela.debug_loc': relocation 360: invalid type
section [23] '.rela.debug_loc': relocation 361: invalid type
section [23] '.rela.debug_loc': relocation 362: invalid type
section [23] '.rela.debug_loc': relocation 363: invalid type
section [23] '.rela.debug_loc': relocation 364: invalid type
section [23] '.rela.debug_loc': relocation 365: invalid type
section [23] '.rela.debug_loc': relocation 366: invalid type
section [23] '.rela.debug_loc': relocation 367: invalid type
section [23] '.rela.debug_loc': relocation 368: invalid type
section [23] '.rela.debug_loc': relocation 369: invalid type
section [23] '.rela.debug_loc': relocation 370: invalid type
section [23] '.rela.debug_loc': relocation 371: invalid type
section [23] '.rela.debug_loc': relocation 372: invalid type
section [23] '.rela.debug_loc': relocation 373: invalid type
section [23] '.rela.debug_loc': relocation 374: invalid type
section [23] '.rela.debug_loc': relocation 375: invalid type
section [23] '.rela.debug_loc': relocation 376: invalid type
section [23] '.rela.debug_loc': relocation 377: invalid type
section [23] '.rela.debug_loc': relocation 378: invalid type
section [23] '.rela.debug_loc': relocation 379: invalid type
section [23] '.rela.debug_loc': relocation 380: invalid type
section [23] '.rela.debug_loc': relocation 381: invalid type
section [23] '.rela.debug_loc': relocation 382: invalid type
section [23] '.rela.debug_loc': relocation 383: invalid type
section [23] '.rela.debug_loc': relocation 384: invalid type
section [23] '.rela.debug_loc': relocation 385: invalid type
section [23] '.rela.debug_loc': relocation 386: invalid type
section [23] '.rela.debug_loc': relocation 387: invalid type
section [23] '.rela.debug_loc': relocation 388: invalid type
section [23] '.rela.debug_loc': relocation 389: invalid type
section [23] '.rela.debug_loc': relocation 390: invalid type
section [23] '.rela.debug_loc': relocation 391: invalid type
section [23] '.rela.debug_loc': relocation 392: invalid type
section [23] '.rela.debug_loc': relocation 393: invalid type
section [23] '.rela.debug_loc': relocation 394: invalid type
section [23] '.rela.debug_loc': relocation 395: invalid type
section [23] '.rela.debug_loc': relocation 396: invalid type
section [23] '.rela.debug_loc': relocation 397: invalid type
section [23] '.rela.debug_loc': relocation 398: invalid type
section [23] '.rela.debug_loc': relocation 399: invalid type
section [23] '.rela.debug_loc': relocation 400: invalid type
section [23] '.rela.debug_loc': relocation 401: invalid type
section [23] '.rela.debug_loc': relocation 402: invalid type
section [23] '.rela.debug_loc': relocation 403: invalid type
section [23] '.rela.debug_loc': relocation 404: invalid type
section [23] '.rela.debug_loc': relocation 405: invalid type
section [23] '.rela.debug_loc': relocation 406: invalid type
section [23] '.rela.debug_loc': relocation 407: invalid type
section [23] '.rela.debug_loc': relocation 408: invalid type
section [23] '.rela.debug_loc': relocation 409: invalid type
section [23] '.rela.debug_loc': relocation 410: invalid type
section [23] '.rela.debug_loc': relocation 411: invalid type
section [23] '.rela.debug_loc': relocation 412: invalid type
section [23] '.rela.debug_loc': relocation 413: invalid type
section [23] '.rela.debug_loc': relocation 414: invalid type
section [23] '.rela.debug_loc': relocation 415: invalid type
section [23] '.rela.debug_loc': relocation 416: invalid type
section [23] '.rela.debug_loc': relocation 417: invalid type
section [23] '.rela.debug_loc': relocation 418: invalid type
section [23] '.rela.debug_loc': relocation 419: invalid type
section [23] '.rela.debug_loc': relocation 420: invalid type
section [23] '.rela.debug_loc': relocation 421: invalid type
section [23] '.rela.debug_loc': relocation 422: invalid type
section [23] '.rela.debug_loc': relocation 423: invalid type
section [23] '.rela.debug_loc': relocation 424: invalid type
section [23] '.rela.debug_loc': relocation 425: invalid type
section [23] '.rela.debug_loc': relocation 426: invalid type
section [23] '.rela.debug_loc': relocation 427: invalid type
section [23] '.rela.debug_loc': relocation 428: invalid type
section [23] '.rela.debug_loc': relocation 429: invalid type
section [23] '.rela.debug_loc': relocation 430: invalid type
section [23] '.rela.debug_loc': relocation 431: invalid type
section [23] '.rela.debug_loc': relocation 432: invalid type
section [23] '.rela.debug_loc': relocation 433: invalid type
section [23] '.rela.debug_loc': relocation 434: invalid type
section [23] '.rela.debug_loc': relocation 435: invalid type
section [23] '.rela.debug_loc': relocation 436: invalid type
section [23] '.rela.debug_loc': relocation 437: invalid type
section [23] '.rela.debug_loc': relocation 438: invalid type
section [23] '.rela.debug_loc': relocation 439: invalid type
section [23] '.rela.debug_loc': relocation 440: invalid type
section [23] '.rela.debug_loc': relocation 441: invalid type
section [23] '.rela.debug_loc': relocation 442: invalid type
section [23] '.rela.debug_loc': relocation 443: invalid type
section [23] '.rela.debug_loc': relocation 444: invalid type
section [23] '.rela.debug_loc': relocation 445: invalid type
section [23] '.rela.debug_loc': relocation 446: invalid type
section [23] '.rela.debug_loc': relocation 447: invalid type
section [23] '.rela.debug_loc': relocation 448: invalid type
section [23] '.rela.debug_loc': relocation 449: invalid type
section [23] '.rela.debug_loc': relocation 450: invalid type
section [23] '.rela.debug_loc': relocation 451: invalid type
section [23] '.rela.debug_loc': relocation 452: invalid type
section [23] '.rela.debug_loc': relocation 453: invalid type
section [23] '.rela.debug_loc': relocation 454: invalid type
section [23] '.rela.debug_loc': relocation 455: invalid type
section [23] '.rela.debug_loc': relocation 456: invalid type
section [23] '.rela.debug_loc': relocation 457: invalid type
section [23] '.rela.debug_loc': relocation 458: invalid type
section [23] '.rela.debug_loc': relocation 459: invalid type
section [23] '.rela.debug_loc': relocation 460: invalid type
section [23] '.rela.debug_loc': relocation 461: invalid type
section [23] '.rela.debug_loc': relocation 462: invalid type
section [23] '.rela.debug_loc': relocation 463: invalid type
section [23] '.rela.debug_loc': relocation 464: invalid type
section [23] '.rela.debug_loc': relocation 465: invalid type
section [23] '.rela.debug_loc': relocation 466: invalid type
section [23] '.rela.debug_loc': relocation 467: invalid type
section [23] '.rela.debug_loc': relocation 468: invalid type
section [23] '.rela.debug_loc': relocation 469: invalid type
section [23] '.rela.debug_loc': relocation 470: invalid type
section [23] '.rela.debug_loc': relocation 471: invalid type
section [23] '.rela.debug_loc': relocation 472: invalid type
section [23] '.rela.debug_loc': relocation 473: invalid type
section [23] '.rela.debug_loc': relocation 474: invalid type
section [23] '.rela.debug_loc': relocation 475: invalid type
section [23] '.rela.debug_loc': relocation 476: invalid type
section [23] '.rela.debug_loc': relocation 477: invalid type
section [23] '.rela.debug_loc': relocation 478: invalid type
section [23] '.rela.debug_loc': relocation 479: invalid type
section [23] '.rela.debug_loc': relocation 480: invalid type
section [23] '.rela.debug_loc': relocation 481: invalid type
section [23] '.rela.debug_loc': relocation 482: invalid type
section [23] '.rela.debug_loc': relocation 483: invalid type
section [23] '.rela.debug_loc': relocation 484: invalid type
section [23] '.rela.debug_loc': relocation 485: invalid type
section [23] '.rela.debug_loc': relocation 486: invalid type
section [23] '.rela.debug_loc': relocation 487: invalid type
section [23] '.rela.debug_loc': relocation 488: invalid type
section [23] '.rela.debug_loc': relocation 489: invalid type
section [23] '.rela.debug_loc': relocation 490: invalid type
section [23] '.rela.debug_loc': relocation 491: invalid type
section [23] '.rela.debug_loc': relocation 492: invalid type
section [23] '.rela.debug_loc': relocation 493: invalid type
section [23] '.rela.debug_loc': relocation 494: invalid type
section [23] '.rela.debug_loc': relocation 495: invalid type
section [23] '.rela.debug_loc': relocation 496: invalid type
section [23] '.rela.debug_loc': relocation 497: invalid type
section [25] '.rela.debug_aranges': relocation 0: invalid type
section [25] '.rela.debug_aranges': relocation 1: invalid type
section [25] '.rela.debug_aranges': relocation 2: invalid type
section [25] '.rela.debug_aranges': relocation 3: invalid type
section [25] '.rela.debug_aranges': relocation 4: invalid type
section [27] '.rela.debug_ranges': relocation 0: invalid type
section [27] '.rela.debug_ranges': relocation 1: invalid type
section [27] '.rela.debug_ranges': relocation 2: invalid type
section [27] '.rela.debug_ranges': relocation 3: invalid type
section [27] '.rela.debug_ranges': relocation 4: invalid type
section [27] '.rela.debug_ranges': relocation 5: invalid type
section [27] '.rela.debug_ranges': relocation 6: invalid type
section [27] '.rela.debug_ranges': relocation 7: invalid type
section [27] '.rela.debug_ranges': relocation 8: invalid type
section [27] '.rela.debug_ranges': relocation 9: invalid type
section [27] '.rela.debug_ranges': relocation 10: invalid type
section [27] '.rela.debug_ranges': relocation 11: invalid type
section [27] '.rela.debug_ranges': relocation 12: invalid type
section [27] '.rela.debug_ranges': relocation 13: invalid type
section [27] '.rela.debug_ranges': relocation 14: invalid type
section [27] '.rela.debug_ranges': relocation 15: invalid type
section [27] '.rela.debug_ranges': relocation 16: invalid type
section [27] '.rela.debug_ranges': relocation 17: invalid type
section [27] '.rela.debug_ranges': relocation 18: invalid type
section [27] '.rela.debug_ranges': relocation 19: invalid type
section [27] '.rela.debug_ranges': relocation 20: invalid type
section [27] '.rela.debug_ranges': relocation 21: invalid type
section [27] '.rela.debug_ranges': relocation 22: invalid type
section [27] '.rela.debug_ranges': relocation 23: invalid type
section [27] '.rela.debug_ranges': relocation 24: invalid type
section [27] '.rela.debug_ranges': relocation 25: invalid type
section [27] '.rela.debug_ranges': relocation 26: invalid type
section [27] '.rela.debug_ranges': relocation 27: invalid type
section [27] '.rela.debug_ranges': relocation 28: invalid type
section [27] '.rela.debug_ranges': relocation 29: invalid type
section [27] '.rela.debug_ranges': relocation 30: invalid type
section [27] '.rela.debug_ranges': relocation 31: invalid type
section [27] '.rela.debug_ranges': relocation 32: invalid type
section [27] '.rela.debug_ranges': relocation 33: invalid type
section [27] '.rela.debug_ranges': relocation 34: invalid type
section [27] '.rela.debug_ranges': relocation 35: invalid type
section [27] '.rela.debug_ranges': relocation 36: invalid type
section [27] '.rela.debug_ranges': relocation 37: invalid type
section [27] '.rela.debug_ranges': relocation 38: invalid type
section [27] '.rela.debug_ranges': relocation 39: invalid type
section [27] '.rela.debug_ranges': relocation 40: invalid type
section [27] '.rela.debug_ranges': relocation 41: invalid type
section [27] '.rela.debug_ranges': relocation 42: invalid type
section [27] '.rela.debug_ranges': relocation 43: invalid type
section [27] '.rela.debug_ranges': relocation 44: invalid type
section [27] '.rela.debug_ranges': relocation 45: invalid type
section [27] '.rela.debug_ranges': relocation 46: invalid type
section [27] '.rela.debug_ranges': relocation 47: invalid type
section [27] '.rela.debug_ranges': relocation 48: invalid type
section [27] '.rela.debug_ranges': relocation 49: invalid type
section [27] '.rela.debug_ranges': relocation 50: invalid type
section [27] '.rela.debug_ranges': relocation 51: invalid type
section [27] '.rela.debug_ranges': relocation 52: invalid type
section [27] '.rela.debug_ranges': relocation 53: invalid type
section [27] '.rela.debug_ranges': relocation 54: invalid type
section [27] '.rela.debug_ranges': relocation 55: invalid type
section [27] '.rela.debug_ranges': relocation 56: invalid type
section [27] '.rela.debug_ranges': relocation 57: invalid type
section [27] '.rela.debug_ranges': relocation 58: invalid type
section [27] '.rela.debug_ranges': relocation 59: invalid type
section [27] '.rela.debug_ranges': relocation 60: invalid type
section [27] '.rela.debug_ranges': relocation 61: invalid type
section [27] '.rela.debug_ranges': relocation 62: invalid type
section [27] '.rela.debug_ranges': relocation 63: invalid type
section [27] '.rela.debug_ranges': relocation 64: invalid type
section [27] '.rela.debug_ranges': relocation 65: invalid type
section [27] '.rela.debug_ranges': relocation 66: invalid type
section [27] '.rela.debug_ranges': relocation 67: invalid type
section [27] '.rela.debug_ranges': relocation 68: invalid type
section [27] '.rela.debug_ranges': relocation 69: invalid type
section [27] '.rela.debug_ranges': relocation 70: invalid type
section [27] '.rela.debug_ranges': relocation 71: invalid type
section [27] '.rela.debug_ranges': relocation 72: invalid type
section [27] '.rela.debug_ranges': relocation 73: invalid type
section [27] '.rela.debug_ranges': relocation 74: invalid type
section [27] '.rela.debug_ranges': relocation 75: invalid type
section [27] '.rela.debug_ranges': relocation 76: invalid type
section [27] '.rela.debug_ranges': relocation 77: invalid type
section [27] '.rela.debug_ranges': relocation 78: invalid type
section [27] '.rela.debug_ranges': relocation 79: invalid type
section [27] '.rela.debug_ranges': relocation 80: invalid type
section [27] '.rela.debug_ranges': relocation 81: invalid type
section [27] '.rela.debug_ranges': relocation 82: invalid type
section [27] '.rela.debug_ranges': relocation 83: invalid type
section [27] '.rela.debug_ranges': relocation 84: invalid type
section [27] '.rela.debug_ranges': relocation 85: invalid type
section [27] '.rela.debug_ranges': relocation 86: invalid type
section [27] '.rela.debug_ranges': relocation 87: invalid type
section [27] '.rela.debug_ranges': relocation 88: invalid type
section [27] '.rela.debug_ranges': relocation 89: invalid type
section [27] '.rela.debug_ranges': relocation 90: invalid type
section [27] '.rela.debug_ranges': relocation 91: invalid type
section [27] '.rela.debug_ranges': relocation 92: invalid type
section [27] '.rela.debug_ranges': relocation 93: invalid type
section [29] '.rela.debug_line': relocation 0: invalid type
section [29] '.rela.debug_line': relocation 1: invalid type
section [29] '.rela.debug_line': relocation 2: invalid type
section [29] '.rela.debug_line': relocation 3: invalid type
section [29] '.rela.debug_line': relocation 4: invalid type
section [29] '.rela.debug_line': relocation 5: invalid type
section [29] '.rela.debug_line': relocation 6: invalid type
section [29] '.rela.debug_line': relocation 7: invalid type
section [29] '.rela.debug_line': relocation 8: invalid type
section [29] '.rela.debug_line': relocation 9: invalid type
section [29] '.rela.debug_line': relocation 10: invalid type
section [29] '.rela.debug_line': relocation 11: invalid type
section [29] '.rela.debug_line': relocation 12: invalid type
section [29] '.rela.debug_line': relocation 13: invalid type
section [29] '.rela.debug_line': relocation 14: invalid type
section [29] '.rela.debug_line': relocation 15: invalid type
section [29] '.rela.debug_line': relocation 16: invalid type
section [29] '.rela.debug_line': relocation 17: invalid type
section [29] '.rela.debug_line': relocation 18: invalid type
section [29] '.rela.debug_line': relocation 19: invalid type
section [29] '.rela.debug_line': relocation 20: invalid type
section [29] '.rela.debug_line': relocation 21: invalid type
section [29] '.rela.debug_line': relocation 22: invalid type
section [29] '.rela.debug_line': relocation 23: invalid type
section [29] '.rela.debug_line': relocation 24: invalid type
section [29] '.rela.debug_line': relocation 25: invalid type
section [29] '.rela.debug_line': relocation 26: invalid type
section [29] '.rela.debug_line': relocation 27: invalid type
section [29] '.rela.debug_line': relocation 28: invalid type
section [29] '.rela.debug_line': relocation 29: invalid type
section [29] '.rela.debug_line': relocation 30: invalid type
section [29] '.rela.debug_line': relocation 31: invalid type
section [29] '.rela.debug_line': relocation 32: invalid type
section [29] '.rela.debug_line': relocation 33: invalid type
section [29] '.rela.debug_line': relocation 34: invalid type
section [29] '.rela.debug_line': relocation 35: invalid type
section [29] '.rela.debug_line': relocation 36: invalid type
section [29] '.rela.debug_line': relocation 37: invalid type
section [29] '.rela.debug_line': relocation 38: invalid type
section [29] '.rela.debug_line': relocation 39: invalid type
section [29] '.rela.debug_line': relocation 40: invalid type
section [29] '.rela.debug_line': relocation 41: invalid type
section [29] '.rela.debug_line': relocation 42: invalid type
section [29] '.rela.debug_line': relocation 43: invalid type
section [29] '.rela.debug_line': relocation 44: invalid type
section [29] '.rela.debug_line': relocation 45: invalid type
section [29] '.rela.debug_line': relocation 46: invalid type
section [29] '.rela.debug_line': relocation 47: invalid type
section [29] '.rela.debug_line': relocation 48: invalid type
section [29] '.rela.debug_line': relocation 49: invalid type
section [29] '.rela.debug_line': relocation 50: invalid type
section [29] '.rela.debug_line': relocation 51: invalid type
section [29] '.rela.debug_line': relocation 52: invalid type
section [29] '.rela.debug_line': relocation 53: invalid type
section [29] '.rela.debug_line': relocation 54: invalid type
section [29] '.rela.debug_line': relocation 55: invalid type
section [29] '.rela.debug_line': relocation 56: invalid type
section [29] '.rela.debug_line': relocation 57: invalid type
section [29] '.rela.debug_line': relocation 58: invalid type
section [29] '.rela.debug_line': relocation 59: invalid type
section [29] '.rela.debug_line': relocation 60: invalid type
section [29] '.rela.debug_line': relocation 61: invalid type
section [29] '.rela.debug_line': relocation 62: invalid type
section [29] '.rela.debug_line': relocation 63: invalid type
section [29] '.rela.debug_line': relocation 64: invalid type
section [29] '.rela.debug_line': relocation 65: invalid type
section [29] '.rela.debug_line': relocation 66: invalid type
section [29] '.rela.debug_line': relocation 67: invalid type
section [29] '.rela.debug_line': relocation 68: invalid type
section [29] '.rela.debug_line': relocation 69: invalid type
section [29] '.rela.debug_line': relocation 70: invalid type
section [29] '.rela.debug_line': relocation 71: invalid type
section [29] '.rela.debug_line': relocation 72: invalid type
section [29] '.rela.debug_line': relocation 73: invalid type
section [29] '.rela.debug_line': relocation 74: invalid type
section [29] '.rela.debug_line': relocation 75: invalid type
section [29] '.rela.debug_line': relocation 76: invalid type
section [29] '.rela.debug_line': relocation 77: invalid type
section [29] '.rela.debug_line': relocation 78: invalid type
section [29] '.rela.debug_line': relocation 79: invalid type
section [29] '.rela.debug_line': relocation 80: invalid type
section [29] '.rela.debug_line': relocation 81: invalid type
section [29] '.rela.debug_line': relocation 82: invalid type
section [29] '.rela.debug_line': relocation 83: invalid type
section [29] '.rela.debug_line': relocation 84: invalid type
section [29] '.rela.debug_line': relocation 85: invalid type
section [29] '.rela.debug_line': relocation 86: invalid type
section [29] '.rela.debug_line': relocation 87: invalid type
section [29] '.rela.debug_line': relocation 88: invalid type
section [29] '.rela.debug_line': relocation 89: invalid type
section [29] '.rela.debug_line': relocation 90: invalid type
section [29] '.rela.debug_line': relocation 91: invalid type
section [29] '.rela.debug_line': relocation 92: invalid type
section [29] '.rela.debug_line': relocation 93: invalid type
section [29] '.rela.debug_line': relocation 94: invalid type
section [29] '.rela.debug_line': relocation 95: invalid type
section [29] '.rela.debug_line': relocation 96: invalid type
section [29] '.rela.debug_line': relocation 97: invalid type
section [29] '.rela.debug_line': relocation 98: invalid type
section [29] '.rela.debug_line': relocation 99: invalid type
section [29] '.rela.debug_line': relocation 100: invalid type
section [29] '.rela.debug_line': relocation 101: invalid type
section [29] '.rela.debug_line': relocation 102: invalid type
section [29] '.rela.debug_line': relocation 103: invalid type
section [29] '.rela.debug_line': relocation 104: invalid type
section [29] '.rela.debug_line': relocation 105: invalid type
section [29] '.rela.debug_line': relocation 106: invalid type
section [29] '.rela.debug_line': relocation 107: invalid type
section [29] '.rela.debug_line': relocation 108: invalid type
section [29] '.rela.debug_line': relocation 109: invalid type
section [29] '.rela.debug_line': relocation 110: invalid type
section [29] '.rela.debug_line': relocation 111: invalid type
section [29] '.rela.debug_line': relocation 112: invalid type
section [29] '.rela.debug_line': relocation 113: invalid type
section [29] '.rela.debug_line': relocation 114: invalid type
section [29] '.rela.debug_line': relocation 115: invalid type
section [29] '.rela.debug_line': relocation 116: invalid type
section [29] '.rela.debug_line': relocation 117: invalid type
section [29] '.rela.debug_line': relocation 118: invalid type
section [29] '.rela.debug_line': relocation 119: invalid type
section [29] '.rela.debug_line': relocation 120: invalid type
section [29] '.rela.debug_line': relocation 121: invalid type
section [29] '.rela.debug_line': relocation 122: invalid type
section [29] '.rela.debug_line': relocation 123: invalid type
section [29] '.rela.debug_line': relocation 124: invalid type
section [29] '.rela.debug_line': relocation 125: invalid type
section [29] '.rela.debug_line': relocation 126: invalid type
section [29] '.rela.debug_line': relocation 127: invalid type
section [29] '.rela.debug_line': relocation 128: invalid type
section [29] '.rela.debug_line': relocation 129: invalid type
section [29] '.rela.debug_line': relocation 130: invalid type
section [29] '.rela.debug_line': relocation 131: invalid type
section [29] '.rela.debug_line': relocation 132: invalid type
section [29] '.rela.debug_line': relocation 133: invalid type
section [29] '.rela.debug_line': relocation 134: invalid type
section [29] '.rela.debug_line': relocation 135: invalid type
section [29] '.rela.debug_line': relocation 136: invalid type
section [29] '.rela.debug_line': relocation 137: invalid type
section [29] '.rela.debug_line': relocation 138: invalid type
section [29] '.rela.debug_line': relocation 139: invalid type
section [29] '.rela.debug_line': relocation 140: invalid type
section [29] '.rela.debug_line': relocation 141: invalid type
section [29] '.rela.debug_line': relocation 142: invalid type
section [29] '.rela.debug_line': relocation 143: invalid type
section [29] '.rela.debug_line': relocation 144: invalid type
section [29] '.rela.debug_line': relocation 145: invalid type
section [29] '.rela.debug_line': relocation 146: invalid type
section [29] '.rela.debug_line': relocation 147: invalid type
section [29] '.rela.debug_line': relocation 148: invalid type
section [29] '.rela.debug_line': relocation 149: invalid type
section [29] '.rela.debug_line': relocation 150: invalid type
section [29] '.rela.debug_line': relocation 151: invalid type
section [29] '.rela.debug_line': relocation 152: invalid type
section [29] '.rela.debug_line': relocation 153: invalid type
section [29] '.rela.debug_line': relocation 154: invalid type
section [29] '.rela.debug_line': relocation 155: invalid type
section [29] '.rela.debug_line': relocation 156: invalid type
section [29] '.rela.debug_line': relocation 157: invalid type
section [29] '.rela.debug_line': relocation 158: invalid type
section [29] '.rela.debug_line': relocation 159: invalid type
section [29] '.rela.debug_line': relocation 160: invalid type
section [29] '.rela.debug_line': relocation 161: invalid type
section [29] '.rela.debug_line': relocation 162: invalid type
section [29] '.rela.debug_line': relocation 163: invalid type
section [29] '.rela.debug_line': relocation 164: invalid type
section [29] '.rela.debug_line': relocation 165: invalid type
section [29] '.rela.debug_line': relocation 166: invalid type
section [29] '.rela.debug_line': relocation 167: invalid type
section [29] '.rela.debug_line': relocation 168: invalid type
section [29] '.rela.debug_line': relocation 169: invalid type
section [29] '.rela.debug_line': relocation 170: invalid type
section [29] '.rela.debug_line': relocation 171: invalid type
section [29] '.rela.debug_line': relocation 172: invalid type
section [29] '.rela.debug_line': relocation 173: invalid type
section [29] '.rela.debug_line': relocation 174: invalid type
section [29] '.rela.debug_line': relocation 175: invalid type
section [29] '.rela.debug_line': relocation 176: invalid type
section [29] '.rela.debug_line': relocation 177: invalid type
section [29] '.rela.debug_line': relocation 178: invalid type
section [29] '.rela.debug_line': relocation 179: invalid type
section [29] '.rela.debug_line': relocation 180: invalid type
section [29] '.rela.debug_line': relocation 181: invalid type
section [29] '.rela.debug_line': relocation 182: invalid type
section [29] '.rela.debug_line': relocation 183: invalid type
section [29] '.rela.debug_line': relocation 184: invalid type
section [29] '.rela.debug_line': relocation 185: invalid type
section [29] '.rela.debug_line': relocation 186: invalid type
section [29] '.rela.debug_line': relocation 187: invalid type
section [29] '.rela.debug_line': relocation 188: invalid type
section [29] '.rela.debug_line': relocation 189: invalid type
section [29] '.rela.debug_line': relocation 190: invalid type
section [29] '.rela.debug_line': relocation 191: invalid type
section [29] '.rela.debug_line': relocation 192: invalid type
section [29] '.rela.debug_line': relocation 193: invalid type
section [29] '.rela.debug_line': relocation 194: invalid type
section [29] '.rela.debug_line': relocation 195: invalid type
section [29] '.rela.debug_line': relocation 196: invalid type
section [29] '.rela.debug_line': relocation 197: invalid type
section [29] '.rela.debug_line': relocation 198: invalid type
section [29] '.rela.debug_line': relocation 199: invalid type
section [29] '.rela.debug_line': relocation 200: invalid type
section [29] '.rela.debug_line': relocation 201: invalid type
section [29] '.rela.debug_line': relocation 202: invalid type
section [29] '.rela.debug_line': relocation 203: invalid type
section [29] '.rela.debug_line': relocation 204: invalid type
section [29] '.rela.debug_line': relocation 205: invalid type
section [29] '.rela.debug_line': relocation 206: invalid type
section [29] '.rela.debug_line': relocation 207: invalid type
section [29] '.rela.debug_line': relocation 208: invalid type
section [29] '.rela.debug_line': relocation 209: invalid type
section [29] '.rela.debug_line': relocation 210: invalid type
section [29] '.rela.debug_line': relocation 211: invalid type
section [29] '.rela.debug_line': relocation 212: invalid type
section [29] '.rela.debug_line': relocation 213: invalid type
section [29] '.rela.debug_line': relocation 214: invalid type
section [29] '.rela.debug_line': relocation 215: invalid type
section [29] '.rela.debug_line': relocation 216: invalid type
section [29] '.rela.debug_line': relocation 217: invalid type
section [29] '.rela.debug_line': relocation 218: invalid type
section [29] '.rela.debug_line': relocation 219: invalid type
section [29] '.rela.debug_line': relocation 220: invalid type
section [29] '.rela.debug_line': relocation 221: invalid type
section [29] '.rela.debug_line': relocation 222: invalid type
section [29] '.rela.debug_line': relocation 223: invalid type
section [29] '.rela.debug_line': relocation 224: invalid type
section [29] '.rela.debug_line': relocation 225: invalid type
section [29] '.rela.debug_line': relocation 226: invalid type
section [29] '.rela.debug_line': relocation 227: invalid type
section [29] '.rela.debug_line': relocation 228: invalid type
section [29] '.rela.debug_line': relocation 229: invalid type
section [29] '.rela.debug_line': relocation 230: invalid type
section [29] '.rela.debug_line': relocation 231: invalid type
section [29] '.rela.debug_line': relocation 232: invalid type
section [29] '.rela.debug_line': relocation 233: invalid type
section [29] '.rela.debug_line': relocation 234: invalid type
section [29] '.rela.debug_line': relocation 235: invalid type
section [29] '.rela.debug_line': relocation 236: invalid type
section [29] '.rela.debug_line': relocation 237: invalid type
section [29] '.rela.debug_line': relocation 238: invalid type
section [29] '.rela.debug_line': relocation 239: invalid type
section [29] '.rela.debug_line': relocation 240: invalid type
section [29] '.rela.debug_line': relocation 241: invalid type
section [29] '.rela.debug_line': relocation 242: invalid type
section [29] '.rela.debug_line': relocation 243: invalid type
section [29] '.rela.debug_line': relocation 244: invalid type
section [29] '.rela.debug_line': relocation 245: invalid type
section [29] '.rela.debug_line': relocation 246: invalid type
section [29] '.rela.debug_line': relocation 247: invalid type
section [29] '.rela.debug_line': relocation 248: invalid type
section [29] '.rela.debug_line': relocation 249: invalid type
section [29] '.rela.debug_line': relocation 250: invalid type
section [29] '.rela.debug_line': relocation 251: invalid type
section [29] '.rela.debug_line': relocation 252: invalid type
section [29] '.rela.debug_line': relocation 253: invalid type
section [29] '.rela.debug_line': relocation 254: invalid type
section [29] '.rela.debug_line': relocation 255: invalid type
section [29] '.rela.debug_line': relocation 256: invalid type
section [29] '.rela.debug_line': relocation 257: invalid type
section [29] '.rela.debug_line': relocation 258: invalid type
section [29] '.rela.debug_line': relocation 259: invalid type
section [29] '.rela.debug_line': relocation 260: invalid type
section [29] '.rela.debug_line': relocation 261: invalid type
section [29] '.rela.debug_line': relocation 262: invalid type
section [29] '.rela.debug_line': relocation 263: invalid type
section [29] '.rela.debug_line': relocation 264: invalid type
section [29] '.rela.debug_line': relocation 265: invalid type
section [29] '.rela.debug_line': relocation 266: invalid type
section [29] '.rela.debug_line': relocation 267: invalid type
section [29] '.rela.debug_line': relocation 268: invalid type
section [29] '.rela.debug_line': relocation 269: invalid type
section [29] '.rela.debug_line': relocation 270: invalid type
section [29] '.rela.debug_line': relocation 271: invalid type
section [29] '.rela.debug_line': relocation 272: invalid type
section [29] '.rela.debug_line': relocation 273: invalid type
section [29] '.rela.debug_line': relocation 274: invalid type
section [29] '.rela.debug_line': relocation 275: invalid type
section [29] '.rela.debug_line': relocation 276: invalid type
section [29] '.rela.debug_line': relocation 277: invalid type
section [29] '.rela.debug_line': relocation 278: invalid type
section [29] '.rela.debug_line': relocation 279: invalid type
section [29] '.rela.debug_line': relocation 280: invalid type
section [29] '.rela.debug_line': relocation 281: invalid type
section [29] '.rela.debug_line': relocation 282: invalid type
section [29] '.rela.debug_line': relocation 283: invalid type
section [29] '.rela.debug_line': relocation 284: invalid type
section [29] '.rela.debug_line': relocation 285: invalid type
section [29] '.rela.debug_line': relocation 286: invalid type
section [29] '.rela.debug_line': relocation 287: invalid type
section [29] '.rela.debug_line': relocation 288: invalid type
section [29] '.rela.debug_line': relocation 289: invalid type
section [29] '.rela.debug_line': relocation 290: invalid type
section [29] '.rela.debug_line': relocation 291: invalid type
section [29] '.rela.debug_line': relocation 292: invalid type
section [29] '.rela.debug_line': relocation 293: invalid type
section [29] '.rela.debug_line': relocation 294: invalid type
section [29] '.rela.debug_line': relocation 295: invalid type
section [29] '.rela.debug_line': relocation 296: invalid type
section [29] '.rela.debug_line': relocation 297: invalid type
section [29] '.rela.debug_line': relocation 298: invalid type
section [29] '.rela.debug_line': relocation 299: invalid type
section [29] '.rela.debug_line': relocation 300: invalid type
section [29] '.rela.debug_line': relocation 301: invalid type
section [29] '.rela.debug_line': relocation 302: invalid type
section [29] '.rela.debug_line': relocation 303: invalid type
section [29] '.rela.debug_line': relocation 304: invalid type
section [29] '.rela.debug_line': relocation 305: invalid type
section [29] '.rela.debug_line': relocation 306: invalid type
section [29] '.rela.debug_line': relocation 307: invalid type
section [29] '.rela.debug_line': relocation 308: invalid type
section [29] '.rela.debug_line': relocation 309: invalid type
section [29] '.rela.debug_line': relocation 310: invalid type
section [29] '.rela.debug_line': relocation 311: invalid type
section [29] '.rela.debug_line': relocation 312: invalid type
section [29] '.rela.debug_line': relocation 313: invalid type
section [29] '.rela.debug_line': relocation 314: invalid type
section [29] '.rela.debug_line': relocation 315: invalid type
section [29] '.rela.debug_line': relocation 316: invalid type
section [29] '.rela.debug_line': relocation 317: invalid type
section [29] '.rela.debug_line': relocation 318: invalid type
section [29] '.rela.debug_line': relocation 319: invalid type
section [29] '.rela.debug_line': relocation 320: invalid type
section [29] '.rela.debug_line': relocation 321: invalid type
section [29] '.rela.debug_line': relocation 322: invalid type
section [29] '.rela.debug_line': relocation 323: invalid type
section [29] '.rela.debug_line': relocation 324: invalid type
section [29] '.rela.debug_line': relocation 325: invalid type
section [29] '.rela.debug_line': relocation 326: invalid type
section [29] '.rela.debug_line': relocation 327: invalid type
section [29] '.rela.debug_line': relocation 328: invalid type
section [29] '.rela.debug_line': relocation 329: invalid type
section [29] '.rela.debug_line': relocation 330: invalid type
section [29] '.rela.debug_line': relocation 331: invalid type
section [29] '.rela.debug_line': relocation 332: invalid type
section [29] '.rela.debug_line': relocation 333: invalid type
section [29] '.rela.debug_line': relocation 334: invalid type
section [29] '.rela.debug_line': relocation 335: invalid type
section [29] '.rela.debug_line': relocation 336: invalid type
section [29] '.rela.debug_line': relocation 337: invalid type
section [29] '.rela.debug_line': relocation 338: invalid type
section [29] '.rela.debug_line': relocation 339: invalid type
section [29] '.rela.debug_line': relocation 340: invalid type
section [29] '.rela.debug_line': relocation 341: invalid type
section [29] '.rela.debug_line': relocation 342: invalid type
section [29] '.rela.debug_line': relocation 343: invalid type
section [29] '.rela.debug_line': relocation 344: invalid type
section [29] '.rela.debug_line': relocation 345: invalid type
section [29] '.rela.debug_line': relocation 346: invalid type
section [29] '.rela.debug_line': relocation 347: invalid type
section [29] '.rela.debug_line': relocation 348: invalid type
section [29] '.rela.debug_line': relocation 349: invalid type
section [29] '.rela.debug_line': relocation 350: invalid type
section [29] '.rela.debug_line': relocation 351: invalid type
section [29] '.rela.debug_line': relocation 352: invalid type
section [29] '.rela.debug_line': relocation 353: invalid type
section [29] '.rela.debug_line': relocation 354: invalid type
section [29] '.rela.debug_line': relocation 355: invalid type
section [29] '.rela.debug_line': relocation 356: invalid type
section [34] '.rela.xt.lit': relocation 0: invalid type
section [34] '.rela.xt.lit': relocation 1: invalid type
section [36] '.rela.xt.prop': relocation 0: invalid type
section [36] '.rela.xt.prop': relocation 1: invalid type
section [36] '.rela.xt.prop': relocation 2: invalid type
section [36] '.rela.xt.prop': relocation 3: invalid type
section [36] '.rela.xt.prop': relocation 4: invalid type
section [36] '.rela.xt.prop': relocation 5: invalid type
section [36] '.rela.xt.prop': relocation 6: invalid type
section [36] '.rela.xt.prop': relocation 7: invalid type
section [36] '.rela.xt.prop': relocation 8: invalid type
section [36] '.rela.xt.prop': relocation 9: invalid type
section [36] '.rela.xt.prop': relocation 10: invalid type
section [36] '.rela.xt.prop': relocation 11: invalid type
section [36] '.rela.xt.prop': relocation 12: invalid type
section [36] '.rela.xt.prop': relocation 13: invalid type
section [36] '.rela.xt.prop': relocation 14: invalid type
section [36] '.rela.xt.prop': relocation 15: invalid type
section [36] '.rela.xt.prop': relocation 16: invalid type
section [36] '.rela.xt.prop': relocation 17: invalid type
section [36] '.rela.xt.prop': relocation 18: invalid type
section [36] '.rela.xt.prop': relocation 19: invalid type
section [36] '.rela.xt.prop': relocation 20: invalid type
section [36] '.rela.xt.prop': relocation 21: invalid type
section [36] '.rela.xt.prop': relocation 22: invalid type
section [36] '.rela.xt.prop': relocation 23: invalid type
section [36] '.rela.xt.prop': relocation 24: invalid type
section [36] '.rela.xt.prop': relocation 25: invalid type
section [36] '.rela.xt.prop': relocation 26: invalid type
section [36] '.rela.xt.prop': relocation 27: invalid type
section [36] '.rela.xt.prop': relocation 28: invalid type
section [36] '.rela.xt.prop': relocation 29: invalid type
section [36] '.rela.xt.prop': relocation 30: invalid type
section [36] '.rela.xt.prop': relocation 31: invalid type
section [36] '.rela.xt.prop': relocation 32: invalid type
section [36] '.rela.xt.prop': relocation 33: invalid type
section [36] '.rela.xt.prop': relocation 34: invalid type
section [36] '.rela.xt.prop': relocation 35: invalid type
section [36] '.rela.xt.prop': relocation 36: invalid type
section [36] '.rela.xt.prop': relocation 37: invalid type
section [36] '.rela.xt.prop': relocation 38: invalid type
section [36] '.rela.xt.prop': relocation 39: invalid type
section [36] '.rela.xt.prop': relocation 40: invalid type
section [36] '.rela.xt.prop': relocation 41: invalid type
section [36] '.rela.xt.prop': relocation 42: invalid type
section [36] '.rela.xt.prop': relocation 43: invalid type
section [36] '.rela.xt.prop': relocation 44: invalid type
section [36] '.rela.xt.prop': relocation 45: invalid type
section [36] '.rela.xt.prop': relocation 46: invalid type
section [36] '.rela.xt.prop': relocation 47: invalid type
section [36] '.rela.xt.prop': relocation 48: invalid type
section [36] '.rela.xt.prop': relocation 49: invalid type
section [36] '.rela.xt.prop': relocation 50: invalid type
section [36] '.rela.xt.prop': relocation 51: invalid type
section [36] '.rela.xt.prop': relocation 52: invalid type
section [36] '.rela.xt.prop': relocation 53: invalid type
section [36] '.rela.xt.prop': relocation 54: invalid type
section [36] '.rela.xt.prop': relocation 55: invalid type
section [36] '.rela.xt.prop': relocation 56: invalid type
section [36] '.rela.xt.prop': relocation 57: invalid type
section [36] '.rela.xt.prop': relocation 58: invalid type
section [36] '.rela.xt.prop': relocation 59: invalid type
section [36] '.rela.xt.prop': relocation 60: invalid type
section [36] '.rela.xt.prop': relocation 61: invalid type
section [36] '.rela.xt.prop': relocation 62: invalid type
section [36] '.rela.xt.prop': relocation 63: invalid type
section [36] '.rela.xt.prop': relocation 64: invalid type
section [36] '.rela.xt.prop': relocation 65: invalid type
section [36] '.rela.xt.prop': relocation 66: invalid type
section [36] '.rela.xt.prop': relocation 67: invalid type
section [36] '.rela.xt.prop': relocation 68: invalid type
section [36] '.rela.xt.prop': relocation 69: invalid type
section [36] '.rela.xt.prop': relocation 70: invalid type
section [36] '.rela.xt.prop': relocation 71: invalid type
section [36] '.rela.xt.prop': relocation 72: invalid type
section [36] '.rela.xt.prop': relocation 73: invalid type
section [36] '.rela.xt.prop': relocation 74: invalid type
section [36] '.rela.xt.prop': relocation 75: invalid type
section [36] '.rela.xt.prop': relocation 76: invalid type
section [36] '.rela.xt.prop': relocation 77: invalid type
section [36] '.rela.xt.prop': relocation 78: invalid type
section [36] '.rela.xt.prop': relocation 79: invalid type
section [36] '.rela.xt.prop': relocation 80: invalid type
section [36] '.rela.xt.prop': relocation 81: invalid type
section [36] '.rela.xt.prop': relocation 82: invalid type
section [36] '.rela.xt.prop': relocation 83: invalid type
section [36] '.rela.xt.prop': relocation 84: invalid type
section [36] '.rela.xt.prop': relocation 85: invalid type
section [36] '.rela.xt.prop': relocation 86: invalid type
section [36] '.rela.xt.prop': relocation 87: invalid type
section [36] '.rela.xt.prop': relocation 88: invalid type
section [36] '.rela.xt.prop': relocation 89: invalid type
section [36] '.rela.xt.prop': relocation 90: invalid type
section [36] '.rela.xt.prop': relocation 91: invalid type
section [36] '.rela.xt.prop': relocation 92: invalid type
section [36] '.rela.xt.prop': relocation 93: invalid type
section [36] '.rela.xt.prop': relocation 94: invalid type
section [36] '.rela.xt.prop': relocation 95: invalid type
section [36] '.rela.xt.prop': relocation 96: invalid type
section [36] '.rela.xt.prop': relocation 97: invalid type
section [36] '.rela.xt.prop': relocation 98: invalid type
section [36] '.rela.xt.prop': relocation 99: invalid type
section [36] '.rela.xt.prop': relocation 100: invalid type
section [36] '.rela.xt.prop': relocation 101: invalid type
section [36] '.rela.xt.prop': relocation 102: invalid type
section [36] '.rela.xt.prop': relocation 103: invalid type
section [36] '.rela.xt.prop': relocation 104: invalid type
section [36] '.rela.xt.prop': relocation 105: invalid type
section [36] '.rela.xt.prop': relocation 106: invalid type
section [36] '.rela.xt.prop': relocation 107: invalid type
section [36] '.rela.xt.prop': relocation 108: invalid type
section [36] '.rela.xt.prop': relocation 109: invalid type
section [36] '.rela.xt.prop': relocation 110: invalid type
section [36] '.rela.xt.prop': relocation 111: invalid type
section [36] '.rela.xt.prop': relocation 112: invalid type
section [36] '.rela.xt.prop': relocation 113: invalid type
section [36] '.rela.xt.prop': relocation 114: invalid type
section [36] '.rela.xt.prop': relocation 115: invalid type
section [36] '.rela.xt.prop': relocation 116: invalid type
section [36] '.rela.xt.prop': relocation 117: invalid type
section [36] '.rela.xt.prop': relocation 118: invalid type
section [36] '.rela.xt.prop': relocation 119: invalid type
section [36] '.rela.xt.prop': relocation 120: invalid type
section [36] '.rela.xt.prop': relocation 121: invalid type
section [36] '.rela.xt.prop': relocation 122: invalid type
section [36] '.rela.xt.prop': relocation 123: invalid type
section [36] '.rela.xt.prop': relocation 124: invalid type
section [36] '.rela.xt.prop': relocation 125: invalid type
section [36] '.rela.xt.prop': relocation 126: invalid type
section [36] '.rela.xt.prop': relocation 127: invalid type
section [36] '.rela.xt.prop': relocation 128: invalid type
section [36] '.rela.xt.prop': relocation 129: invalid type
section [36] '.rela.xt.prop': relocation 130: invalid type
section [36] '.rela.xt.prop': relocation 131: invalid type
section [36] '.rela.xt.prop': relocation 132: invalid type
section [36] '.rela.xt.prop': relocation 133: invalid type
section [36] '.rela.xt.prop': relocation 134: invalid type
section [36] '.rela.xt.prop': relocation 135: invalid type
section [36] '.rela.xt.prop': relocation 136: invalid type
section [36] '.rela.xt.prop': relocation 137: invalid type
section [36] '.rela.xt.prop': relocation 138: invalid type
section [36] '.rela.xt.prop': relocation 139: invalid type
section [36] '.rela.xt.prop': relocation 140: invalid type
section [36] '.rela.xt.prop': relocation 141: invalid type
section [36] '.rela.xt.prop': relocation 142: invalid type
section [36] '.rela.xt.prop': relocation 143: invalid type
section [36] '.rela.xt.prop': relocation 144: invalid type
section [36] '.rela.xt.prop': relocation 145: invalid type
section [36] '.rela.xt.prop': relocation 146: invalid type
section [36] '.rela.xt.prop': relocation 147: invalid type
section [36] '.rela.xt.prop': relocation 148: invalid type
*** failure in /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/size.o
invalid machine flags: 0x300
section [ 2] '.rela.literal': relocation 0: invalid type
section [ 2] '.rela.literal': relocation 1: invalid type
section [ 2] '.rela.literal': relocation 2: invalid type
section [ 2] '.rela.literal': relocation 3: invalid type
section [ 2] '.rela.literal': relocation 4: invalid type
section [ 2] '.rela.literal': relocation 5: invalid type
section [ 2] '.rela.literal': relocation 6: invalid type
section [ 2] '.rela.literal': relocation 7: invalid type
section [ 2] '.rela.literal': relocation 8: invalid type
section [ 2] '.rela.literal': relocation 9: invalid type
section [ 2] '.rela.literal': relocation 10: invalid type
section [ 2] '.rela.literal': relocation 11: invalid type
section [ 2] '.rela.literal': relocation 12: invalid type
section [ 2] '.rela.literal': relocation 13: invalid type
section [ 2] '.rela.literal': relocation 14: invalid type
section [ 2] '.rela.literal': relocation 15: invalid type
section [ 2] '.rela.literal': relocation 16: invalid type
section [ 2] '.rela.literal': relocation 17: invalid type
section [ 2] '.rela.literal': relocation 18: invalid type
section [ 2] '.rela.literal': relocation 19: invalid type
section [ 2] '.rela.literal': relocation 20: invalid type
section [ 2] '.rela.literal': relocation 21: invalid type
section [ 2] '.rela.literal': relocation 22: invalid type
section [ 2] '.rela.literal': relocation 23: invalid type
section [ 2] '.rela.literal': relocation 24: invalid type
section [ 2] '.rela.literal': relocation 25: invalid type
section [ 2] '.rela.literal': relocation 26: invalid type
section [ 2] '.rela.literal': relocation 27: invalid type
section [ 2] '.rela.literal': relocation 28: invalid type
section [ 2] '.rela.literal': relocation 29: invalid type
section [ 2] '.rela.literal': relocation 30: invalid type
section [ 2] '.rela.literal': relocation 31: invalid type
section [ 2] '.rela.literal': relocation 32: invalid type
section [ 2] '.rela.literal': relocation 33: invalid type
section [ 2] '.rela.literal': relocation 34: invalid type
section [ 2] '.rela.literal': relocation 35: invalid type
section [ 2] '.rela.literal': relocation 36: invalid type
section [ 2] '.rela.literal': relocation 37: invalid type
section [ 2] '.rela.literal': relocation 38: invalid type
section [ 2] '.rela.literal': relocation 39: invalid type
section [ 2] '.rela.literal': relocation 40: invalid type
section [ 2] '.rela.literal': relocation 41: invalid type
section [ 2] '.rela.literal': relocation 42: invalid type
section [ 2] '.rela.literal': relocation 43: invalid type
section [ 2] '.rela.literal': relocation 44: invalid type
section [ 2] '.rela.literal': relocation 45: invalid type
section [ 2] '.rela.literal': relocation 46: invalid type
section [ 2] '.rela.literal': relocation 47: invalid type
section [ 2] '.rela.literal': relocation 48: invalid type
section [ 2] '.rela.literal': relocation 49: invalid type
section [ 2] '.rela.literal': relocation 50: invalid type
section [ 2] '.rela.literal': relocation 51: invalid type
section [ 2] '.rela.literal': relocation 52: invalid type
section [ 2] '.rela.literal': relocation 53: invalid type
section [ 2] '.rela.literal': relocation 54: invalid type
section [ 2] '.rela.literal': relocation 55: invalid type
section [ 2] '.rela.literal': relocation 56: invalid type
section [ 2] '.rela.literal': relocation 57: invalid type
section [ 2] '.rela.literal': relocation 58: invalid type
section [ 2] '.rela.literal': relocation 59: invalid type
section [ 2] '.rela.literal': relocation 60: invalid type
section [ 2] '.rela.literal': relocation 61: invalid type
section [ 2] '.rela.literal': relocation 62: invalid type
section [ 2] '.rela.literal': relocation 63: invalid type
section [ 2] '.rela.literal': relocation 64: invalid type
section [ 2] '.rela.literal': relocation 65: invalid type
section [ 2] '.rela.literal': relocation 66: invalid type
section [ 2] '.rela.literal': relocation 67: invalid type
section [ 2] '.rela.literal': relocation 68: invalid type
section [ 2] '.rela.literal': relocation 69: invalid type
section [ 2] '.rela.literal': relocation 70: invalid type
section [ 2] '.rela.literal': relocation 71: invalid type
section [ 2] '.rela.literal': relocation 72: invalid type
section [ 2] '.rela.literal': relocation 73: invalid type
section [ 2] '.rela.literal': relocation 74: invalid type
section [ 2] '.rela.literal': relocation 75: invalid type
section [ 2] '.rela.literal': relocation 76: invalid type
section [ 2] '.rela.literal': relocation 77: invalid type
section [ 2] '.rela.literal': relocation 78: invalid type
section [ 2] '.rela.literal': relocation 79: invalid type
section [ 2] '.rela.literal': relocation 80: invalid type
section [ 2] '.rela.literal': relocation 81: invalid type
section [ 2] '.rela.literal': relocation 82: invalid type
section [ 2] '.rela.literal': relocation 83: invalid type
section [ 2] '.rela.literal': relocation 84: invalid type
section [ 2] '.rela.literal': relocation 85: invalid type
section [ 2] '.rela.literal': relocation 86: invalid type
section [ 2] '.rela.literal': relocation 87: invalid type
section [ 2] '.rela.literal': relocation 88: invalid type
section [ 2] '.rela.literal': relocation 89: invalid type
section [ 2] '.rela.literal': relocation 90: invalid type
section [ 2] '.rela.literal': relocation 91: invalid type
section [ 2] '.rela.literal': relocation 92: invalid type
section [ 2] '.rela.literal': relocation 93: invalid type
section [ 2] '.rela.literal': relocation 94: invalid type
section [ 2] '.rela.literal': relocation 95: invalid type
section [ 2] '.rela.literal': relocation 96: invalid type
section [ 2] '.rela.literal': relocation 97: invalid type
section [ 2] '.rela.literal': relocation 98: invalid type
section [ 2] '.rela.literal': relocation 99: invalid type
section [ 2] '.rela.literal': relocation 100: invalid type
section [ 2] '.rela.literal': relocation 101: invalid type
section [ 2] '.rela.literal': relocation 102: invalid type
section [ 2] '.rela.literal': relocation 103: invalid type
section [ 2] '.rela.literal': relocation 104: invalid type
section [ 2] '.rela.literal': relocation 105: invalid type
section [ 2] '.rela.literal': relocation 106: invalid type
section [ 2] '.rela.literal': relocation 107: invalid type
section [ 2] '.rela.literal': relocation 108: invalid type
section [ 2] '.rela.literal': relocation 109: invalid type
section [ 2] '.rela.literal': relocation 110: invalid type
section [ 2] '.rela.literal': relocation 111: invalid type
section [ 2] '.rela.literal': relocation 112: invalid type
section [ 2] '.rela.literal': relocation 113: invalid type
section [ 2] '.rela.literal': relocation 114: invalid type
section [ 2] '.rela.literal': relocation 115: invalid type
section [ 2] '.rela.literal': relocation 116: invalid type
section [ 2] '.rela.literal': relocation 117: invalid type
section [ 2] '.rela.literal': relocation 118: invalid type
section [ 2] '.rela.literal': relocation 119: invalid type
section [ 2] '.rela.literal': relocation 120: invalid type
section [ 2] '.rela.literal': relocation 121: invalid type
section [ 2] '.rela.literal': relocation 122: invalid type
section [ 2] '.rela.literal': relocation 123: invalid type
section [ 2] '.rela.literal': relocation 124: invalid type
section [ 2] '.rela.literal': relocation 125: invalid type
section [ 2] '.rela.literal': relocation 126: invalid type
section [ 2] '.rela.literal': relocation 127: invalid type
section [ 2] '.rela.literal': relocation 128: invalid type
section [ 2] '.rela.literal': relocation 129: invalid type
section [ 2] '.rela.literal': relocation 130: invalid type
section [ 2] '.rela.literal': relocation 131: invalid type
section [ 2] '.rela.literal': relocation 132: invalid type
section [ 2] '.rela.literal': relocation 133: invalid type
section [ 2] '.rela.literal': relocation 134: invalid type
section [ 2] '.rela.literal': relocation 135: invalid type
section [ 2] '.rela.literal': relocation 136: invalid type
section [ 2] '.rela.literal': relocation 137: invalid type
section [ 2] '.rela.literal': relocation 138: invalid type
section [ 2] '.rela.literal': relocation 139: invalid type
section [ 2] '.rela.literal': relocation 140: invalid type
section [ 2] '.rela.literal': relocation 141: invalid type
section [ 2] '.rela.literal': relocation 142: invalid type
section [ 2] '.rela.literal': relocation 143: invalid type
section [ 2] '.rela.literal': relocation 144: invalid type
section [ 2] '.rela.literal': relocation 145: invalid type
section [ 2] '.rela.literal': relocation 146: invalid type
section [ 2] '.rela.literal': relocation 147: invalid type
section [ 2] '.rela.literal': relocation 148: invalid type
section [ 2] '.rela.literal': relocation 149: invalid type
section [ 2] '.rela.literal': relocation 150: invalid type
section [ 2] '.rela.literal': relocation 151: invalid type
section [ 2] '.rela.literal': relocation 152: invalid type
section [ 2] '.rela.literal': relocation 153: invalid type
section [ 2] '.rela.literal': relocation 154: invalid type
section [ 2] '.rela.literal': relocation 155: invalid type
section [ 2] '.rela.literal': relocation 156: invalid type
section [ 2] '.rela.literal': relocation 157: invalid type
section [ 2] '.rela.literal': relocation 158: invalid type
section [ 2] '.rela.literal': relocation 159: invalid type
section [ 2] '.rela.literal': relocation 160: invalid type
section [ 2] '.rela.literal': relocation 161: invalid type
section [ 2] '.rela.literal': relocation 162: invalid type
section [ 2] '.rela.literal': relocation 163: invalid type
section [ 2] '.rela.literal': relocation 164: invalid type
section [ 2] '.rela.literal': relocation 165: invalid type
section [ 2] '.rela.literal': relocation 166: invalid type
section [ 2] '.rela.literal': relocation 167: invalid type
section [ 2] '.rela.literal': relocation 168: invalid type
section [ 2] '.rela.literal': relocation 169: invalid type
section [ 2] '.rela.literal': relocation 170: invalid type
section [ 2] '.rela.literal': relocation 171: invalid type
section [ 2] '.rela.literal': relocation 172: invalid type
section [ 2] '.rela.literal': relocation 173: invalid type
section [ 2] '.rela.literal': relocation 174: invalid type
section [ 2] '.rela.literal': relocation 175: invalid type
section [ 2] '.rela.literal': relocation 176: invalid type
section [ 2] '.rela.literal': relocation 177: invalid type
section [ 2] '.rela.literal': relocation 178: invalid type
section [ 4] '.rela.literal.unlikely': relocation 0: invalid type
section [ 4] '.rela.literal.unlikely': relocation 1: invalid type
section [ 4] '.rela.literal.unlikely': relocation 2: invalid type
section [ 4] '.rela.literal.unlikely': relocation 3: invalid type
section [ 4] '.rela.literal.unlikely': relocation 4: invalid type
section [ 4] '.rela.literal.unlikely': relocation 5: invalid type
section [ 4] '.rela.literal.unlikely': relocation 6: invalid type
section [ 4] '.rela.literal.unlikely': relocation 7: invalid type
section [ 4] '.rela.literal.unlikely': relocation 8: invalid type
section [ 4] '.rela.literal.unlikely': relocation 9: invalid type
section [ 4] '.rela.literal.unlikely': relocation 10: invalid type
section [ 4] '.rela.literal.unlikely': relocation 11: invalid type
section [ 4] '.rela.literal.unlikely': relocation 12: invalid type
section [ 4] '.rela.literal.unlikely': relocation 13: invalid type
section [ 4] '.rela.literal.unlikely': relocation 14: invalid type
section [ 4] '.rela.literal.unlikely': relocation 15: invalid type
section [ 4] '.rela.literal.unlikely': relocation 16: invalid type
section [ 4] '.rela.literal.unlikely': relocation 17: invalid type
section [ 4] '.rela.literal.unlikely': relocation 18: invalid type
section [ 4] '.rela.literal.unlikely': relocation 19: invalid type
section [ 4] '.rela.literal.unlikely': relocation 20: invalid type
section [ 4] '.rela.literal.unlikely': relocation 21: invalid type
section [ 4] '.rela.literal.unlikely': relocation 22: invalid type
section [ 4] '.rela.literal.unlikely': relocation 23: invalid type
section [ 4] '.rela.literal.unlikely': relocation 24: invalid type
section [ 4] '.rela.literal.unlikely': relocation 25: invalid type
section [ 6] '.rela.literal.startup': relocation 0: invalid type
section [ 6] '.rela.literal.startup': relocation 1: invalid type
section [ 6] '.rela.literal.startup': relocation 2: invalid type
section [ 6] '.rela.literal.startup': relocation 3: invalid type
section [ 6] '.rela.literal.startup': relocation 4: invalid type
section [ 6] '.rela.literal.startup': relocation 5: invalid type
section [ 6] '.rela.literal.startup': relocation 6: invalid type
section [ 6] '.rela.literal.startup': relocation 7: invalid type
section [ 6] '.rela.literal.startup': relocation 8: invalid type
section [ 6] '.rela.literal.startup': relocation 9: invalid type
section [ 6] '.rela.literal.startup': relocation 10: invalid type
section [ 6] '.rela.literal.startup': relocation 11: invalid type
section [ 6] '.rela.literal.startup': relocation 12: invalid type
section [ 6] '.rela.literal.startup': relocation 13: invalid type
section [ 6] '.rela.literal.startup': relocation 14: invalid type
section [ 6] '.rela.literal.startup': relocation 15: invalid type
section [ 6] '.rela.literal.startup': relocation 16: invalid type
section [ 6] '.rela.literal.startup': relocation 17: invalid type
section [ 6] '.rela.literal.startup': relocation 18: invalid type
section [ 6] '.rela.literal.startup': relocation 19: invalid type
section [ 6] '.rela.literal.startup': relocation 20: invalid type
section [ 8] '.rela.text': relocation 0: invalid type
section [ 8] '.rela.text': relocation 1: invalid type
section [ 8] '.rela.text': relocation 2: invalid type
section [ 8] '.rela.text': relocation 3: invalid type
section [ 8] '.rela.text': relocation 4: invalid type
section [ 8] '.rela.text': relocation 5: invalid type
section [ 8] '.rela.text': relocation 6: invalid type
section [ 8] '.rela.text': relocation 7: invalid type
section [ 8] '.rela.text': relocation 8: invalid type
section [ 8] '.rela.text': relocation 9: invalid type
section [ 8] '.rela.text': relocation 10: invalid type
section [ 8] '.rela.text': relocation 11: invalid type
section [ 8] '.rela.text': relocation 12: invalid type
section [ 8] '.rela.text': relocation 13: invalid type
section [ 8] '.rela.text': relocation 14: invalid type
section [ 8] '.rela.text': relocation 15: invalid type
section [ 8] '.rela.text': relocation 16: invalid type
section [ 8] '.rela.text': relocation 17: invalid type
section [ 8] '.rela.text': relocation 18: invalid type
section [ 8] '.rela.text': relocation 19: invalid type
section [ 8] '.rela.text': relocation 20: invalid type
section [ 8] '.rela.text': relocation 21: invalid type
section [ 8] '.rela.text': relocation 22: invalid type
section [ 8] '.rela.text': relocation 23: invalid type
section [ 8] '.rela.text': relocation 24: invalid type
section [ 8] '.rela.text': relocation 25: invalid type
section [ 8] '.rela.text': relocation 26: invalid type
section [ 8] '.rela.text': relocation 27: invalid type
section [ 8] '.rela.text': relocation 28: invalid type
section [ 8] '.rela.text': relocation 29: invalid type
section [ 8] '.rela.text': relocation 30: invalid type
section [ 8] '.rela.text': relocation 31: invalid type
section [ 8] '.rela.text': relocation 32: invalid type
section [ 8] '.rela.text': relocation 33: invalid type
section [ 8] '.rela.text': relocation 34: invalid type
section [ 8] '.rela.text': relocation 35: invalid type
section [ 8] '.rela.text': relocation 36: invalid type
section [ 8] '.rela.text': relocation 37: invalid type
section [ 8] '.rela.text': relocation 38: invalid type
section [ 8] '.rela.text': relocation 39: invalid type
section [ 8] '.rela.text': relocation 40: invalid type
section [ 8] '.rela.text': relocation 41: invalid type
section [ 8] '.rela.text': relocation 42: invalid type
section [ 8] '.rela.text': relocation 43: invalid type
section [ 8] '.rela.text': relocation 44: invalid type
section [ 8] '.rela.text': relocation 45: invalid type
section [ 8] '.rela.text': relocation 46: invalid type
section [ 8] '.rela.text': relocation 47: invalid type
section [ 8] '.rela.text': relocation 48: invalid type
section [ 8] '.rela.text': relocation 49: invalid type
section [ 8] '.rela.text': relocation 50: invalid type
section [ 8] '.rela.text': relocation 51: invalid type
section [ 8] '.rela.text': relocation 52: invalid type
section [ 8] '.rela.text': relocation 53: invalid type
section [ 8] '.rela.text': relocation 54: invalid type
section [ 8] '.rela.text': relocation 55: invalid type
section [ 8] '.rela.text': relocation 56: invalid type
section [ 8] '.rela.text': relocation 57: invalid type
section [ 8] '.rela.text': relocation 58: invalid type
section [ 8] '.rela.text': relocation 59: invalid type
section [ 8] '.rela.text': relocation 60: invalid type
section [ 8] '.rela.text': relocation 61: invalid type
section [ 8] '.rela.text': relocation 62: invalid type
section [ 8] '.rela.text': relocation 63: invalid type
section [ 8] '.rela.text': relocation 64: invalid type
section [ 8] '.rela.text': relocation 65: invalid type
section [ 8] '.rela.text': relocation 66: invalid type
section [ 8] '.rela.text': relocation 67: invalid type
section [ 8] '.rela.text': relocation 68: invalid type
section [ 8] '.rela.text': relocation 69: invalid type
section [ 8] '.rela.text': relocation 70: invalid type
section [ 8] '.rela.text': relocation 71: invalid type
section [ 8] '.rela.text': relocation 72: invalid type
section [ 8] '.rela.text': relocation 73: invalid type
section [ 8] '.rela.text': relocation 74: invalid type
section [ 8] '.rela.text': relocation 75: invalid type
section [ 8] '.rela.text': relocation 76: invalid type
section [ 8] '.rela.text': relocation 77: invalid type
section [ 8] '.rela.text': relocation 78: invalid type
section [ 8] '.rela.text': relocation 79: invalid type
section [ 8] '.rela.text': relocation 80: invalid type
section [ 8] '.rela.text': relocation 81: invalid type
section [ 8] '.rela.text': relocation 82: invalid type
section [ 8] '.rela.text': relocation 83: invalid type
section [ 8] '.rela.text': relocation 84: invalid type
section [ 8] '.rela.text': relocation 85: invalid type
section [ 8] '.rela.text': relocation 86: invalid type
section [ 8] '.rela.text': relocation 87: invalid type
section [ 8] '.rela.text': relocation 88: invalid type
section [ 8] '.rela.text': relocation 89: invalid type
section [ 8] '.rela.text': relocation 90: invalid type
section [ 8] '.rela.text': relocation 91: invalid type
section [ 8] '.rela.text': relocation 92: invalid type
section [ 8] '.rela.text': relocation 93: invalid type
section [ 8] '.rela.text': relocation 94: invalid type
section [ 8] '.rela.text': relocation 95: invalid type
section [ 8] '.rela.text': relocation 96: invalid type
section [ 8] '.rela.text': relocation 97: invalid type
section [ 8] '.rela.text': relocation 98: invalid type
section [ 8] '.rela.text': relocation 99: invalid type
section [ 8] '.rela.text': relocation 100: invalid type
section [ 8] '.rela.text': relocation 101: invalid type
section [ 8] '.rela.text': relocation 102: invalid type
section [ 8] '.rela.text': relocation 103: invalid type
section [ 8] '.rela.text': relocation 104: invalid type
section [ 8] '.rela.text': relocation 105: invalid type
section [ 8] '.rela.text': relocation 106: invalid type
section [ 8] '.rela.text': relocation 107: invalid type
section [ 8] '.rela.text': relocation 108: invalid type
section [ 8] '.rela.text': relocation 109: invalid type
section [ 8] '.rela.text': relocation 110: invalid type
section [ 8] '.rela.text': relocation 111: invalid type
section [ 8] '.rela.text': relocation 112: invalid type
section [ 8] '.rela.text': relocation 113: invalid type
section [ 8] '.rela.text': relocation 114: invalid type
section [ 8] '.rela.text': relocation 115: invalid type
section [ 8] '.rela.text': relocation 116: invalid type
section [ 8] '.rela.text': relocation 117: invalid type
section [ 8] '.rela.text': relocation 118: invalid type
section [ 8] '.rela.text': relocation 119: invalid type
section [ 8] '.rela.text': relocation 120: invalid type
section [ 8] '.rela.text': relocation 121: invalid type
section [ 8] '.rela.text': relocation 122: invalid type
section [ 8] '.rela.text': relocation 123: invalid type
section [ 8] '.rela.text': relocation 124: invalid type
section [ 8] '.rela.text': relocation 125: invalid type
section [ 8] '.rela.text': relocation 126: invalid type
section [ 8] '.rela.text': relocation 127: invalid type
section [ 8] '.rela.text': relocation 128: invalid type
section [ 8] '.rela.text': relocation 129: invalid type
section [ 8] '.rela.text': relocation 130: invalid type
section [ 8] '.rela.text': relocation 131: invalid type
section [ 8] '.rela.text': relocation 132: invalid type
section [ 8] '.rela.text': relocation 133: invalid type
section [ 8] '.rela.text': relocation 134: invalid type
section [ 8] '.rela.text': relocation 135: invalid type
section [ 8] '.rela.text': relocation 136: invalid type
section [ 8] '.rela.text': relocation 137: invalid type
section [ 8] '.rela.text': relocation 138: invalid type
section [ 8] '.rela.text': relocation 139: invalid type
section [ 8] '.rela.text': relocation 140: invalid type
section [ 8] '.rela.text': relocation 141: invalid type
section [ 8] '.rela.text': relocation 142: invalid type
section [ 8] '.rela.text': relocation 143: invalid type
section [ 8] '.rela.text': relocation 144: invalid type
section [ 8] '.rela.text': relocation 145: invalid type
section [ 8] '.rela.text': relocation 146: invalid type
section [ 8] '.rela.text': relocation 147: invalid type
section [ 8] '.rela.text': relocation 148: invalid type
section [ 8] '.rela.text': relocation 149: invalid type
section [ 8] '.rela.text': relocation 150: invalid type
section [ 8] '.rela.text': relocation 151: invalid type
section [ 8] '.rela.text': relocation 152: invalid type
section [ 8] '.rela.text': relocation 153: invalid type
section [ 8] '.rela.text': relocation 154: invalid type
section [ 8] '.rela.text': relocation 155: invalid type
section [ 8] '.rela.text': relocation 156: invalid type
section [ 8] '.rela.text': relocation 157: invalid type
section [ 8] '.rela.text': relocation 158: invalid type
section [ 8] '.rela.text': relocation 159: invalid type
section [ 8] '.rela.text': relocation 160: invalid type
section [ 8] '.rela.text': relocation 161: invalid type
section [ 8] '.rela.text': relocation 162: invalid type
section [ 8] '.rela.text': relocation 163: invalid type
section [ 8] '.rela.text': relocation 164: invalid type
section [ 8] '.rela.text': relocation 165: invalid type
section [ 8] '.rela.text': relocation 166: invalid type
section [ 8] '.rela.text': relocation 167: invalid type
section [ 8] '.rela.text': relocation 168: invalid type
section [ 8] '.rela.text': relocation 169: invalid type
section [ 8] '.rela.text': relocation 170: invalid type
section [ 8] '.rela.text': relocation 171: invalid type
section [ 8] '.rela.text': relocation 172: invalid type
section [ 8] '.rela.text': relocation 173: invalid type
section [ 8] '.rela.text': relocation 174: invalid type
section [ 8] '.rela.text': relocation 175: invalid type
section [ 8] '.rela.text': relocation 176: invalid type
section [ 8] '.rela.text': relocation 177: invalid type
section [ 8] '.rela.text': relocation 178: invalid type
section [ 8] '.rela.text': relocation 179: invalid type
section [ 8] '.rela.text': relocation 180: invalid type
section [ 8] '.rela.text': relocation 181: invalid type
section [ 8] '.rela.text': relocation 182: invalid type
section [ 8] '.rela.text': relocation 183: invalid type
section [ 8] '.rela.text': relocation 184: invalid type
section [ 8] '.rela.text': relocation 185: invalid type
section [ 8] '.rela.text': relocation 186: invalid type
section [ 8] '.rela.text': relocation 187: invalid type
section [ 8] '.rela.text': relocation 188: invalid type
section [ 8] '.rela.text': relocation 189: invalid type
section [ 8] '.rela.text': relocation 190: invalid type
section [ 8] '.rela.text': relocation 191: invalid type
section [ 8] '.rela.text': relocation 192: invalid type
section [ 8] '.rela.text': relocation 193: invalid type
section [ 8] '.rela.text': relocation 194: invalid type
section [ 8] '.rela.text': relocation 195: invalid type
section [ 8] '.rela.text': relocation 196: invalid type
section [ 8] '.rela.text': relocation 197: invalid type
section [ 8] '.rela.text': relocation 198: invalid type
section [ 8] '.rela.text': relocation 199: invalid type
section [ 8] '.rela.text': relocation 200: invalid type
section [ 8] '.rela.text': relocation 201: invalid type
section [ 8] '.rela.text': relocation 202: invalid type
section [ 8] '.rela.text': relocation 203: invalid type
section [ 8] '.rela.text': relocation 204: invalid type
section [ 8] '.rela.text': relocation 205: invalid type
section [ 8] '.rela.text': relocation 206: invalid type
section [ 8] '.rela.text': relocation 207: invalid type
section [ 8] '.rela.text': relocation 208: invalid type
section [ 8] '.rela.text': relocation 209: invalid type
section [ 8] '.rela.text': relocation 210: invalid type
section [ 8] '.rela.text': relocation 211: invalid type
section [ 8] '.rela.text': relocation 212: invalid type
section [ 8] '.rela.text': relocation 213: invalid type
section [ 8] '.rela.text': relocation 214: invalid type
section [ 8] '.rela.text': relocation 215: invalid type
section [ 8] '.rela.text': relocation 216: invalid type
section [ 8] '.rela.text': relocation 217: invalid type
section [ 8] '.rela.text': relocation 218: invalid type
section [ 8] '.rela.text': relocation 219: invalid type
section [ 8] '.rela.text': relocation 220: invalid type
section [ 8] '.rela.text': relocation 221: invalid type
section [ 8] '.rela.text': relocation 222: invalid type
section [ 8] '.rela.text': relocation 223: invalid type
section [ 8] '.rela.text': relocation 224: invalid type
section [ 8] '.rela.text': relocation 225: invalid type
section [ 8] '.rela.text': relocation 226: invalid type
section [ 8] '.rela.text': relocation 227: invalid type
section [ 8] '.rela.text': relocation 228: invalid type
section [ 8] '.rela.text': relocation 229: invalid type
section [ 8] '.rela.text': relocation 230: invalid type
section [ 8] '.rela.text': relocation 231: invalid type
section [ 8] '.rela.text': relocation 232: invalid type
section [ 8] '.rela.text': relocation 233: invalid type
section [ 8] '.rela.text': relocation 234: invalid type
section [ 8] '.rela.text': relocation 235: invalid type
section [ 8] '.rela.text': relocation 236: invalid type
section [ 8] '.rela.text': relocation 237: invalid type
section [ 8] '.rela.text': relocation 238: invalid type
section [ 8] '.rela.text': relocation 239: invalid type
section [ 8] '.rela.text': relocation 240: invalid type
section [ 8] '.rela.text': relocation 241: invalid type
section [ 8] '.rela.text': relocation 242: invalid type
section [ 8] '.rela.text': relocation 243: invalid type
section [ 8] '.rela.text': relocation 244: invalid type
section [ 8] '.rela.text': relocation 245: invalid type
section [ 8] '.rela.text': relocation 246: invalid type
section [ 8] '.rela.text': relocation 247: invalid type
section [ 8] '.rela.text': relocation 248: invalid type
section [ 8] '.rela.text': relocation 249: invalid type
section [ 8] '.rela.text': relocation 250: invalid type
section [ 8] '.rela.text': relocation 251: invalid type
section [ 8] '.rela.text': relocation 252: invalid type
section [ 8] '.rela.text': relocation 253: invalid type
section [ 8] '.rela.text': relocation 254: invalid type
section [ 8] '.rela.text': relocation 255: invalid type
section [ 8] '.rela.text': relocation 256: invalid type
section [ 8] '.rela.text': relocation 257: invalid type
section [ 8] '.rela.text': relocation 258: invalid type
section [ 8] '.rela.text': relocation 259: invalid type
section [ 8] '.rela.text': relocation 260: invalid type
section [ 8] '.rela.text': relocation 261: invalid type
section [ 8] '.rela.text': relocation 262: invalid type
section [ 8] '.rela.text': relocation 263: invalid type
section [ 8] '.rela.text': relocation 264: invalid type
section [ 8] '.rela.text': relocation 265: invalid type
section [ 8] '.rela.text': relocation 266: invalid type
section [ 8] '.rela.text': relocation 267: invalid type
section [ 8] '.rela.text': relocation 268: invalid type
section [ 8] '.rela.text': relocation 269: invalid type
section [ 8] '.rela.text': relocation 270: invalid type
section [ 8] '.rela.text': relocation 271: invalid type
section [ 8] '.rela.text': relocation 272: invalid type
section [ 8] '.rela.text': relocation 273: invalid type
section [ 8] '.rela.text': relocation 274: invalid type
section [ 8] '.rela.text': relocation 275: invalid type
section [ 8] '.rela.text': relocation 276: invalid type
section [ 8] '.rela.text': relocation 277: invalid type
section [ 8] '.rela.text': relocation 278: invalid type
section [ 8] '.rela.text': relocation 279: invalid type
section [ 8] '.rela.text': relocation 280: invalid type
section [ 8] '.rela.text': relocation 281: invalid type
section [ 8] '.rela.text': relocation 282: invalid type
section [ 8] '.rela.text': relocation 283: invalid type
section [ 8] '.rela.text': relocation 284: invalid type
section [ 8] '.rela.text': relocation 285: invalid type
section [ 8] '.rela.text': relocation 286: invalid type
section [ 8] '.rela.text': relocation 287: invalid type
section [ 8] '.rela.text': relocation 288: invalid type
section [ 8] '.rela.text': relocation 289: invalid type
section [ 8] '.rela.text': relocation 290: invalid type
section [ 8] '.rela.text': relocation 291: invalid type
section [ 8] '.rela.text': relocation 292: invalid type
section [ 8] '.rela.text': relocation 293: invalid type
section [ 8] '.rela.text': relocation 294: invalid type
section [ 8] '.rela.text': relocation 295: invalid type
section [ 8] '.rela.text': relocation 296: invalid type
section [ 8] '.rela.text': relocation 297: invalid type
section [ 8] '.rela.text': relocation 298: invalid type
section [ 8] '.rela.text': relocation 299: invalid type
section [ 8] '.rela.text': relocation 300: invalid type
section [ 8] '.rela.text': relocation 301: invalid type
section [ 8] '.rela.text': relocation 302: invalid type
section [ 8] '.rela.text': relocation 303: invalid type
section [ 8] '.rela.text': relocation 304: invalid type
section [ 8] '.rela.text': relocation 305: invalid type
section [ 8] '.rela.text': relocation 306: invalid type
section [ 8] '.rela.text': relocation 307: invalid type
section [ 8] '.rela.text': relocation 308: invalid type
section [ 8] '.rela.text': relocation 309: invalid type
section [ 8] '.rela.text': relocation 310: invalid type
section [ 8] '.rela.text': relocation 311: invalid type
section [ 8] '.rela.text': relocation 312: invalid type
section [ 8] '.rela.text': relocation 313: invalid type
section [ 8] '.rela.text': relocation 314: invalid type
section [ 8] '.rela.text': relocation 315: invalid type
section [ 8] '.rela.text': relocation 316: invalid type
section [ 8] '.rela.text': relocation 317: invalid type
section [ 8] '.rela.text': relocation 318: invalid type
section [ 8] '.rela.text': relocation 319: invalid type
section [ 8] '.rela.text': relocation 320: invalid type
section [ 8] '.rela.text': relocation 321: invalid type
section [ 8] '.rela.text': relocation 322: invalid type
section [ 8] '.rela.text': relocation 323: invalid type
section [ 8] '.rela.text': relocation 324: invalid type
section [ 8] '.rela.text': relocation 325: invalid type
section [ 8] '.rela.text': relocation 326: invalid type
section [ 8] '.rela.text': relocation 327: invalid type
section [ 8] '.rela.text': relocation 328: invalid type
section [ 8] '.rela.text': relocation 329: invalid type
section [ 8] '.rela.text': relocation 330: invalid type
section [ 8] '.rela.text': relocation 331: invalid type
section [ 8] '.rela.text': relocation 332: invalid type
section [ 8] '.rela.text': relocation 333: invalid type
section [ 8] '.rela.text': relocation 334: invalid type
section [ 8] '.rela.text': relocation 335: invalid type
section [ 8] '.rela.text': relocation 336: invalid type
section [ 8] '.rela.text': relocation 337: invalid type
section [ 8] '.rela.text': relocation 338: invalid type
section [ 8] '.rela.text': relocation 339: invalid type
section [ 8] '.rela.text': relocation 340: invalid type
section [ 8] '.rela.text': relocation 341: invalid type
section [ 8] '.rela.text': relocation 342: invalid type
section [ 8] '.rela.text': relocation 343: invalid type
section [ 8] '.rela.text': relocation 344: invalid type
section [ 8] '.rela.text': relocation 345: invalid type
section [ 8] '.rela.text': relocation 346: invalid type
section [ 8] '.rela.text': relocation 347: invalid type
section [ 8] '.rela.text': relocation 348: invalid type
section [ 8] '.rela.text': relocation 349: invalid type
section [ 8] '.rela.text': relocation 350: invalid type
section [ 8] '.rela.text': relocation 351: invalid type
section [ 8] '.rela.text': relocation 352: invalid type
section [ 8] '.rela.text': relocation 353: invalid type
section [ 8] '.rela.text': relocation 354: invalid type
section [ 8] '.rela.text': relocation 355: invalid type
section [ 8] '.rela.text': relocation 356: invalid type
section [ 8] '.rela.text': relocation 357: invalid type
section [ 8] '.rela.text': relocation 358: invalid type
section [ 8] '.rela.text': relocation 359: invalid type
section [ 8] '.rela.text': relocation 360: invalid type
section [ 8] '.rela.text': relocation 361: invalid type
section [ 8] '.rela.text': relocation 362: invalid type
section [ 8] '.rela.text': relocation 363: invalid type
section [ 8] '.rela.text': relocation 364: invalid type
section [ 8] '.rela.text': relocation 365: invalid type
section [ 8] '.rela.text': relocation 366: invalid type
section [ 8] '.rela.text': relocation 367: invalid type
section [ 8] '.rela.text': relocation 368: invalid type
section [ 8] '.rela.text': relocation 369: invalid type
section [ 8] '.rela.text': relocation 370: invalid type
section [ 8] '.rela.text': relocation 371: invalid type
section [ 8] '.rela.text': relocation 372: invalid type
section [ 8] '.rela.text': relocation 373: invalid type
section [ 8] '.rela.text': relocation 374: invalid type
section [ 8] '.rela.text': relocation 375: invalid type
section [ 8] '.rela.text': relocation 376: invalid type
section [ 8] '.rela.text': relocation 377: invalid type
section [ 8] '.rela.text': relocation 378: invalid type
section [ 8] '.rela.text': relocation 379: invalid type
section [ 8] '.rela.text': relocation 380: invalid type
section [ 8] '.rela.text': relocation 381: invalid type
section [ 8] '.rela.text': relocation 382: invalid type
section [ 8] '.rela.text': relocation 383: invalid type
section [ 8] '.rela.text': relocation 384: invalid type
section [ 8] '.rela.text': relocation 385: invalid type
section [ 8] '.rela.text': relocation 386: invalid type
section [ 8] '.rela.text': relocation 387: invalid type
section [ 8] '.rela.text': relocation 388: invalid type
section [ 8] '.rela.text': relocation 389: invalid type
section [ 8] '.rela.text': relocation 390: invalid type
section [ 8] '.rela.text': relocation 391: invalid type
section [ 8] '.rela.text': relocation 392: invalid type
section [ 8] '.rela.text': relocation 393: invalid type
section [ 8] '.rela.text': relocation 394: invalid type
section [ 8] '.rela.text': relocation 395: invalid type
section [ 8] '.rela.text': relocation 396: invalid type
section [ 8] '.rela.text': relocation 397: invalid type
section [ 8] '.rela.text': relocation 398: invalid type
section [ 8] '.rela.text': relocation 399: invalid type
section [ 8] '.rela.text': relocation 400: invalid type
section [ 8] '.rela.text': relocation 401: invalid type
section [ 8] '.rela.text': relocation 402: invalid type
section [ 8] '.rela.text': relocation 403: invalid type
section [ 8] '.rela.text': relocation 404: invalid type
section [ 8] '.rela.text': relocation 405: invalid type
section [ 8] '.rela.text': relocation 406: invalid type
section [ 8] '.rela.text': relocation 407: invalid type
section [ 8] '.rela.text': relocation 408: invalid type
section [ 8] '.rela.text': relocation 409: invalid type
section [ 8] '.rela.text': relocation 410: invalid type
section [ 8] '.rela.text': relocation 411: invalid type
section [ 8] '.rela.text': relocation 412: invalid type
section [ 8] '.rela.text': relocation 413: invalid type
section [ 8] '.rela.text': relocation 414: invalid type
section [ 8] '.rela.text': relocation 415: invalid type
section [ 8] '.rela.text': relocation 416: invalid type
section [ 8] '.rela.text': relocation 417: invalid type
section [ 8] '.rela.text': relocation 418: invalid type
section [ 8] '.rela.text': relocation 419: invalid type
section [ 8] '.rela.text': relocation 420: invalid type
section [ 8] '.rela.text': relocation 421: invalid type
section [ 8] '.rela.text': relocation 422: invalid type
section [ 8] '.rela.text': relocation 423: invalid type
section [ 8] '.rela.text': relocation 424: invalid type
section [ 8] '.rela.text': relocation 425: invalid type
section [ 8] '.rela.text': relocation 426: invalid type
section [ 8] '.rela.text': relocation 427: invalid type
section [ 8] '.rela.text': relocation 428: invalid type
section [ 8] '.rela.text': relocation 429: invalid type
section [ 8] '.rela.text': relocation 430: invalid type
section [ 8] '.rela.text': relocation 431: invalid type
section [ 8] '.rela.text': relocation 432: invalid type
section [ 8] '.rela.text': relocation 433: invalid type
section [ 8] '.rela.text': relocation 434: invalid type
section [ 8] '.rela.text': relocation 435: invalid type
section [ 8] '.rela.text': relocation 436: invalid type
section [ 8] '.rela.text': relocation 437: invalid type
section [ 8] '.rela.text': relocation 438: invalid type
section [ 8] '.rela.text': relocation 439: invalid type
section [ 8] '.rela.text': relocation 440: invalid type
section [ 8] '.rela.text': relocation 441: invalid type
section [ 8] '.rela.text': relocation 442: invalid type
section [ 8] '.rela.text': relocation 443: invalid type
section [ 8] '.rela.text': relocation 444: invalid type
section [ 8] '.rela.text': relocation 445: invalid type
section [ 8] '.rela.text': relocation 446: invalid type
section [ 8] '.rela.text': relocation 447: invalid type
section [ 8] '.rela.text': relocation 448: invalid type
section [ 8] '.rela.text': relocation 449: invalid type
section [ 8] '.rela.text': relocation 450: invalid type
section [ 8] '.rela.text': relocation 451: invalid type
section [ 8] '.rela.text': relocation 452: invalid type
section [ 8] '.rela.text': relocation 453: invalid type
section [ 8] '.rela.text': relocation 454: invalid type
section [ 8] '.rela.text': relocation 455: invalid type
section [ 8] '.rela.text': relocation 456: invalid type
section [ 8] '.rela.text': relocation 457: invalid type
section [ 8] '.rela.text': relocation 458: invalid type
section [ 8] '.rela.text': relocation 459: invalid type
section [ 8] '.rela.text': relocation 460: invalid type
section [ 8] '.rela.text': relocation 461: invalid type
section [ 8] '.rela.text': relocation 462: invalid type
section [ 8] '.rela.text': relocation 463: invalid type
section [ 8] '.rela.text': relocation 464: invalid type
section [ 8] '.rela.text': relocation 465: invalid type
section [ 8] '.rela.text': relocation 466: invalid type
section [ 8] '.rela.text': relocation 467: invalid type
section [ 8] '.rela.text': relocation 468: invalid type
section [ 8] '.rela.text': relocation 469: invalid type
section [ 8] '.rela.text': relocation 470: invalid type
section [ 8] '.rela.text': relocation 471: invalid type
section [ 8] '.rela.text': relocation 472: invalid type
section [ 8] '.rela.text': relocation 473: invalid type
section [ 8] '.rela.text': relocation 474: invalid type
section [ 8] '.rela.text': relocation 475: invalid type
section [ 8] '.rela.text': relocation 476: invalid type
section [ 8] '.rela.text': relocation 477: invalid type
section [ 8] '.rela.text': relocation 478: invalid type
section [ 8] '.rela.text': relocation 479: invalid type
section [ 8] '.rela.text': relocation 480: invalid type
section [ 8] '.rela.text': relocation 481: invalid type
section [ 8] '.rela.text': relocation 482: invalid type
section [ 8] '.rela.text': relocation 483: invalid type
section [ 8] '.rela.text': relocation 484: invalid type
section [ 8] '.rela.text': relocation 485: invalid type
section [ 8] '.rela.text': relocation 486: invalid type
section [ 8] '.rela.text': relocation 487: invalid type
section [ 8] '.rela.text': relocation 488: invalid type
section [ 8] '.rela.text': relocation 489: invalid type
section [ 8] '.rela.text': relocation 490: invalid type
section [ 8] '.rela.text': relocation 491: invalid type
section [ 8] '.rela.text': relocation 492: invalid type
section [ 8] '.rela.text': relocation 493: invalid type
section [ 8] '.rela.text': relocation 494: invalid type
section [ 8] '.rela.text': relocation 495: invalid type
section [ 8] '.rela.text': relocation 496: invalid type
section [ 8] '.rela.text': relocation 497: invalid type
section [ 8] '.rela.text': relocation 498: invalid type
section [ 8] '.rela.text': relocation 499: invalid type
section [ 8] '.rela.text': relocation 500: invalid type
section [ 8] '.rela.text': relocation 501: invalid type
section [ 8] '.rela.text': relocation 502: invalid type
section [ 8] '.rela.text': relocation 503: invalid type
section [ 8] '.rela.text': relocation 504: invalid type
section [ 8] '.rela.text': relocation 505: invalid type
section [ 8] '.rela.text': relocation 506: invalid type
section [ 8] '.rela.text': relocation 507: invalid type
section [ 8] '.rela.text': relocation 508: invalid type
section [ 8] '.rela.text': relocation 509: invalid type
section [ 8] '.rela.text': relocation 510: invalid type
section [ 8] '.rela.text': relocation 511: invalid type
section [ 8] '.rela.text': relocation 512: invalid type
section [ 8] '.rela.text': relocation 513: invalid type
section [ 8] '.rela.text': relocation 514: invalid type
section [ 8] '.rela.text': relocation 515: invalid type
section [ 8] '.rela.text': relocation 516: invalid type
section [ 8] '.rela.text': relocation 517: invalid type
section [ 8] '.rela.text': relocation 518: invalid type
section [ 8] '.rela.text': relocation 519: invalid type
section [ 8] '.rela.text': relocation 520: invalid type
section [ 8] '.rela.text': relocation 521: invalid type
section [ 8] '.rela.text': relocation 522: invalid type
section [ 8] '.rela.text': relocation 523: invalid type
section [ 8] '.rela.text': relocation 524: invalid type
section [ 8] '.rela.text': relocation 525: invalid type
section [ 8] '.rela.text': relocation 526: invalid type
section [ 8] '.rela.text': relocation 527: invalid type
section [ 8] '.rela.text': relocation 528: invalid type
section [ 8] '.rela.text': relocation 529: invalid type
section [ 8] '.rela.text': relocation 530: invalid type
section [ 8] '.rela.text': relocation 531: invalid type
section [ 8] '.rela.text': relocation 532: invalid type
section [ 8] '.rela.text': relocation 533: invalid type
section [ 8] '.rela.text': relocation 534: invalid type
section [ 8] '.rela.text': relocation 535: invalid type
section [ 8] '.rela.text': relocation 536: invalid type
section [ 8] '.rela.text': relocation 537: invalid type
section [ 8] '.rela.text': relocation 538: invalid type
section [ 8] '.rela.text': relocation 539: invalid type
section [ 8] '.rela.text': relocation 540: invalid type
section [ 8] '.rela.text': relocation 541: invalid type
section [ 8] '.rela.text': relocation 542: invalid type
section [ 8] '.rela.text': relocation 543: invalid type
section [ 8] '.rela.text': relocation 544: invalid type
section [ 8] '.rela.text': relocation 545: invalid type
section [ 8] '.rela.text': relocation 546: invalid type
section [ 8] '.rela.text': relocation 547: invalid type
section [ 8] '.rela.text': relocation 548: invalid type
section [ 8] '.rela.text': relocation 549: invalid type
section [ 8] '.rela.text': relocation 550: invalid type
section [ 8] '.rela.text': relocation 551: invalid type
section [ 8] '.rela.text': relocation 552: invalid type
section [ 8] '.rela.text': relocation 553: invalid type
section [ 8] '.rela.text': relocation 554: invalid type
section [ 8] '.rela.text': relocation 555: invalid type
section [ 8] '.rela.text': relocation 556: invalid type
section [ 8] '.rela.text': relocation 557: invalid type
section [ 8] '.rela.text': relocation 558: invalid type
section [ 8] '.rela.text': relocation 559: invalid type
section [ 8] '.rela.text': relocation 560: invalid type
section [ 8] '.rela.text': relocation 561: invalid type
section [ 8] '.rela.text': relocation 562: invalid type
section [ 8] '.rela.text': relocation 563: invalid type
section [ 8] '.rela.text': relocation 564: invalid type
section [ 8] '.rela.text': relocation 565: invalid type
section [ 8] '.rela.text': relocation 566: invalid type
section [ 8] '.rela.text': relocation 567: invalid type
section [ 8] '.rela.text': relocation 568: invalid type
section [ 8] '.rela.text': relocation 569: invalid type
section [ 8] '.rela.text': relocation 570: invalid type
section [ 8] '.rela.text': relocation 571: invalid type
section [ 8] '.rela.text': relocation 572: invalid type
section [ 8] '.rela.text': relocation 573: invalid type
section [ 8] '.rela.text': relocation 574: invalid type
section [ 8] '.rela.text': relocation 575: invalid type
section [ 8] '.rela.text': relocation 576: invalid type
section [ 8] '.rela.text': relocation 577: invalid type
section [ 8] '.rela.text': relocation 578: invalid type
section [ 8] '.rela.text': relocation 579: invalid type
section [ 8] '.rela.text': relocation 580: invalid type
section [ 8] '.rela.text': relocation 581: invalid type
section [ 8] '.rela.text': relocation 582: invalid type
section [ 8] '.rela.text': relocation 583: invalid type
section [ 8] '.rela.text': relocation 584: invalid type
section [ 8] '.rela.text': relocation 585: invalid type
section [ 8] '.rela.text': relocation 586: invalid type
section [ 8] '.rela.text': relocation 587: invalid type
section [ 8] '.rela.text': relocation 588: invalid type
section [ 8] '.rela.text': relocation 589: invalid type
section [ 8] '.rela.text': relocation 590: invalid type
section [ 8] '.rela.text': relocation 591: invalid type
section [ 8] '.rela.text': relocation 592: invalid type
section [ 8] '.rela.text': relocation 593: invalid type
section [ 8] '.rela.text': relocation 594: invalid type
section [ 8] '.rela.text': relocation 595: invalid type
section [ 8] '.rela.text': relocation 596: invalid type
section [ 8] '.rela.text': relocation 597: invalid type
section [ 8] '.rela.text': relocation 598: invalid type
section [ 8] '.rela.text': relocation 599: invalid type
section [ 8] '.rela.text': relocation 600: invalid type
section [ 8] '.rela.text': relocation 601: invalid type
section [ 8] '.rela.text': relocation 602: invalid type
section [ 8] '.rela.text': relocation 603: invalid type
section [ 8] '.rela.text': relocation 604: invalid type
section [ 8] '.rela.text': relocation 605: invalid type
section [ 8] '.rela.text': relocation 606: invalid type
section [ 8] '.rela.text': relocation 607: invalid type
section [ 8] '.rela.text': relocation 608: invalid type
section [ 8] '.rela.text': relocation 609: invalid type
section [ 8] '.rela.text': relocation 610: invalid type
section [ 8] '.rela.text': relocation 611: invalid type
section [ 8] '.rela.text': relocation 612: invalid type
section [ 8] '.rela.text': relocation 613: invalid type
section [ 8] '.rela.text': relocation 614: invalid type
section [ 8] '.rela.text': relocation 615: invalid type
section [ 8] '.rela.text': relocation 616: invalid type
section [ 8] '.rela.text': relocation 617: invalid type
section [ 8] '.rela.text': relocation 618: invalid type
section [ 8] '.rela.text': relocation 619: invalid type
section [ 8] '.rela.text': relocation 620: invalid type
section [ 8] '.rela.text': relocation 621: invalid type
section [ 8] '.rela.text': relocation 622: invalid type
section [ 8] '.rela.text': relocation 623: invalid type
section [ 8] '.rela.text': relocation 624: invalid type
section [ 8] '.rela.text': relocation 625: invalid type
section [ 8] '.rela.text': relocation 626: invalid type
section [ 8] '.rela.text': relocation 627: invalid type
section [ 8] '.rela.text': relocation 628: invalid type
section [ 8] '.rela.text': relocation 629: invalid type
section [ 8] '.rela.text': relocation 630: invalid type
section [ 8] '.rela.text': relocation 631: invalid type
section [ 8] '.rela.text': relocation 632: invalid type
section [ 8] '.rela.text': relocation 633: invalid type
section [ 8] '.rela.text': relocation 634: invalid type
section [ 8] '.rela.text': relocation 635: invalid type
section [ 8] '.rela.text': relocation 636: invalid type
section [ 8] '.rela.text': relocation 637: invalid type
section [ 8] '.rela.text': relocation 638: invalid type
section [ 8] '.rela.text': relocation 639: invalid type
section [ 8] '.rela.text': relocation 640: invalid type
section [ 8] '.rela.text': relocation 641: invalid type
section [ 8] '.rela.text': relocation 642: invalid type
section [ 8] '.rela.text': relocation 643: invalid type
section [ 8] '.rela.text': relocation 644: invalid type
section [ 8] '.rela.text': relocation 645: invalid type
section [ 8] '.rela.text': relocation 646: invalid type
section [ 8] '.rela.text': relocation 647: invalid type
section [ 8] '.rela.text': relocation 648: invalid type
section [ 8] '.rela.text': relocation 649: invalid type
section [ 8] '.rela.text': relocation 650: invalid type
section [ 8] '.rela.text': relocation 651: invalid type
section [ 8] '.rela.text': relocation 652: invalid type
section [ 8] '.rela.text': relocation 653: invalid type
section [ 8] '.rela.text': relocation 654: invalid type
section [ 8] '.rela.text': relocation 655: invalid type
section [ 8] '.rela.text': relocation 656: invalid type
section [ 8] '.rela.text': relocation 657: invalid type
section [ 8] '.rela.text': relocation 658: invalid type
section [ 8] '.rela.text': relocation 659: invalid type
section [ 8] '.rela.text': relocation 660: invalid type
section [ 8] '.rela.text': relocation 661: invalid type
section [ 8] '.rela.text': relocation 662: invalid type
section [ 8] '.rela.text': relocation 663: invalid type
section [ 8] '.rela.text': relocation 664: invalid type
section [ 8] '.rela.text': relocation 665: invalid type
section [ 8] '.rela.text': relocation 666: invalid type
section [ 8] '.rela.text': relocation 667: invalid type
section [ 8] '.rela.text': relocation 668: invalid type
section [ 8] '.rela.text': relocation 669: invalid type
section [ 8] '.rela.text': relocation 670: invalid type
section [ 8] '.rela.text': relocation 671: invalid type
section [ 8] '.rela.text': relocation 672: invalid type
section [ 8] '.rela.text': relocation 673: invalid type
section [ 8] '.rela.text': relocation 674: invalid type
section [ 8] '.rela.text': relocation 675: invalid type
section [ 8] '.rela.text': relocation 676: invalid type
section [ 8] '.rela.text': relocation 677: invalid type
section [ 8] '.rela.text': relocation 678: invalid type
section [ 8] '.rela.text': relocation 679: invalid type
section [ 8] '.rela.text': relocation 680: invalid type
section [ 8] '.rela.text': relocation 681: invalid type
section [ 8] '.rela.text': relocation 682: invalid type
section [ 8] '.rela.text': relocation 683: invalid type
section [ 8] '.rela.text': relocation 684: invalid type
section [ 8] '.rela.text': relocation 685: invalid type
section [ 8] '.rela.text': relocation 686: invalid type
section [ 8] '.rela.text': relocation 687: invalid type
section [ 8] '.rela.text': relocation 688: invalid type
section [ 8] '.rela.text': relocation 689: invalid type
section [ 8] '.rela.text': relocation 690: invalid type
section [ 8] '.rela.text': relocation 691: invalid type
section [ 8] '.rela.text': relocation 692: invalid type
section [ 8] '.rela.text': relocation 693: invalid type
section [ 8] '.rela.text': relocation 694: invalid type
section [ 8] '.rela.text': relocation 695: invalid type
section [ 8] '.rela.text': relocation 696: invalid type
section [ 8] '.rela.text': relocation 697: invalid type
section [ 8] '.rela.text': relocation 698: invalid type
section [ 8] '.rela.text': relocation 699: invalid type
section [ 8] '.rela.text': relocation 700: invalid type
section [ 8] '.rela.text': relocation 701: invalid type
section [ 8] '.rela.text': relocation 702: invalid type
section [ 8] '.rela.text': relocation 703: invalid type
section [ 8] '.rela.text': relocation 704: invalid type
section [ 8] '.rela.text': relocation 705: invalid type
section [ 8] '.rela.text': relocation 706: invalid type
section [ 8] '.rela.text': relocation 707: invalid type
section [ 8] '.rela.text': relocation 708: invalid type
section [ 8] '.rela.text': relocation 709: invalid type
section [ 8] '.rela.text': relocation 710: invalid type
section [ 8] '.rela.text': relocation 711: invalid type
section [ 8] '.rela.text': relocation 712: invalid type
section [ 8] '.rela.text': relocation 713: invalid type
section [ 8] '.rela.text': relocation 714: invalid type
section [ 8] '.rela.text': relocation 715: invalid type
section [ 8] '.rela.text': relocation 716: invalid type
section [ 8] '.rela.text': relocation 717: invalid type
section [ 8] '.rela.text': relocation 718: invalid type
section [ 8] '.rela.text': relocation 719: invalid type
section [ 8] '.rela.text': relocation 720: invalid type
section [ 8] '.rela.text': relocation 721: invalid type
section [ 8] '.rela.text': relocation 722: invalid type
section [ 8] '.rela.text': relocation 723: invalid type
section [ 8] '.rela.text': relocation 724: invalid type
section [ 8] '.rela.text': relocation 725: invalid type
section [ 8] '.rela.text': relocation 726: invalid type
section [ 8] '.rela.text': relocation 727: invalid type
section [ 8] '.rela.text': relocation 728: invalid type
section [ 8] '.rela.text': relocation 729: invalid type
section [ 8] '.rela.text': relocation 730: invalid type
section [ 8] '.rela.text': relocation 731: invalid type
section [ 8] '.rela.text': relocation 732: invalid type
section [ 8] '.rela.text': relocation 733: invalid type
section [ 8] '.rela.text': relocation 734: invalid type
section [ 8] '.rela.text': relocation 735: invalid type
section [ 8] '.rela.text': relocation 736: invalid type
section [ 8] '.rela.text': relocation 737: invalid type
section [ 8] '.rela.text': relocation 738: invalid type
section [ 8] '.rela.text': relocation 739: invalid type
section [ 8] '.rela.text': relocation 740: invalid type
section [ 8] '.rela.text': relocation 741: invalid type
section [ 8] '.rela.text': relocation 742: invalid type
section [ 8] '.rela.text': relocation 743: invalid type
section [ 8] '.rela.text': relocation 744: invalid type
section [ 8] '.rela.text': relocation 745: invalid type
section [ 8] '.rela.text': relocation 746: invalid type
section [ 8] '.rela.text': relocation 747: invalid type
section [ 8] '.rela.text': relocation 748: invalid type
section [ 8] '.rela.text': relocation 749: invalid type
section [ 8] '.rela.text': relocation 750: invalid type
section [ 8] '.rela.text': relocation 751: invalid type
section [ 8] '.rela.text': relocation 752: invalid type
section [ 8] '.rela.text': relocation 753: invalid type
section [ 8] '.rela.text': relocation 754: invalid type
section [ 8] '.rela.text': relocation 755: invalid type
section [ 8] '.rela.text': relocation 756: invalid type
section [ 8] '.rela.text': relocation 757: invalid type
section [ 8] '.rela.text': relocation 758: invalid type
section [ 8] '.rela.text': relocation 759: invalid type
section [ 8] '.rela.text': relocation 760: invalid type
section [ 8] '.rela.text': relocation 761: invalid type
section [ 8] '.rela.text': relocation 762: invalid type
section [ 8] '.rela.text': relocation 763: invalid type
section [ 8] '.rela.text': relocation 764: invalid type
section [ 8] '.rela.text': relocation 765: invalid type
section [ 8] '.rela.text': relocation 766: invalid type
section [ 8] '.rela.text': relocation 767: invalid type
section [ 8] '.rela.text': relocation 768: invalid type
section [ 8] '.rela.text': relocation 769: invalid type
section [ 8] '.rela.text': relocation 770: invalid type
section [ 8] '.rela.text': relocation 771: invalid type
section [ 8] '.rela.text': relocation 772: invalid type
section [ 8] '.rela.text': relocation 773: invalid type
section [ 8] '.rela.text': relocation 774: invalid type
section [ 8] '.rela.text': relocation 775: invalid type
section [ 8] '.rela.text': relocation 776: invalid type
section [ 8] '.rela.text': relocation 777: invalid type
section [ 8] '.rela.text': relocation 778: invalid type
section [ 8] '.rela.text': relocation 779: invalid type
section [ 8] '.rela.text': relocation 780: invalid type
section [ 8] '.rela.text': relocation 781: invalid type
section [ 8] '.rela.text': relocation 782: invalid type
section [ 8] '.rela.text': relocation 783: invalid type
section [ 8] '.rela.text': relocation 784: invalid type
section [ 8] '.rela.text': relocation 785: invalid type
section [ 8] '.rela.text': relocation 786: invalid type
section [ 8] '.rela.text': relocation 787: invalid type
section [ 8] '.rela.text': relocation 788: invalid type
section [ 8] '.rela.text': relocation 789: invalid type
section [ 8] '.rela.text': relocation 790: invalid type
section [ 8] '.rela.text': relocation 791: invalid type
section [ 8] '.rela.text': relocation 792: invalid type
section [ 8] '.rela.text': relocation 793: invalid type
section [ 8] '.rela.text': relocation 794: invalid type
section [ 8] '.rela.text': relocation 795: invalid type
section [ 8] '.rela.text': relocation 796: invalid type
section [ 8] '.rela.text': relocation 797: invalid type
section [ 8] '.rela.text': relocation 798: invalid type
section [ 8] '.rela.text': relocation 799: invalid type
section [ 8] '.rela.text': relocation 800: invalid type
section [ 8] '.rela.text': relocation 801: invalid type
section [ 8] '.rela.text': relocation 802: invalid type
section [ 8] '.rela.text': relocation 803: invalid type
section [ 8] '.rela.text': relocation 804: invalid type
section [ 8] '.rela.text': relocation 805: invalid type
section [ 8] '.rela.text': relocation 806: invalid type
section [ 8] '.rela.text': relocation 807: invalid type
section [ 8] '.rela.text': relocation 808: invalid type
section [ 8] '.rela.text': relocation 809: invalid type
section [ 8] '.rela.text': relocation 810: invalid type
section [ 8] '.rela.text': relocation 811: invalid type
section [ 8] '.rela.text': relocation 812: invalid type
section [ 8] '.rela.text': relocation 813: invalid type
section [ 8] '.rela.text': relocation 814: invalid type
section [ 8] '.rela.text': relocation 815: invalid type
section [ 8] '.rela.text': relocation 816: invalid type
section [ 8] '.rela.text': relocation 817: invalid type
section [ 8] '.rela.text': relocation 818: invalid type
section [ 8] '.rela.text': relocation 819: invalid type
section [ 8] '.rela.text': relocation 820: invalid type
section [ 8] '.rela.text': relocation 821: invalid type
section [ 8] '.rela.text': relocation 822: invalid type
section [ 8] '.rela.text': relocation 823: invalid type
section [ 8] '.rela.text': relocation 824: invalid type
section [ 8] '.rela.text': relocation 825: invalid type
section [ 8] '.rela.text': relocation 826: invalid type
section [ 8] '.rela.text': relocation 827: invalid type
section [ 8] '.rela.text': relocation 828: invalid type
section [ 8] '.rela.text': relocation 829: invalid type
section [ 8] '.rela.text': relocation 830: invalid type
section [ 8] '.rela.text': relocation 831: invalid type
section [ 8] '.rela.text': relocation 832: invalid type
section [ 8] '.rela.text': relocation 833: invalid type
section [ 8] '.rela.text': relocation 834: invalid type
section [ 8] '.rela.text': relocation 835: invalid type
section [ 8] '.rela.text': relocation 836: invalid type
section [ 8] '.rela.text': relocation 837: invalid type
section [ 8] '.rela.text': relocation 838: invalid type
section [ 8] '.rela.text': relocation 839: invalid type
section [ 8] '.rela.text': relocation 840: invalid type
section [ 8] '.rela.text': relocation 841: invalid type
section [ 8] '.rela.text': relocation 842: invalid type
section [ 8] '.rela.text': relocation 843: invalid type
section [ 8] '.rela.text': relocation 844: invalid type
section [ 8] '.rela.text': relocation 845: invalid type
section [ 8] '.rela.text': relocation 846: invalid type
section [ 8] '.rela.text': relocation 847: invalid type
section [ 8] '.rela.text': relocation 848: invalid type
section [ 8] '.rela.text': relocation 849: invalid type
section [ 8] '.rela.text': relocation 850: invalid type
section [ 8] '.rela.text': relocation 851: invalid type
section [ 8] '.rela.text': relocation 852: invalid type
section [ 8] '.rela.text': relocation 853: invalid type
section [ 8] '.rela.text': relocation 854: invalid type
section [ 8] '.rela.text': relocation 855: invalid type
section [ 8] '.rela.text': relocation 856: invalid type
section [ 8] '.rela.text': relocation 857: invalid type
section [ 8] '.rela.text': relocation 858: invalid type
section [ 8] '.rela.text': relocation 859: invalid type
section [ 8] '.rela.text': relocation 860: invalid type
section [ 8] '.rela.text': relocation 861: invalid type
section [ 8] '.rela.text': relocation 862: invalid type
section [ 8] '.rela.text': relocation 863: invalid type
section [ 8] '.rela.text': relocation 864: invalid type
section [ 8] '.rela.text': relocation 865: invalid type
section [ 8] '.rela.text': relocation 866: invalid type
section [ 8] '.rela.text': relocation 867: invalid type
section [ 8] '.rela.text': relocation 868: invalid type
section [ 8] '.rela.text': relocation 869: invalid type
section [ 8] '.rela.text': relocation 870: invalid type
section [ 8] '.rela.text': relocation 871: invalid type
section [ 8] '.rela.text': relocation 872: invalid type
section [ 8] '.rela.text': relocation 873: invalid type
section [ 8] '.rela.text': relocation 874: invalid type
section [ 8] '.rela.text': relocation 875: invalid type
section [ 8] '.rela.text': relocation 876: invalid type
section [ 8] '.rela.text': relocation 877: invalid type
section [ 8] '.rela.text': relocation 878: invalid type
section [ 8] '.rela.text': relocation 879: invalid type
section [ 8] '.rela.text': relocation 880: invalid type
section [ 8] '.rela.text': relocation 881: invalid type
section [ 8] '.rela.text': relocation 882: invalid type
section [ 8] '.rela.text': relocation 883: invalid type
section [ 8] '.rela.text': relocation 884: invalid type
section [ 8] '.rela.text': relocation 885: invalid type
section [ 8] '.rela.text': relocation 886: invalid type
section [ 8] '.rela.text': relocation 887: invalid type
section [ 8] '.rela.text': relocation 888: invalid type
section [ 8] '.rela.text': relocation 889: invalid type
section [ 8] '.rela.text': relocation 890: invalid type
section [ 8] '.rela.text': relocation 891: invalid type
section [ 8] '.rela.text': relocation 892: invalid type
section [ 8] '.rela.text': relocation 893: invalid type
section [ 8] '.rela.text': relocation 894: invalid type
section [ 8] '.rela.text': relocation 895: invalid type
section [ 8] '.rela.text': relocation 896: invalid type
section [ 8] '.rela.text': relocation 897: invalid type
section [ 8] '.rela.text': relocation 898: invalid type
section [ 8] '.rela.text': relocation 899: invalid type
section [ 8] '.rela.text': relocation 900: invalid type
section [ 8] '.rela.text': relocation 901: invalid type
section [ 8] '.rela.text': relocation 902: invalid type
section [ 8] '.rela.text': relocation 903: invalid type
section [ 8] '.rela.text': relocation 904: invalid type
section [ 8] '.rela.text': relocation 905: invalid type
section [ 8] '.rela.text': relocation 906: invalid type
section [ 8] '.rela.text': relocation 907: invalid type
section [ 8] '.rela.text': relocation 908: invalid type
section [ 8] '.rela.text': relocation 909: invalid type
section [ 8] '.rela.text': relocation 910: invalid type
section [ 8] '.rela.text': relocation 911: invalid type
section [ 8] '.rela.text': relocation 912: invalid type
section [ 8] '.rela.text': relocation 913: invalid type
section [ 8] '.rela.text': relocation 914: invalid type
section [ 8] '.rela.text': relocation 915: invalid type
section [ 8] '.rela.text': relocation 916: invalid type
section [ 8] '.rela.text': relocation 917: invalid type
section [ 8] '.rela.text': relocation 918: invalid type
section [ 8] '.rela.text': relocation 919: invalid type
section [ 8] '.rela.text': relocation 920: invalid type
section [ 8] '.rela.text': relocation 921: invalid type
section [ 8] '.rela.text': relocation 922: invalid type
section [ 8] '.rela.text': relocation 923: invalid type
section [ 8] '.rela.text': relocation 924: invalid type
section [ 8] '.rela.text': relocation 925: invalid type
section [ 8] '.rela.text': relocation 926: invalid type
section [ 8] '.rela.text': relocation 927: invalid type
section [ 8] '.rela.text': relocation 928: invalid type
section [ 8] '.rela.text': relocation 929: invalid type
section [ 8] '.rela.text': relocation 930: invalid type
section [ 8] '.rela.text': relocation 931: invalid type
section [ 8] '.rela.text': relocation 932: invalid type
section [ 8] '.rela.text': relocation 933: invalid type
section [ 8] '.rela.text': relocation 934: invalid type
section [ 8] '.rela.text': relocation 935: invalid type
section [ 8] '.rela.text': relocation 936: invalid type
section [ 8] '.rela.text': relocation 937: invalid type
section [ 8] '.rela.text': relocation 938: invalid type
section [ 8] '.rela.text': relocation 939: invalid type
section [ 8] '.rela.text': relocation 940: invalid type
section [ 8] '.rela.text': relocation 941: invalid type
section [ 8] '.rela.text': relocation 942: invalid type
section [ 8] '.rela.text': relocation 943: invalid type
section [ 8] '.rela.text': relocation 944: invalid type
section [ 8] '.rela.text': relocation 945: invalid type
section [ 8] '.rela.text': relocation 946: invalid type
section [ 8] '.rela.text': relocation 947: invalid type
section [ 8] '.rela.text': relocation 948: invalid type
section [ 8] '.rela.text': relocation 949: invalid type
section [ 8] '.rela.text': relocation 950: invalid type
section [ 8] '.rela.text': relocation 951: invalid type
section [ 8] '.rela.text': relocation 952: invalid type
section [ 8] '.rela.text': relocation 953: invalid type
section [ 8] '.rela.text': relocation 954: invalid type
section [ 8] '.rela.text': relocation 955: invalid type
section [ 8] '.rela.text': relocation 956: invalid type
section [ 8] '.rela.text': relocation 957: invalid type
section [ 8] '.rela.text': relocation 958: invalid type
section [ 8] '.rela.text': relocation 959: invalid type
section [ 8] '.rela.text': relocation 960: invalid type
section [ 8] '.rela.text': relocation 961: invalid type
section [ 8] '.rela.text': relocation 962: invalid type
section [ 8] '.rela.text': relocation 963: invalid type
section [ 8] '.rela.text': relocation 964: invalid type
section [ 8] '.rela.text': relocation 965: invalid type
section [ 8] '.rela.text': relocation 966: invalid type
section [ 8] '.rela.text': relocation 967: invalid type
section [ 8] '.rela.text': relocation 968: invalid type
section [ 8] '.rela.text': relocation 969: invalid type
section [ 8] '.rela.text': relocation 970: invalid type
section [ 8] '.rela.text': relocation 971: invalid type
section [ 8] '.rela.text': relocation 972: invalid type
section [ 8] '.rela.text': relocation 973: invalid type
section [ 8] '.rela.text': relocation 974: invalid type
section [ 8] '.rela.text': relocation 975: invalid type
section [ 8] '.rela.text': relocation 976: invalid type
section [ 8] '.rela.text': relocation 977: invalid type
section [ 8] '.rela.text': relocation 978: invalid type
section [ 8] '.rela.text': relocation 979: invalid type
section [ 8] '.rela.text': relocation 980: invalid type
section [ 8] '.rela.text': relocation 981: invalid type
section [ 8] '.rela.text': relocation 982: invalid type
section [ 8] '.rela.text': relocation 983: invalid type
section [ 8] '.rela.text': relocation 984: invalid type
section [ 8] '.rela.text': relocation 985: invalid type
section [ 8] '.rela.text': relocation 986: invalid type
section [ 8] '.rela.text': relocation 987: invalid type
section [ 8] '.rela.text': relocation 988: invalid type
section [ 8] '.rela.text': relocation 989: invalid type
section [ 8] '.rela.text': relocation 990: invalid type
section [ 8] '.rela.text': relocation 991: invalid type
section [ 8] '.rela.text': relocation 992: invalid type
section [ 8] '.rela.text': relocation 993: invalid type
section [ 8] '.rela.text': relocation 994: invalid type
section [ 8] '.rela.text': relocation 995: invalid type
section [ 8] '.rela.text': relocation 996: invalid type
section [ 8] '.rela.text': relocation 997: invalid type
section [ 8] '.rela.text': relocation 998: invalid type
section [ 8] '.rela.text': relocation 999: invalid type
section [ 8] '.rela.text': relocation 1000: invalid type
section [ 8] '.rela.text': relocation 1001: invalid type
section [ 8] '.rela.text': relocation 1002: invalid type
section [ 8] '.rela.text': relocation 1003: invalid type
section [ 8] '.rela.text': relocation 1004: invalid type
section [ 8] '.rela.text': relocation 1005: invalid type
section [ 8] '.rela.text': relocation 1006: invalid type
section [ 8] '.rela.text': relocation 1007: invalid type
section [ 8] '.rela.text': relocation 1008: invalid type
section [ 8] '.rela.text': relocation 1009: invalid type
section [ 8] '.rela.text': relocation 1010: invalid type
section [ 8] '.rela.text': relocation 1011: invalid type
section [ 8] '.rela.text': relocation 1012: invalid type
section [ 8] '.rela.text': relocation 1013: invalid type
section [ 8] '.rela.text': relocation 1014: invalid type
section [ 8] '.rela.text': relocation 1015: invalid type
section [ 8] '.rela.text': relocation 1016: invalid type
section [ 8] '.rela.text': relocation 1017: invalid type
section [ 8] '.rela.text': relocation 1018: invalid type
section [ 8] '.rela.text': relocation 1019: invalid type
section [ 8] '.rela.text': relocation 1020: invalid type
section [ 8] '.rela.text': relocation 1021: invalid type
section [ 8] '.rela.text': relocation 1022: invalid type
section [ 8] '.rela.text': relocation 1023: invalid type
section [ 8] '.rela.text': relocation 1024: invalid type
section [ 8] '.rela.text': relocation 1025: invalid type
section [ 8] '.rela.text': relocation 1026: invalid type
section [ 8] '.rela.text': relocation 1027: invalid type
section [ 8] '.rela.text': relocation 1028: invalid type
section [ 8] '.rela.text': relocation 1029: invalid type
section [ 8] '.rela.text': relocation 1030: invalid type
section [ 8] '.rela.text': relocation 1031: invalid type
section [ 8] '.rela.text': relocation 1032: invalid type
section [ 8] '.rela.text': relocation 1033: invalid type
section [ 8] '.rela.text': relocation 1034: invalid type
section [ 8] '.rela.text': relocation 1035: invalid type
section [ 8] '.rela.text': relocation 1036: invalid type
section [ 8] '.rela.text': relocation 1037: invalid type
section [ 8] '.rela.text': relocation 1038: invalid type
section [ 8] '.rela.text': relocation 1039: invalid type
section [ 8] '.rela.text': relocation 1040: invalid type
section [ 8] '.rela.text': relocation 1041: invalid type
section [ 8] '.rela.text': relocation 1042: invalid type
section [ 8] '.rela.text': relocation 1043: invalid type
section [ 8] '.rela.text': relocation 1044: invalid type
section [ 8] '.rela.text': relocation 1045: invalid type
section [ 8] '.rela.text': relocation 1046: invalid type
section [ 8] '.rela.text': relocation 1047: invalid type
section [ 8] '.rela.text': relocation 1048: invalid type
section [ 8] '.rela.text': relocation 1049: invalid type
section [ 8] '.rela.text': relocation 1050: invalid type
section [ 8] '.rela.text': relocation 1051: invalid type
section [ 8] '.rela.text': relocation 1052: invalid type
section [ 8] '.rela.text': relocation 1053: invalid type
section [ 8] '.rela.text': relocation 1054: invalid type
section [ 8] '.rela.text': relocation 1055: invalid type
section [ 8] '.rela.text': relocation 1056: invalid type
section [ 8] '.rela.text': relocation 1057: invalid type
section [ 8] '.rela.text': relocation 1058: invalid type
section [ 8] '.rela.text': relocation 1059: invalid type
section [ 8] '.rela.text': relocation 1060: invalid type
section [ 8] '.rela.text': relocation 1061: invalid type
section [ 8] '.rela.text': relocation 1062: invalid type
section [ 8] '.rela.text': relocation 1063: invalid type
section [ 8] '.rela.text': relocation 1064: invalid type
section [ 8] '.rela.text': relocation 1065: invalid type
section [ 8] '.rela.text': relocation 1066: invalid type
section [ 8] '.rela.text': relocation 1067: invalid type
section [ 8] '.rela.text': relocation 1068: invalid type
section [ 8] '.rela.text': relocation 1069: invalid type
section [ 8] '.rela.text': relocation 1070: invalid type
section [ 8] '.rela.text': relocation 1071: invalid type
section [ 8] '.rela.text': relocation 1072: invalid type
section [ 8] '.rela.text': relocation 1073: invalid type
section [ 8] '.rela.text': relocation 1074: invalid type
section [ 8] '.rela.text': relocation 1075: invalid type
section [ 8] '.rela.text': relocation 1076: invalid type
section [ 8] '.rela.text': relocation 1077: invalid type
section [ 8] '.rela.text': relocation 1078: invalid type
section [ 8] '.rela.text': relocation 1079: invalid type
section [ 8] '.rela.text': relocation 1080: invalid type
section [ 8] '.rela.text': relocation 1081: invalid type
section [ 8] '.rela.text': relocation 1082: invalid type
section [ 8] '.rela.text': relocation 1083: invalid type
section [ 8] '.rela.text': relocation 1084: invalid type
section [ 8] '.rela.text': relocation 1085: invalid type
section [ 8] '.rela.text': relocation 1086: invalid type
section [ 8] '.rela.text': relocation 1087: invalid type
section [ 8] '.rela.text': relocation 1088: invalid type
section [ 8] '.rela.text': relocation 1089: invalid type
section [ 8] '.rela.text': relocation 1090: invalid type
section [ 8] '.rela.text': relocation 1091: invalid type
section [ 8] '.rela.text': relocation 1092: invalid type
section [ 8] '.rela.text': relocation 1093: invalid type
section [ 8] '.rela.text': relocation 1094: invalid type
section [ 8] '.rela.text': relocation 1095: invalid type
section [ 8] '.rela.text': relocation 1096: invalid type
section [ 8] '.rela.text': relocation 1097: invalid type
section [ 8] '.rela.text': relocation 1098: invalid type
section [ 8] '.rela.text': relocation 1099: invalid type
section [ 8] '.rela.text': relocation 1100: invalid type
section [ 8] '.rela.text': relocation 1101: invalid type
section [ 8] '.rela.text': relocation 1102: invalid type
section [ 8] '.rela.text': relocation 1103: invalid type
section [ 8] '.rela.text': relocation 1104: invalid type
section [ 8] '.rela.text': relocation 1105: invalid type
section [ 8] '.rela.text': relocation 1106: invalid type
section [ 8] '.rela.text': relocation 1107: invalid type
section [ 8] '.rela.text': relocation 1108: invalid type
section [ 8] '.rela.text': relocation 1109: invalid type
section [ 8] '.rela.text': relocation 1110: invalid type
section [ 8] '.rela.text': relocation 1111: invalid type
section [ 8] '.rela.text': relocation 1112: invalid type
section [ 8] '.rela.text': relocation 1113: invalid type
section [ 8] '.rela.text': relocation 1114: invalid type
section [ 8] '.rela.text': relocation 1115: invalid type
section [ 8] '.rela.text': relocation 1116: invalid type
section [ 8] '.rela.text': relocation 1117: invalid type
section [ 8] '.rela.text': relocation 1118: invalid type
section [ 8] '.rela.text': relocation 1119: invalid type
section [ 8] '.rela.text': relocation 1120: invalid type
section [ 8] '.rela.text': relocation 1121: invalid type
section [ 8] '.rela.text': relocation 1122: invalid type
section [ 8] '.rela.text': relocation 1123: invalid type
section [ 8] '.rela.text': relocation 1124: invalid type
section [ 8] '.rela.text': relocation 1125: invalid type
section [ 8] '.rela.text': relocation 1126: invalid type
section [ 8] '.rela.text': relocation 1127: invalid type
section [ 8] '.rela.text': relocation 1128: invalid type
section [ 8] '.rela.text': relocation 1129: invalid type
section [ 8] '.rela.text': relocation 1130: invalid type
section [ 8] '.rela.text': relocation 1131: invalid type
section [ 8] '.rela.text': relocation 1132: invalid type
section [ 8] '.rela.text': relocation 1133: invalid type
section [ 8] '.rela.text': relocation 1134: invalid type
section [ 8] '.rela.text': relocation 1135: invalid type
section [ 8] '.rela.text': relocation 1136: invalid type
section [ 8] '.rela.text': relocation 1137: invalid type
section [ 8] '.rela.text': relocation 1138: invalid type
section [ 8] '.rela.text': relocation 1139: invalid type
section [ 8] '.rela.text': relocation 1140: invalid type
section [ 8] '.rela.text': relocation 1141: invalid type
section [ 8] '.rela.text': relocation 1142: invalid type
section [ 8] '.rela.text': relocation 1143: invalid type
section [ 8] '.rela.text': relocation 1144: invalid type
section [ 8] '.rela.text': relocation 1145: invalid type
section [ 8] '.rela.text': relocation 1146: invalid type
section [ 8] '.rela.text': relocation 1147: invalid type
section [ 8] '.rela.text': relocation 1148: invalid type
section [ 8] '.rela.text': relocation 1149: invalid type
section [ 8] '.rela.text': relocation 1150: invalid type
section [ 8] '.rela.text': relocation 1151: invalid type
section [ 8] '.rela.text': relocation 1152: invalid type
section [ 8] '.rela.text': relocation 1153: invalid type
section [ 8] '.rela.text': relocation 1154: invalid type
section [ 8] '.rela.text': relocation 1155: invalid type
section [ 8] '.rela.text': relocation 1156: invalid type
section [ 8] '.rela.text': relocation 1157: invalid type
section [ 8] '.rela.text': relocation 1158: invalid type
section [ 8] '.rela.text': relocation 1159: invalid type
section [ 8] '.rela.text': relocation 1160: invalid type
section [ 8] '.rela.text': relocation 1161: invalid type
section [ 8] '.rela.text': relocation 1162: invalid type
section [ 8] '.rela.text': relocation 1163: invalid type
section [ 8] '.rela.text': relocation 1164: invalid type
section [ 8] '.rela.text': relocation 1165: invalid type
section [ 8] '.rela.text': relocation 1166: invalid type
section [ 8] '.rela.text': relocation 1167: invalid type
section [ 8] '.rela.text': relocation 1168: invalid type
section [ 8] '.rela.text': relocation 1169: invalid type
section [ 8] '.rela.text': relocation 1170: invalid type
section [ 8] '.rela.text': relocation 1171: invalid type
section [ 8] '.rela.text': relocation 1172: invalid type
section [ 8] '.rela.text': relocation 1173: invalid type
section [ 8] '.rela.text': relocation 1174: invalid type
section [12] '.rela.text.unlikely': relocation 0: invalid type
section [12] '.rela.text.unlikely': relocation 1: invalid type
section [12] '.rela.text.unlikely': relocation 2: invalid type
section [12] '.rela.text.unlikely': relocation 3: invalid type
section [12] '.rela.text.unlikely': relocation 4: invalid type
section [12] '.rela.text.unlikely': relocation 5: invalid type
section [12] '.rela.text.unlikely': relocation 6: invalid type
section [12] '.rela.text.unlikely': relocation 7: invalid type
section [12] '.rela.text.unlikely': relocation 8: invalid type
section [12] '.rela.text.unlikely': relocation 9: invalid type
section [12] '.rela.text.unlikely': relocation 10: invalid type
section [12] '.rela.text.unlikely': relocation 11: invalid type
section [12] '.rela.text.unlikely': relocation 12: invalid type
section [12] '.rela.text.unlikely': relocation 13: invalid type
section [12] '.rela.text.unlikely': relocation 14: invalid type
section [12] '.rela.text.unlikely': relocation 15: invalid type
section [12] '.rela.text.unlikely': relocation 16: invalid type
section [12] '.rela.text.unlikely': relocation 17: invalid type
section [12] '.rela.text.unlikely': relocation 18: invalid type
section [12] '.rela.text.unlikely': relocation 19: invalid type
section [12] '.rela.text.unlikely': relocation 20: invalid type
section [12] '.rela.text.unlikely': relocation 21: invalid type
section [12] '.rela.text.unlikely': relocation 22: invalid type
section [12] '.rela.text.unlikely': relocation 23: invalid type
section [12] '.rela.text.unlikely': relocation 24: invalid type
section [12] '.rela.text.unlikely': relocation 25: invalid type
section [12] '.rela.text.unlikely': relocation 26: invalid type
section [12] '.rela.text.unlikely': relocation 27: invalid type
section [12] '.rela.text.unlikely': relocation 28: invalid type
section [12] '.rela.text.unlikely': relocation 29: invalid type
section [12] '.rela.text.unlikely': relocation 30: invalid type
section [12] '.rela.text.unlikely': relocation 31: invalid type
section [12] '.rela.text.unlikely': relocation 32: invalid type
section [12] '.rela.text.unlikely': relocation 33: invalid type
section [12] '.rela.text.unlikely': relocation 34: invalid type
section [12] '.rela.text.unlikely': relocation 35: invalid type
section [12] '.rela.text.unlikely': relocation 36: invalid type
section [12] '.rela.text.unlikely': relocation 37: invalid type
section [12] '.rela.text.unlikely': relocation 38: invalid type
section [12] '.rela.text.unlikely': relocation 39: invalid type
section [12] '.rela.text.unlikely': relocation 40: invalid type
section [12] '.rela.text.unlikely': relocation 41: invalid type
section [12] '.rela.text.unlikely': relocation 42: invalid type
section [12] '.rela.text.unlikely': relocation 43: invalid type
section [12] '.rela.text.unlikely': relocation 44: invalid type
section [12] '.rela.text.unlikely': relocation 45: invalid type
section [12] '.rela.text.unlikely': relocation 46: invalid type
section [12] '.rela.text.unlikely': relocation 47: invalid type
section [12] '.rela.text.unlikely': relocation 48: invalid type
section [12] '.rela.text.unlikely': relocation 49: invalid type
section [12] '.rela.text.unlikely': relocation 50: invalid type
section [12] '.rela.text.unlikely': relocation 51: invalid type
section [12] '.rela.text.unlikely': relocation 52: invalid type
section [12] '.rela.text.unlikely': relocation 53: invalid type
section [12] '.rela.text.unlikely': relocation 54: invalid type
section [12] '.rela.text.unlikely': relocation 55: invalid type
section [12] '.rela.text.unlikely': relocation 56: invalid type
section [12] '.rela.text.unlikely': relocation 57: invalid type
section [12] '.rela.text.unlikely': relocation 58: invalid type
section [12] '.rela.text.unlikely': relocation 59: invalid type
section [12] '.rela.text.unlikely': relocation 60: invalid type
section [12] '.rela.text.unlikely': relocation 61: invalid type
section [12] '.rela.text.unlikely': relocation 62: invalid type
section [12] '.rela.text.unlikely': relocation 63: invalid type
section [12] '.rela.text.unlikely': relocation 64: invalid type
section [12] '.rela.text.unlikely': relocation 65: invalid type
section [12] '.rela.text.unlikely': relocation 66: invalid type
section [12] '.rela.text.unlikely': relocation 67: invalid type
section [12] '.rela.text.unlikely': relocation 68: invalid type
section [12] '.rela.text.unlikely': relocation 69: invalid type
section [12] '.rela.text.unlikely': relocation 70: invalid type
section [12] '.rela.text.unlikely': relocation 71: invalid type
section [12] '.rela.text.unlikely': relocation 72: invalid type
section [12] '.rela.text.unlikely': relocation 73: invalid type
section [12] '.rela.text.unlikely': relocation 74: invalid type
section [12] '.rela.text.unlikely': relocation 75: invalid type
section [12] '.rela.text.unlikely': relocation 76: invalid type
section [12] '.rela.text.unlikely': relocation 77: invalid type
section [12] '.rela.text.unlikely': relocation 78: invalid type
section [12] '.rela.text.unlikely': relocation 79: invalid type
section [12] '.rela.text.unlikely': relocation 80: invalid type
section [12] '.rela.text.unlikely': relocation 81: invalid type
section [12] '.rela.text.unlikely': relocation 82: invalid type
section [12] '.rela.text.unlikely': relocation 83: invalid type
section [12] '.rela.text.unlikely': relocation 84: invalid type
section [12] '.rela.text.unlikely': relocation 85: invalid type
section [12] '.rela.text.unlikely': relocation 86: invalid type
section [12] '.rela.text.unlikely': relocation 87: invalid type
section [12] '.rela.text.unlikely': relocation 88: invalid type
section [12] '.rela.text.unlikely': relocation 89: invalid type
section [12] '.rela.text.unlikely': relocation 90: invalid type
section [12] '.rela.text.unlikely': relocation 91: invalid type
section [12] '.rela.text.unlikely': relocation 92: invalid type
section [12] '.rela.text.unlikely': relocation 93: invalid type
section [12] '.rela.text.unlikely': relocation 94: invalid type
section [12] '.rela.text.unlikely': relocation 95: invalid type
section [12] '.rela.text.unlikely': relocation 96: invalid type
section [12] '.rela.text.unlikely': relocation 97: invalid type
section [12] '.rela.text.unlikely': relocation 98: invalid type
section [12] '.rela.text.unlikely': relocation 99: invalid type
section [12] '.rela.text.unlikely': relocation 100: invalid type
section [12] '.rela.text.unlikely': relocation 101: invalid type
section [12] '.rela.text.unlikely': relocation 102: invalid type
section [12] '.rela.text.unlikely': relocation 103: invalid type
section [12] '.rela.text.unlikely': relocation 104: invalid type
section [12] '.rela.text.unlikely': relocation 105: invalid type
section [12] '.rela.text.unlikely': relocation 106: invalid type
section [12] '.rela.text.unlikely': relocation 107: invalid type
section [12] '.rela.text.unlikely': relocation 108: invalid type
section [12] '.rela.text.unlikely': relocation 109: invalid type
section [12] '.rela.text.unlikely': relocation 110: invalid type
section [15] '.rela.text.startup': relocation 0: invalid type
section [15] '.rela.text.startup': relocation 1: invalid type
section [15] '.rela.text.startup': relocation 2: invalid type
section [15] '.rela.text.startup': relocation 3: invalid type
section [15] '.rela.text.startup': relocation 4: invalid type
section [15] '.rela.text.startup': relocation 5: invalid type
section [15] '.rela.text.startup': relocation 6: invalid type
section [15] '.rela.text.startup': relocation 7: invalid type
section [15] '.rela.text.startup': relocation 8: invalid type
section [15] '.rela.text.startup': relocation 9: invalid type
section [15] '.rela.text.startup': relocation 10: invalid type
section [15] '.rela.text.startup': relocation 11: invalid type
section [15] '.rela.text.startup': relocation 12: invalid type
section [15] '.rela.text.startup': relocation 13: invalid type
section [15] '.rela.text.startup': relocation 14: invalid type
section [15] '.rela.text.startup': relocation 15: invalid type
section [15] '.rela.text.startup': relocation 16: invalid type
section [15] '.rela.text.startup': relocation 17: invalid type
section [15] '.rela.text.startup': relocation 18: invalid type
section [15] '.rela.text.startup': relocation 19: invalid type
section [15] '.rela.text.startup': relocation 20: invalid type
section [15] '.rela.text.startup': relocation 21: invalid type
section [15] '.rela.text.startup': relocation 22: invalid type
section [15] '.rela.text.startup': relocation 23: invalid type
section [15] '.rela.text.startup': relocation 24: invalid type
section [15] '.rela.text.startup': relocation 25: invalid type
section [15] '.rela.text.startup': relocation 26: invalid type
section [15] '.rela.text.startup': relocation 27: invalid type
section [15] '.rela.text.startup': relocation 28: invalid type
section [15] '.rela.text.startup': relocation 29: invalid type
section [15] '.rela.text.startup': relocation 30: invalid type
section [15] '.rela.text.startup': relocation 31: invalid type
section [15] '.rela.text.startup': relocation 32: invalid type
section [15] '.rela.text.startup': relocation 33: invalid type
section [15] '.rela.text.startup': relocation 34: invalid type
section [18] '.rela.data.rel.local': relocation 0: invalid type
section [18] '.rela.data.rel.local': relocation 1: invalid type
section [18] '.rela.data.rel.local': relocation 2: invalid type
section [18] '.rela.data.rel.local': relocation 3: invalid type
section [20] '.rela.data.rel.ro.local': relocation 0: invalid type
section [20] '.rela.data.rel.ro.local': relocation 1: invalid type
section [20] '.rela.data.rel.ro.local': relocation 2: invalid type
section [20] '.rela.data.rel.ro.local': relocation 3: invalid type
section [20] '.rela.data.rel.ro.local': relocation 4: invalid type
section [20] '.rela.data.rel.ro.local': relocation 5: invalid type
section [20] '.rela.data.rel.ro.local': relocation 6: invalid type
section [20] '.rela.data.rel.ro.local': relocation 7: invalid type
section [20] '.rela.data.rel.ro.local': relocation 8: invalid type
section [20] '.rela.data.rel.ro.local': relocation 9: invalid type
section [20] '.rela.data.rel.ro.local': relocation 10: invalid type
section [20] '.rela.data.rel.ro.local': relocation 11: invalid type
section [20] '.rela.data.rel.ro.local': relocation 12: invalid type
section [20] '.rela.data.rel.ro.local': relocation 13: invalid type
section [20] '.rela.data.rel.ro.local': relocation 14: invalid type
section [20] '.rela.data.rel.ro.local': relocation 15: invalid type
section [20] '.rela.data.rel.ro.local': relocation 16: invalid type
section [20] '.rela.data.rel.ro.local': relocation 17: invalid type
section [20] '.rela.data.rel.ro.local': relocation 18: invalid type
section [20] '.rela.data.rel.ro.local': relocation 19: invalid type
section [20] '.rela.data.rel.ro.local': relocation 20: invalid type
section [20] '.rela.data.rel.ro.local': relocation 21: invalid type
section [20] '.rela.data.rel.ro.local': relocation 22: invalid type
section [20] '.rela.data.rel.ro.local': relocation 23: invalid type
section [20] '.rela.data.rel.ro.local': relocation 24: invalid type
section [20] '.rela.data.rel.ro.local': relocation 25: invalid type
section [22] '.rela.debug_frame': relocation 0: invalid type
section [22] '.rela.debug_frame': relocation 1: invalid type
section [22] '.rela.debug_frame': relocation 2: invalid type
section [22] '.rela.debug_frame': relocation 3: invalid type
section [22] '.rela.debug_frame': relocation 4: invalid type
section [22] '.rela.debug_frame': relocation 5: invalid type
section [22] '.rela.debug_frame': relocation 6: invalid type
section [22] '.rela.debug_frame': relocation 7: invalid type
section [22] '.rela.debug_frame': relocation 8: invalid type
section [22] '.rela.debug_frame': relocation 9: invalid type
section [22] '.rela.debug_frame': relocation 10: invalid type
section [22] '.rela.debug_frame': relocation 11: invalid type
section [22] '.rela.debug_frame': relocation 12: invalid type
section [22] '.rela.debug_frame': relocation 13: invalid type
section [22] '.rela.debug_frame': relocation 14: invalid type
section [22] '.rela.debug_frame': relocation 15: invalid type
section [22] '.rela.debug_frame': relocation 16: invalid type
section [22] '.rela.debug_frame': relocation 17: invalid type
section [22] '.rela.debug_frame': relocation 18: invalid type
section [22] '.rela.debug_frame': relocation 19: invalid type
section [22] '.rela.debug_frame': relocation 20: invalid type
section [22] '.rela.debug_frame': relocation 21: invalid type
section [22] '.rela.debug_frame': relocation 22: invalid type
section [22] '.rela.debug_frame': relocation 23: invalid type
section [22] '.rela.debug_frame': relocation 24: invalid type
section [22] '.rela.debug_frame': relocation 25: invalid type
section [22] '.rela.debug_frame': relocation 26: invalid type
section [22] '.rela.debug_frame': relocation 27: invalid type
section [22] '.rela.debug_frame': relocation 28: invalid type
section [22] '.rela.debug_frame': relocation 29: invalid type
section [22] '.rela.debug_frame': relocation 30: invalid type
section [22] '.rela.debug_frame': relocation 31: invalid type
section [22] '.rela.debug_frame': relocation 32: invalid type
section [22] '.rela.debug_frame': relocation 33: invalid type
section [22] '.rela.debug_frame': relocation 34: invalid type
section [22] '.rela.debug_frame': relocation 35: invalid type
section [22] '.rela.debug_frame': relocation 36: invalid type
section [22] '.rela.debug_frame': relocation 37: invalid type
section [22] '.rela.debug_frame': relocation 38: invalid type
section [22] '.rela.debug_frame': relocation 39: invalid type
section [22] '.rela.debug_frame': relocation 40: invalid type
section [22] '.rela.debug_frame': relocation 41: invalid type
section [22] '.rela.debug_frame': relocation 42: invalid type
section [22] '.rela.debug_frame': relocation 43: invalid type
section [22] '.rela.debug_frame': relocation 44: invalid type
section [22] '.rela.debug_frame': relocation 45: invalid type
section [22] '.rela.debug_frame': relocation 46: invalid type
section [22] '.rela.debug_frame': relocation 47: invalid type
section [22] '.rela.debug_frame': relocation 48: invalid type
section [22] '.rela.debug_frame': relocation 49: invalid type
section [22] '.rela.debug_frame': relocation 50: invalid type
section [24] '.rela.debug_info': relocation 0: invalid type
section [24] '.rela.debug_info': relocation 1: invalid type
section [24] '.rela.debug_info': relocation 2: invalid type
section [24] '.rela.debug_info': relocation 3: invalid type
section [24] '.rela.debug_info': relocation 4: invalid type
section [24] '.rela.debug_info': relocation 5: invalid type
section [24] '.rela.debug_info': relocation 6: invalid type
section [24] '.rela.debug_info': relocation 7: invalid type
section [24] '.rela.debug_info': relocation 8: invalid type
section [24] '.rela.debug_info': relocation 9: invalid type
section [24] '.rela.debug_info': relocation 10: invalid type
section [24] '.rela.debug_info': relocation 11: invalid type
section [24] '.rela.debug_info': relocation 12: invalid type
section [24] '.rela.debug_info': relocation 13: invalid type
section [24] '.rela.debug_info': relocation 14: invalid type
section [24] '.rela.debug_info': relocation 15: invalid type
section [24] '.rela.debug_info': relocation 16: invalid type
section [24] '.rela.debug_info': relocation 17: invalid type
section [24] '.rela.debug_info': relocation 18: invalid type
section [24] '.rela.debug_info': relocation 19: invalid type
section [24] '.rela.debug_info': relocation 20: invalid type
section [24] '.rela.debug_info': relocation 21: invalid type
section [24] '.rela.debug_info': relocation 22: invalid type
section [24] '.rela.debug_info': relocation 23: invalid type
section [24] '.rela.debug_info': relocation 24: invalid type
section [24] '.rela.debug_info': relocation 25: invalid type
section [24] '.rela.debug_info': relocation 26: invalid type
section [24] '.rela.debug_info': relocation 27: invalid type
section [24] '.rela.debug_info': relocation 28: invalid type
section [24] '.rela.debug_info': relocation 29: invalid type
section [24] '.rela.debug_info': relocation 30: invalid type
section [24] '.rela.debug_info': relocation 31: invalid type
section [24] '.rela.debug_info': relocation 32: invalid type
section [24] '.rela.debug_info': relocation 33: invalid type
section [24] '.rela.debug_info': relocation 34: invalid type
section [24] '.rela.debug_info': relocation 35: invalid type
section [24] '.rela.debug_info': relocation 36: invalid type
section [24] '.rela.debug_info': relocation 37: invalid type
section [24] '.rela.debug_info': relocation 38: invalid type
section [24] '.rela.debug_info': relocation 39: invalid type
section [24] '.rela.debug_info': relocation 40: invalid type
section [24] '.rela.debug_info': relocation 41: invalid type
section [24] '.rela.debug_info': relocation 42: invalid type
section [24] '.rela.debug_info': relocation 43: invalid type
section [24] '.rela.debug_info': relocation 44: invalid type
section [24] '.rela.debug_info': relocation 45: invalid type
section [24] '.rela.debug_info': relocation 46: invalid type
section [24] '.rela.debug_info': relocation 47: invalid type
section [24] '.rela.debug_info': relocation 48: invalid type
section [24] '.rela.debug_info': relocation 49: invalid type
section [24] '.rela.debug_info': relocation 50: invalid type
section [24] '.rela.debug_info': relocation 51: invalid type
section [24] '.rela.debug_info': relocation 52: invalid type
section [24] '.rela.debug_info': relocation 53: invalid type
section [24] '.rela.debug_info': relocation 54: invalid type
section [24] '.rela.debug_info': relocation 55: invalid type
section [24] '.rela.debug_info': relocation 56: invalid type
section [24] '.rela.debug_info': relocation 57: invalid type
section [24] '.rela.debug_info': relocation 58: invalid type
section [24] '.rela.debug_info': relocation 59: invalid type
section [24] '.rela.debug_info': relocation 60: invalid type
section [24] '.rela.debug_info': relocation 61: invalid type
section [24] '.rela.debug_info': relocation 62: invalid type
section [24] '.rela.debug_info': relocation 63: invalid type
section [24] '.rela.debug_info': relocation 64: invalid type
section [24] '.rela.debug_info': relocation 65: invalid type
section [24] '.rela.debug_info': relocation 66: invalid type
section [24] '.rela.debug_info': relocation 67: invalid type
section [24] '.rela.debug_info': relocation 68: invalid type
section [24] '.rela.debug_info': relocation 69: invalid type
section [24] '.rela.debug_info': relocation 70: invalid type
section [24] '.rela.debug_info': relocation 71: invalid type
section [24] '.rela.debug_info': relocation 72: invalid type
section [24] '.rela.debug_info': relocation 73: invalid type
section [24] '.rela.debug_info': relocation 74: invalid type
section [24] '.rela.debug_info': relocation 75: invalid type
section [24] '.rela.debug_info': relocation 76: invalid type
section [24] '.rela.debug_info': relocation 77: invalid type
section [24] '.rela.debug_info': relocation 78: invalid type
section [24] '.rela.debug_info': relocation 79: invalid type
section [24] '.rela.debug_info': relocation 80: invalid type
section [24] '.rela.debug_info': relocation 81: invalid type
section [24] '.rela.debug_info': relocation 82: invalid type
section [24] '.rela.debug_info': relocation 83: invalid type
section [24] '.rela.debug_info': relocation 84: invalid type
section [24] '.rela.debug_info': relocation 85: invalid type
section [24] '.rela.debug_info': relocation 86: invalid type
section [24] '.rela.debug_info': relocation 87: invalid type
section [24] '.rela.debug_info': relocation 88: invalid type
section [24] '.rela.debug_info': relocation 89: invalid type
section [24] '.rela.debug_info': relocation 90: invalid type
section [24] '.rela.debug_info': relocation 91: invalid type
section [24] '.rela.debug_info': relocation 92: invalid type
section [24] '.rela.debug_info': relocation 93: invalid type
section [24] '.rela.debug_info': relocation 94: invalid type
section [24] '.rela.debug_info': relocation 95: invalid type
section [24] '.rela.debug_info': relocation 96: invalid type
section [24] '.rela.debug_info': relocation 97: invalid type
section [24] '.rela.debug_info': relocation 98: invalid type
section [24] '.rela.debug_info': relocation 99: invalid type
section [24] '.rela.debug_info': relocation 100: invalid type
section [24] '.rela.debug_info': relocation 101: invalid type
section [24] '.rela.debug_info': relocation 102: invalid type
section [24] '.rela.debug_info': relocation 103: invalid type
section [24] '.rela.debug_info': relocation 104: invalid type
section [24] '.rela.debug_info': relocation 105: invalid type
section [24] '.rela.debug_info': relocation 106: invalid type
section [24] '.rela.debug_info': relocation 107: invalid type
section [24] '.rela.debug_info': relocation 108: invalid type
section [24] '.rela.debug_info': relocation 109: invalid type
section [24] '.rela.debug_info': relocation 110: invalid type
section [24] '.rela.debug_info': relocation 111: invalid type
section [24] '.rela.debug_info': relocation 112: invalid type
section [24] '.rela.debug_info': relocation 113: invalid type
section [24] '.rela.debug_info': relocation 114: invalid type
section [24] '.rela.debug_info': relocation 115: invalid type
section [24] '.rela.debug_info': relocation 116: invalid type
section [24] '.rela.debug_info': relocation 117: invalid type
section [24] '.rela.debug_info': relocation 118: invalid type
section [24] '.rela.debug_info': relocation 119: invalid type
section [24] '.rela.debug_info': relocation 120: invalid type
section [24] '.rela.debug_info': relocation 121: invalid type
section [24] '.rela.debug_info': relocation 122: invalid type
section [24] '.rela.debug_info': relocation 123: invalid type
section [24] '.rela.debug_info': relocation 124: invalid type
section [24] '.rela.debug_info': relocation 125: invalid type
section [24] '.rela.debug_info': relocation 126: invalid type
section [24] '.rela.debug_info': relocation 127: invalid type
section [24] '.rela.debug_info': relocation 128: invalid type
section [24] '.rela.debug_info': relocation 129: invalid type
section [24] '.rela.debug_info': relocation 130: invalid type
section [24] '.rela.debug_info': relocation 131: invalid type
section [24] '.rela.debug_info': relocation 132: invalid type
section [24] '.rela.debug_info': relocation 133: invalid type
section [24] '.rela.debug_info': relocation 134: invalid type
section [24] '.rela.debug_info': relocation 135: invalid type
section [24] '.rela.debug_info': relocation 136: invalid type
section [24] '.rela.debug_info': relocation 137: invalid type
section [24] '.rela.debug_info': relocation 138: invalid type
section [24] '.rela.debug_info': relocation 139: invalid type
section [24] '.rela.debug_info': relocation 140: invalid type
section [24] '.rela.debug_info': relocation 141: invalid type
section [24] '.rela.debug_info': relocation 142: invalid type
section [24] '.rela.debug_info': relocation 143: invalid type
section [24] '.rela.debug_info': relocation 144: invalid type
section [24] '.rela.debug_info': relocation 145: invalid type
section [24] '.rela.debug_info': relocation 146: invalid type
section [24] '.rela.debug_info': relocation 147: invalid type
section [24] '.rela.debug_info': relocation 148: invalid type
section [24] '.rela.debug_info': relocation 149: invalid type
section [24] '.rela.debug_info': relocation 150: invalid type
section [24] '.rela.debug_info': relocation 151: invalid type
section [24] '.rela.debug_info': relocation 152: invalid type
section [24] '.rela.debug_info': relocation 153: invalid type
section [24] '.rela.debug_info': relocation 154: invalid type
section [24] '.rela.debug_info': relocation 155: invalid type
section [24] '.rela.debug_info': relocation 156: invalid type
section [24] '.rela.debug_info': relocation 157: invalid type
section [24] '.rela.debug_info': relocation 158: invalid type
section [24] '.rela.debug_info': relocation 159: invalid type
section [24] '.rela.debug_info': relocation 160: invalid type
section [24] '.rela.debug_info': relocation 161: invalid type
section [24] '.rela.debug_info': relocation 162: invalid type
section [24] '.rela.debug_info': relocation 163: invalid type
section [24] '.rela.debug_info': relocation 164: invalid type
section [24] '.rela.debug_info': relocation 165: invalid type
section [24] '.rela.debug_info': relocation 166: invalid type
section [24] '.rela.debug_info': relocation 167: invalid type
section [24] '.rela.debug_info': relocation 168: invalid type
section [24] '.rela.debug_info': relocation 169: invalid type
section [24] '.rela.debug_info': relocation 170: invalid type
section [24] '.rela.debug_info': relocation 171: invalid type
section [24] '.rela.debug_info': relocation 172: invalid type
section [24] '.rela.debug_info': relocation 173: invalid type
section [24] '.rela.debug_info': relocation 174: invalid type
section [24] '.rela.debug_info': relocation 175: invalid type
section [24] '.rela.debug_info': relocation 176: invalid type
section [24] '.rela.debug_info': relocation 177: invalid type
section [24] '.rela.debug_info': relocation 178: invalid type
section [24] '.rela.debug_info': relocation 179: invalid type
section [24] '.rela.debug_info': relocation 180: invalid type
section [24] '.rela.debug_info': relocation 181: invalid type
section [24] '.rela.debug_info': relocation 182: invalid type
section [24] '.rela.debug_info': relocation 183: invalid type
section [24] '.rela.debug_info': relocation 184: invalid type
section [24] '.rela.debug_info': relocation 185: invalid type
section [24] '.rela.debug_info': relocation 186: invalid type
section [24] '.rela.debug_info': relocation 187: invalid type
section [24] '.rela.debug_info': relocation 188: invalid type
section [24] '.rela.debug_info': relocation 189: invalid type
section [24] '.rela.debug_info': relocation 190: invalid type
section [24] '.rela.debug_info': relocation 191: invalid type
section [24] '.rela.debug_info': relocation 192: invalid type
section [24] '.rela.debug_info': relocation 193: invalid type
section [24] '.rela.debug_info': relocation 194: invalid type
section [24] '.rela.debug_info': relocation 195: invalid type
section [24] '.rela.debug_info': relocation 196: invalid type
section [24] '.rela.debug_info': relocation 197: invalid type
section [24] '.rela.debug_info': relocation 198: invalid type
section [24] '.rela.debug_info': relocation 199: invalid type
section [24] '.rela.debug_info': relocation 200: invalid type
section [24] '.rela.debug_info': relocation 201: invalid type
section [24] '.rela.debug_info': relocation 202: invalid type
section [24] '.rela.debug_info': relocation 203: invalid type
section [24] '.rela.debug_info': relocation 204: invalid type
section [24] '.rela.debug_info': relocation 205: invalid type
section [24] '.rela.debug_info': relocation 206: invalid type
section [24] '.rela.debug_info': relocation 207: invalid type
section [24] '.rela.debug_info': relocation 208: invalid type
section [24] '.rela.debug_info': relocation 209: invalid type
section [24] '.rela.debug_info': relocation 210: invalid type
section [24] '.rela.debug_info': relocation 211: invalid type
section [24] '.rela.debug_info': relocation 212: invalid type
section [24] '.rela.debug_info': relocation 213: invalid type
section [24] '.rela.debug_info': relocation 214: invalid type
section [24] '.rela.debug_info': relocation 215: invalid type
section [24] '.rela.debug_info': relocation 216: invalid type
section [24] '.rela.debug_info': relocation 217: invalid type
section [24] '.rela.debug_info': relocation 218: invalid type
section [24] '.rela.debug_info': relocation 219: invalid type
section [24] '.rela.debug_info': relocation 220: invalid type
section [24] '.rela.debug_info': relocation 221: invalid type
section [24] '.rela.debug_info': relocation 222: invalid type
section [24] '.rela.debug_info': relocation 223: invalid type
section [24] '.rela.debug_info': relocation 224: invalid type
section [24] '.rela.debug_info': relocation 225: invalid type
section [24] '.rela.debug_info': relocation 226: invalid type
section [24] '.rela.debug_info': relocation 227: invalid type
section [24] '.rela.debug_info': relocation 228: invalid type
section [24] '.rela.debug_info': relocation 229: invalid type
section [24] '.rela.debug_info': relocation 230: invalid type
section [24] '.rela.debug_info': relocation 231: invalid type
section [24] '.rela.debug_info': relocation 232: invalid type
section [24] '.rela.debug_info': relocation 233: invalid type
section [24] '.rela.debug_info': relocation 234: invalid type
section [24] '.rela.debug_info': relocation 235: invalid type
section [24] '.rela.debug_info': relocation 236: invalid type
section [24] '.rela.debug_info': relocation 237: invalid type
section [24] '.rela.debug_info': relocation 238: invalid type
section [24] '.rela.debug_info': relocation 239: invalid type
section [24] '.rela.debug_info': relocation 240: invalid type
section [24] '.rela.debug_info': relocation 241: invalid type
section [24] '.rela.debug_info': relocation 242: invalid type
section [24] '.rela.debug_info': relocation 243: invalid type
section [24] '.rela.debug_info': relocation 244: invalid type
section [24] '.rela.debug_info': relocation 245: invalid type
section [24] '.rela.debug_info': relocation 246: invalid type
section [24] '.rela.debug_info': relocation 247: invalid type
section [24] '.rela.debug_info': relocation 248: invalid type
section [24] '.rela.debug_info': relocation 249: invalid type
section [24] '.rela.debug_info': relocation 250: invalid type
section [24] '.rela.debug_info': relocation 251: invalid type
section [24] '.rela.debug_info': relocation 252: invalid type
section [24] '.rela.debug_info': relocation 253: invalid type
section [24] '.rela.debug_info': relocation 254: invalid type
section [24] '.rela.debug_info': relocation 255: invalid type
section [24] '.rela.debug_info': relocation 256: invalid type
section [24] '.rela.debug_info': relocation 257: invalid type
section [24] '.rela.debug_info': relocation 258: invalid type
section [24] '.rela.debug_info': relocation 259: invalid type
section [24] '.rela.debug_info': relocation 260: invalid type
section [24] '.rela.debug_info': relocation 261: invalid type
section [24] '.rela.debug_info': relocation 262: invalid type
section [24] '.rela.debug_info': relocation 263: invalid type
section [24] '.rela.debug_info': relocation 264: invalid type
section [24] '.rela.debug_info': relocation 265: invalid type
section [24] '.rela.debug_info': relocation 266: invalid type
section [24] '.rela.debug_info': relocation 267: invalid type
section [24] '.rela.debug_info': relocation 268: invalid type
section [24] '.rela.debug_info': relocation 269: invalid type
section [24] '.rela.debug_info': relocation 270: invalid type
section [24] '.rela.debug_info': relocation 271: invalid type
section [24] '.rela.debug_info': relocation 272: invalid type
section [24] '.rela.debug_info': relocation 273: invalid type
section [24] '.rela.debug_info': relocation 274: invalid type
section [24] '.rela.debug_info': relocation 275: invalid type
section [24] '.rela.debug_info': relocation 276: invalid type
section [24] '.rela.debug_info': relocation 277: invalid type
section [24] '.rela.debug_info': relocation 278: invalid type
section [24] '.rela.debug_info': relocation 279: invalid type
section [24] '.rela.debug_info': relocation 280: invalid type
section [24] '.rela.debug_info': relocation 281: invalid type
section [24] '.rela.debug_info': relocation 282: invalid type
section [24] '.rela.debug_info': relocation 283: invalid type
section [24] '.rela.debug_info': relocation 284: invalid type
section [24] '.rela.debug_info': relocation 285: invalid type
section [24] '.rela.debug_info': relocation 286: invalid type
section [24] '.rela.debug_info': relocation 287: invalid type
section [24] '.rela.debug_info': relocation 288: invalid type
section [24] '.rela.debug_info': relocation 289: invalid type
section [24] '.rela.debug_info': relocation 290: invalid type
section [24] '.rela.debug_info': relocation 291: invalid type
section [24] '.rela.debug_info': relocation 292: invalid type
section [24] '.rela.debug_info': relocation 293: invalid type
section [24] '.rela.debug_info': relocation 294: invalid type
section [24] '.rela.debug_info': relocation 295: invalid type
section [24] '.rela.debug_info': relocation 296: invalid type
section [24] '.rela.debug_info': relocation 297: invalid type
section [24] '.rela.debug_info': relocation 298: invalid type
section [24] '.rela.debug_info': relocation 299: invalid type
section [24] '.rela.debug_info': relocation 300: invalid type
section [24] '.rela.debug_info': relocation 301: invalid type
section [24] '.rela.debug_info': relocation 302: invalid type
section [24] '.rela.debug_info': relocation 303: invalid type
section [24] '.rela.debug_info': relocation 304: invalid type
section [24] '.rela.debug_info': relocation 305: invalid type
section [24] '.rela.debug_info': relocation 306: invalid type
section [24] '.rela.debug_info': relocation 307: invalid type
section [24] '.rela.debug_info': relocation 308: invalid type
section [24] '.rela.debug_info': relocation 309: invalid type
section [24] '.rela.debug_info': relocation 310: invalid type
section [24] '.rela.debug_info': relocation 311: invalid type
section [24] '.rela.debug_info': relocation 312: invalid type
section [24] '.rela.debug_info': relocation 313: invalid type
section [24] '.rela.debug_info': relocation 314: invalid type
section [24] '.rela.debug_info': relocation 315: invalid type
section [24] '.rela.debug_info': relocation 316: invalid type
section [24] '.rela.debug_info': relocation 317: invalid type
section [24] '.rela.debug_info': relocation 318: invalid type
section [24] '.rela.debug_info': relocation 319: invalid type
section [24] '.rela.debug_info': relocation 320: invalid type
section [24] '.rela.debug_info': relocation 321: invalid type
section [24] '.rela.debug_info': relocation 322: invalid type
section [24] '.rela.debug_info': relocation 323: invalid type
section [24] '.rela.debug_info': relocation 324: invalid type
section [24] '.rela.debug_info': relocation 325: invalid type
section [24] '.rela.debug_info': relocation 326: invalid type
section [24] '.rela.debug_info': relocation 327: invalid type
section [24] '.rela.debug_info': relocation 328: invalid type
section [24] '.rela.debug_info': relocation 329: invalid type
section [24] '.rela.debug_info': relocation 330: invalid type
section [24] '.rela.debug_info': relocation 331: invalid type
section [24] '.rela.debug_info': relocation 332: invalid type
section [24] '.rela.debug_info': relocation 333: invalid type
section [24] '.rela.debug_info': relocation 334: invalid type
section [24] '.rela.debug_info': relocation 335: invalid type
section [24] '.rela.debug_info': relocation 336: invalid type
section [24] '.rela.debug_info': relocation 337: invalid type
section [24] '.rela.debug_info': relocation 338: invalid type
section [24] '.rela.debug_info': relocation 339: invalid type
section [24] '.rela.debug_info': relocation 340: invalid type
section [24] '.rela.debug_info': relocation 341: invalid type
section [24] '.rela.debug_info': relocation 342: invalid type
section [24] '.rela.debug_info': relocation 343: invalid type
section [24] '.rela.debug_info': relocation 344: invalid type
section [24] '.rela.debug_info': relocation 345: invalid type
section [24] '.rela.debug_info': relocation 346: invalid type
section [24] '.rela.debug_info': relocation 347: invalid type
section [24] '.rela.debug_info': relocation 348: invalid type
section [24] '.rela.debug_info': relocation 349: invalid type
section [24] '.rela.debug_info': relocation 350: invalid type
section [24] '.rela.debug_info': relocation 351: invalid type
section [24] '.rela.debug_info': relocation 352: invalid type
section [24] '.rela.debug_info': relocation 353: invalid type
section [24] '.rela.debug_info': relocation 354: invalid type
section [24] '.rela.debug_info': relocation 355: invalid type
section [24] '.rela.debug_info': relocation 356: invalid type
section [24] '.rela.debug_info': relocation 357: invalid type
section [24] '.rela.debug_info': relocation 358: invalid type
section [24] '.rela.debug_info': relocation 359: invalid type
section [24] '.rela.debug_info': relocation 360: invalid type
section [24] '.rela.debug_info': relocation 361: invalid type
section [24] '.rela.debug_info': relocation 362: invalid type
section [24] '.rela.debug_info': relocation 363: invalid type
section [24] '.rela.debug_info': relocation 364: invalid type
section [24] '.rela.debug_info': relocation 365: invalid type
section [24] '.rela.debug_info': relocation 366: invalid type
section [24] '.rela.debug_info': relocation 367: invalid type
section [24] '.rela.debug_info': relocation 368: invalid type
section [24] '.rela.debug_info': relocation 369: invalid type
section [24] '.rela.debug_info': relocation 370: invalid type
section [24] '.rela.debug_info': relocation 371: invalid type
section [24] '.rela.debug_info': relocation 372: invalid type
section [24] '.rela.debug_info': relocation 373: invalid type
section [24] '.rela.debug_info': relocation 374: invalid type
section [24] '.rela.debug_info': relocation 375: invalid type
section [24] '.rela.debug_info': relocation 376: invalid type
section [24] '.rela.debug_info': relocation 377: invalid type
section [24] '.rela.debug_info': relocation 378: invalid type
section [24] '.rela.debug_info': relocation 379: invalid type
section [24] '.rela.debug_info': relocation 380: invalid type
section [24] '.rela.debug_info': relocation 381: invalid type
section [24] '.rela.debug_info': relocation 382: invalid type
section [24] '.rela.debug_info': relocation 383: invalid type
section [24] '.rela.debug_info': relocation 384: invalid type
section [24] '.rela.debug_info': relocation 385: invalid type
section [24] '.rela.debug_info': relocation 386: invalid type
section [24] '.rela.debug_info': relocation 387: invalid type
section [24] '.rela.debug_info': relocation 388: invalid type
section [24] '.rela.debug_info': relocation 389: invalid type
section [24] '.rela.debug_info': relocation 390: invalid type
section [24] '.rela.debug_info': relocation 391: invalid type
section [24] '.rela.debug_info': relocation 392: invalid type
section [24] '.rela.debug_info': relocation 393: invalid type
section [24] '.rela.debug_info': relocation 394: invalid type
section [24] '.rela.debug_info': relocation 395: invalid type
section [24] '.rela.debug_info': relocation 396: invalid type
section [24] '.rela.debug_info': relocation 397: invalid type
section [24] '.rela.debug_info': relocation 398: invalid type
section [24] '.rela.debug_info': relocation 399: invalid type
section [24] '.rela.debug_info': relocation 400: invalid type
section [24] '.rela.debug_info': relocation 401: invalid type
section [24] '.rela.debug_info': relocation 402: invalid type
section [24] '.rela.debug_info': relocation 403: invalid type
section [24] '.rela.debug_info': relocation 404: invalid type
section [24] '.rela.debug_info': relocation 405: invalid type
section [24] '.rela.debug_info': relocation 406: invalid type
section [24] '.rela.debug_info': relocation 407: invalid type
section [24] '.rela.debug_info': relocation 408: invalid type
section [24] '.rela.debug_info': relocation 409: invalid type
section [24] '.rela.debug_info': relocation 410: invalid type
section [24] '.rela.debug_info': relocation 411: invalid type
section [24] '.rela.debug_info': relocation 412: invalid type
section [24] '.rela.debug_info': relocation 413: invalid type
section [24] '.rela.debug_info': relocation 414: invalid type
section [24] '.rela.debug_info': relocation 415: invalid type
section [24] '.rela.debug_info': relocation 416: invalid type
section [24] '.rela.debug_info': relocation 417: invalid type
section [24] '.rela.debug_info': relocation 418: invalid type
section [24] '.rela.debug_info': relocation 419: invalid type
section [24] '.rela.debug_info': relocation 420: invalid type
section [24] '.rela.debug_info': relocation 421: invalid type
section [24] '.rela.debug_info': relocation 422: invalid type
section [24] '.rela.debug_info': relocation 423: invalid type
section [24] '.rela.debug_info': relocation 424: invalid type
section [24] '.rela.debug_info': relocation 425: invalid type
section [24] '.rela.debug_info': relocation 426: invalid type
section [24] '.rela.debug_info': relocation 427: invalid type
section [24] '.rela.debug_info': relocation 428: invalid type
section [24] '.rela.debug_info': relocation 429: invalid type
section [24] '.rela.debug_info': relocation 430: invalid type
section [24] '.rela.debug_info': relocation 431: invalid type
section [24] '.rela.debug_info': relocation 432: invalid type
section [24] '.rela.debug_info': relocation 433: invalid type
section [24] '.rela.debug_info': relocation 434: invalid type
section [24] '.rela.debug_info': relocation 435: invalid type
section [24] '.rela.debug_info': relocation 436: invalid type
section [24] '.rela.debug_info': relocation 437: invalid type
section [24] '.rela.debug_info': relocation 438: invalid type
section [24] '.rela.debug_info': relocation 439: invalid type
section [24] '.rela.debug_info': relocation 440: invalid type
section [24] '.rela.debug_info': relocation 441: invalid type
section [24] '.rela.debug_info': relocation 442: invalid type
section [24] '.rela.debug_info': relocation 443: invalid type
section [24] '.rela.debug_info': relocation 444: invalid type
section [24] '.rela.debug_info': relocation 445: invalid type
section [24] '.rela.debug_info': relocation 446: invalid type
section [24] '.rela.debug_info': relocation 447: invalid type
section [24] '.rela.debug_info': relocation 448: invalid type
section [24] '.rela.debug_info': relocation 449: invalid type
section [24] '.rela.debug_info': relocation 450: invalid type
section [24] '.rela.debug_info': relocation 451: invalid type
section [24] '.rela.debug_info': relocation 452: invalid type
section [24] '.rela.debug_info': relocation 453: invalid type
section [24] '.rela.debug_info': relocation 454: invalid type
section [24] '.rela.debug_info': relocation 455: invalid type
section [24] '.rela.debug_info': relocation 456: invalid type
section [24] '.rela.debug_info': relocation 457: invalid type
section [24] '.rela.debug_info': relocation 458: invalid type
section [24] '.rela.debug_info': relocation 459: invalid type
section [24] '.rela.debug_info': relocation 460: invalid type
section [24] '.rela.debug_info': relocation 461: invalid type
section [24] '.rela.debug_info': relocation 462: invalid type
section [24] '.rela.debug_info': relocation 463: invalid type
section [24] '.rela.debug_info': relocation 464: invalid type
section [24] '.rela.debug_info': relocation 465: invalid type
section [24] '.rela.debug_info': relocation 466: invalid type
section [24] '.rela.debug_info': relocation 467: invalid type
section [24] '.rela.debug_info': relocation 468: invalid type
section [24] '.rela.debug_info': relocation 469: invalid type
section [24] '.rela.debug_info': relocation 470: invalid type
section [24] '.rela.debug_info': relocation 471: invalid type
section [24] '.rela.debug_info': relocation 472: invalid type
section [24] '.rela.debug_info': relocation 473: invalid type
section [24] '.rela.debug_info': relocation 474: invalid type
section [24] '.rela.debug_info': relocation 475: invalid type
section [24] '.rela.debug_info': relocation 476: invalid type
section [24] '.rela.debug_info': relocation 477: invalid type
section [24] '.rela.debug_info': relocation 478: invalid type
section [24] '.rela.debug_info': relocation 479: invalid type
section [24] '.rela.debug_info': relocation 480: invalid type
section [24] '.rela.debug_info': relocation 481: invalid type
section [24] '.rela.debug_info': relocation 482: invalid type
section [24] '.rela.debug_info': relocation 483: invalid type
section [24] '.rela.debug_info': relocation 484: invalid type
section [24] '.rela.debug_info': relocation 485: invalid type
section [24] '.rela.debug_info': relocation 486: invalid type
section [24] '.rela.debug_info': relocation 487: invalid type
section [24] '.rela.debug_info': relocation 488: invalid type
section [24] '.rela.debug_info': relocation 489: invalid type
section [24] '.rela.debug_info': relocation 490: invalid type
section [24] '.rela.debug_info': relocation 491: invalid type
section [24] '.rela.debug_info': relocation 492: invalid type
section [24] '.rela.debug_info': relocation 493: invalid type
section [24] '.rela.debug_info': relocation 494: invalid type
section [24] '.rela.debug_info': relocation 495: invalid type
section [24] '.rela.debug_info': relocation 496: invalid type
section [24] '.rela.debug_info': relocation 497: invalid type
section [24] '.rela.debug_info': relocation 498: invalid type
section [24] '.rela.debug_info': relocation 499: invalid type
section [24] '.rela.debug_info': relocation 500: invalid type
section [24] '.rela.debug_info': relocation 501: invalid type
section [24] '.rela.debug_info': relocation 502: invalid type
section [24] '.rela.debug_info': relocation 503: invalid type
section [24] '.rela.debug_info': relocation 504: invalid type
section [24] '.rela.debug_info': relocation 505: invalid type
section [24] '.rela.debug_info': relocation 506: invalid type
section [24] '.rela.debug_info': relocation 507: invalid type
section [24] '.rela.debug_info': relocation 508: invalid type
section [24] '.rela.debug_info': relocation 509: invalid type
section [24] '.rela.debug_info': relocation 510: invalid type
section [24] '.rela.debug_info': relocation 511: invalid type
section [24] '.rela.debug_info': relocation 512: invalid type
section [24] '.rela.debug_info': relocation 513: invalid type
section [24] '.rela.debug_info': relocation 514: invalid type
section [24] '.rela.debug_info': relocation 515: invalid type
section [24] '.rela.debug_info': relocation 516: invalid type
section [24] '.rela.debug_info': relocation 517: invalid type
section [24] '.rela.debug_info': relocation 518: invalid type
section [24] '.rela.debug_info': relocation 519: invalid type
section [24] '.rela.debug_info': relocation 520: invalid type
section [24] '.rela.debug_info': relocation 521: invalid type
section [24] '.rela.debug_info': relocation 522: invalid type
section [24] '.rela.debug_info': relocation 523: invalid type
section [24] '.rela.debug_info': relocation 524: invalid type
section [24] '.rela.debug_info': relocation 525: invalid type
section [24] '.rela.debug_info': relocation 526: invalid type
section [24] '.rela.debug_info': relocation 527: invalid type
section [24] '.rela.debug_info': relocation 528: invalid type
section [24] '.rela.debug_info': relocation 529: invalid type
section [24] '.rela.debug_info': relocation 530: invalid type
section [24] '.rela.debug_info': relocation 531: invalid type
section [24] '.rela.debug_info': relocation 532: invalid type
section [24] '.rela.debug_info': relocation 533: invalid type
section [24] '.rela.debug_info': relocation 534: invalid type
section [24] '.rela.debug_info': relocation 535: invalid type
section [24] '.rela.debug_info': relocation 536: invalid type
section [24] '.rela.debug_info': relocation 537: invalid type
section [24] '.rela.debug_info': relocation 538: invalid type
section [24] '.rela.debug_info': relocation 539: invalid type
section [24] '.rela.debug_info': relocation 540: invalid type
section [24] '.rela.debug_info': relocation 541: invalid type
section [24] '.rela.debug_info': relocation 542: invalid type
section [24] '.rela.debug_info': relocation 543: invalid type
section [24] '.rela.debug_info': relocation 544: invalid type
section [24] '.rela.debug_info': relocation 545: invalid type
section [24] '.rela.debug_info': relocation 546: invalid type
section [24] '.rela.debug_info': relocation 547: invalid type
section [24] '.rela.debug_info': relocation 548: invalid type
section [24] '.rela.debug_info': relocation 549: invalid type
section [24] '.rela.debug_info': relocation 550: invalid type
section [24] '.rela.debug_info': relocation 551: invalid type
section [24] '.rela.debug_info': relocation 552: invalid type
section [24] '.rela.debug_info': relocation 553: invalid type
section [24] '.rela.debug_info': relocation 554: invalid type
section [24] '.rela.debug_info': relocation 555: invalid type
section [24] '.rela.debug_info': relocation 556: invalid type
section [24] '.rela.debug_info': relocation 557: invalid type
section [24] '.rela.debug_info': relocation 558: invalid type
section [24] '.rela.debug_info': relocation 559: invalid type
section [24] '.rela.debug_info': relocation 560: invalid type
section [24] '.rela.debug_info': relocation 561: invalid type
section [24] '.rela.debug_info': relocation 562: invalid type
section [24] '.rela.debug_info': relocation 563: invalid type
section [24] '.rela.debug_info': relocation 564: invalid type
section [24] '.rela.debug_info': relocation 565: invalid type
section [24] '.rela.debug_info': relocation 566: invalid type
section [24] '.rela.debug_info': relocation 567: invalid type
section [24] '.rela.debug_info': relocation 568: invalid type
section [24] '.rela.debug_info': relocation 569: invalid type
section [24] '.rela.debug_info': relocation 570: invalid type
section [24] '.rela.debug_info': relocation 571: invalid type
section [24] '.rela.debug_info': relocation 572: invalid type
section [24] '.rela.debug_info': relocation 573: invalid type
section [24] '.rela.debug_info': relocation 574: invalid type
section [24] '.rela.debug_info': relocation 575: invalid type
section [24] '.rela.debug_info': relocation 576: invalid type
section [24] '.rela.debug_info': relocation 577: invalid type
section [24] '.rela.debug_info': relocation 578: invalid type
section [24] '.rela.debug_info': relocation 579: invalid type
section [24] '.rela.debug_info': relocation 580: invalid type
section [24] '.rela.debug_info': relocation 581: invalid type
section [24] '.rela.debug_info': relocation 582: invalid type
section [24] '.rela.debug_info': relocation 583: invalid type
section [24] '.rela.debug_info': relocation 584: invalid type
section [24] '.rela.debug_info': relocation 585: invalid type
section [24] '.rela.debug_info': relocation 586: invalid type
section [24] '.rela.debug_info': relocation 587: invalid type
section [24] '.rela.debug_info': relocation 588: invalid type
section [24] '.rela.debug_info': relocation 589: invalid type
section [24] '.rela.debug_info': relocation 590: invalid type
section [24] '.rela.debug_info': relocation 591: invalid type
section [24] '.rela.debug_info': relocation 592: invalid type
section [24] '.rela.debug_info': relocation 593: invalid type
section [24] '.rela.debug_info': relocation 594: invalid type
section [24] '.rela.debug_info': relocation 595: invalid type
section [24] '.rela.debug_info': relocation 596: invalid type
section [24] '.rela.debug_info': relocation 597: invalid type
section [24] '.rela.debug_info': relocation 598: invalid type
section [24] '.rela.debug_info': relocation 599: invalid type
section [24] '.rela.debug_info': relocation 600: invalid type
section [24] '.rela.debug_info': relocation 601: invalid type
section [24] '.rela.debug_info': relocation 602: invalid type
section [24] '.rela.debug_info': relocation 603: invalid type
section [24] '.rela.debug_info': relocation 604: invalid type
section [24] '.rela.debug_info': relocation 605: invalid type
section [24] '.rela.debug_info': relocation 606: invalid type
section [24] '.rela.debug_info': relocation 607: invalid type
section [24] '.rela.debug_info': relocation 608: invalid type
section [24] '.rela.debug_info': relocation 609: invalid type
section [24] '.rela.debug_info': relocation 610: invalid type
section [24] '.rela.debug_info': relocation 611: invalid type
section [24] '.rela.debug_info': relocation 612: invalid type
section [24] '.rela.debug_info': relocation 613: invalid type
section [24] '.rela.debug_info': relocation 614: invalid type
section [24] '.rela.debug_info': relocation 615: invalid type
section [24] '.rela.debug_info': relocation 616: invalid type
section [24] '.rela.debug_info': relocation 617: invalid type
section [24] '.rela.debug_info': relocation 618: invalid type
section [24] '.rela.debug_info': relocation 619: invalid type
section [24] '.rela.debug_info': relocation 620: invalid type
section [24] '.rela.debug_info': relocation 621: invalid type
section [24] '.rela.debug_info': relocation 622: invalid type
section [24] '.rela.debug_info': relocation 623: invalid type
section [24] '.rela.debug_info': relocation 624: invalid type
section [24] '.rela.debug_info': relocation 625: invalid type
section [24] '.rela.debug_info': relocation 626: invalid type
section [24] '.rela.debug_info': relocation 627: invalid type
section [24] '.rela.debug_info': relocation 628: invalid type
section [24] '.rela.debug_info': relocation 629: invalid type
section [24] '.rela.debug_info': relocation 630: invalid type
section [24] '.rela.debug_info': relocation 631: invalid type
section [24] '.rela.debug_info': relocation 632: invalid type
section [24] '.rela.debug_info': relocation 633: invalid type
section [24] '.rela.debug_info': relocation 634: invalid type
section [24] '.rela.debug_info': relocation 635: invalid type
section [24] '.rela.debug_info': relocation 636: invalid type
section [24] '.rela.debug_info': relocation 637: invalid type
section [24] '.rela.debug_info': relocation 638: invalid type
section [24] '.rela.debug_info': relocation 639: invalid type
section [24] '.rela.debug_info': relocation 640: invalid type
section [24] '.rela.debug_info': relocation 641: invalid type
section [24] '.rela.debug_info': relocation 642: invalid type
section [24] '.rela.debug_info': relocation 643: invalid type
section [24] '.rela.debug_info': relocation 644: invalid type
section [24] '.rela.debug_info': relocation 645: invalid type
section [24] '.rela.debug_info': relocation 646: invalid type
section [24] '.rela.debug_info': relocation 647: invalid type
section [24] '.rela.debug_info': relocation 648: invalid type
section [24] '.rela.debug_info': relocation 649: invalid type
section [24] '.rela.debug_info': relocation 650: invalid type
section [24] '.rela.debug_info': relocation 651: invalid type
section [24] '.rela.debug_info': relocation 652: invalid type
section [24] '.rela.debug_info': relocation 653: invalid type
section [24] '.rela.debug_info': relocation 654: invalid type
section [24] '.rela.debug_info': relocation 655: invalid type
section [24] '.rela.debug_info': relocation 656: invalid type
section [24] '.rela.debug_info': relocation 657: invalid type
section [24] '.rela.debug_info': relocation 658: invalid type
section [24] '.rela.debug_info': relocation 659: invalid type
section [24] '.rela.debug_info': relocation 660: invalid type
section [24] '.rela.debug_info': relocation 661: invalid type
section [24] '.rela.debug_info': relocation 662: invalid type
section [24] '.rela.debug_info': relocation 663: invalid type
section [24] '.rela.debug_info': relocation 664: invalid type
section [24] '.rela.debug_info': relocation 665: invalid type
section [24] '.rela.debug_info': relocation 666: invalid type
section [24] '.rela.debug_info': relocation 667: invalid type
section [24] '.rela.debug_info': relocation 668: invalid type
section [24] '.rela.debug_info': relocation 669: invalid type
section [24] '.rela.debug_info': relocation 670: invalid type
section [24] '.rela.debug_info': relocation 671: invalid type
section [24] '.rela.debug_info': relocation 672: invalid type
section [24] '.rela.debug_info': relocation 673: invalid type
section [24] '.rela.debug_info': relocation 674: invalid type
section [24] '.rela.debug_info': relocation 675: invalid type
section [24] '.rela.debug_info': relocation 676: invalid type
section [24] '.rela.debug_info': relocation 677: invalid type
section [24] '.rela.debug_info': relocation 678: invalid type
section [24] '.rela.debug_info': relocation 679: invalid type
section [24] '.rela.debug_info': relocation 680: invalid type
section [24] '.rela.debug_info': relocation 681: invalid type
section [24] '.rela.debug_info': relocation 682: invalid type
section [24] '.rela.debug_info': relocation 683: invalid type
section [24] '.rela.debug_info': relocation 684: invalid type
section [24] '.rela.debug_info': relocation 685: invalid type
section [24] '.rela.debug_info': relocation 686: invalid type
section [24] '.rela.debug_info': relocation 687: invalid type
section [24] '.rela.debug_info': relocation 688: invalid type
section [24] '.rela.debug_info': relocation 689: invalid type
section [24] '.rela.debug_info': relocation 690: invalid type
section [24] '.rela.debug_info': relocation 691: invalid type
section [24] '.rela.debug_info': relocation 692: invalid type
section [24] '.rela.debug_info': relocation 693: invalid type
section [24] '.rela.debug_info': relocation 694: invalid type
section [24] '.rela.debug_info': relocation 695: invalid type
section [24] '.rela.debug_info': relocation 696: invalid type
section [24] '.rela.debug_info': relocation 697: invalid type
section [24] '.rela.debug_info': relocation 698: invalid type
section [24] '.rela.debug_info': relocation 699: invalid type
section [24] '.rela.debug_info': relocation 700: invalid type
section [24] '.rela.debug_info': relocation 701: invalid type
section [24] '.rela.debug_info': relocation 702: invalid type
section [24] '.rela.debug_info': relocation 703: invalid type
section [24] '.rela.debug_info': relocation 704: invalid type
section [24] '.rela.debug_info': relocation 705: invalid type
section [24] '.rela.debug_info': relocation 706: invalid type
section [24] '.rela.debug_info': relocation 707: invalid type
section [24] '.rela.debug_info': relocation 708: invalid type
section [24] '.rela.debug_info': relocation 709: invalid type
section [24] '.rela.debug_info': relocation 710: invalid type
section [24] '.rela.debug_info': relocation 711: invalid type
section [24] '.rela.debug_info': relocation 712: invalid type
section [24] '.rela.debug_info': relocation 713: invalid type
section [24] '.rela.debug_info': relocation 714: invalid type
section [24] '.rela.debug_info': relocation 715: invalid type
section [24] '.rela.debug_info': relocation 716: invalid type
section [24] '.rela.debug_info': relocation 717: invalid type
section [24] '.rela.debug_info': relocation 718: invalid type
section [24] '.rela.debug_info': relocation 719: invalid type
section [24] '.rela.debug_info': relocation 720: invalid type
section [24] '.rela.debug_info': relocation 721: invalid type
section [24] '.rela.debug_info': relocation 722: invalid type
section [24] '.rela.debug_info': relocation 723: invalid type
section [24] '.rela.debug_info': relocation 724: invalid type
section [24] '.rela.debug_info': relocation 725: invalid type
section [24] '.rela.debug_info': relocation 726: invalid type
section [24] '.rela.debug_info': relocation 727: invalid type
section [24] '.rela.debug_info': relocation 728: invalid type
section [24] '.rela.debug_info': relocation 729: invalid type
section [24] '.rela.debug_info': relocation 730: invalid type
section [24] '.rela.debug_info': relocation 731: invalid type
section [24] '.rela.debug_info': relocation 732: invalid type
section [24] '.rela.debug_info': relocation 733: invalid type
section [24] '.rela.debug_info': relocation 734: invalid type
section [24] '.rela.debug_info': relocation 735: invalid type
section [24] '.rela.debug_info': relocation 736: invalid type
section [24] '.rela.debug_info': relocation 737: invalid type
section [24] '.rela.debug_info': relocation 738: invalid type
section [24] '.rela.debug_info': relocation 739: invalid type
section [24] '.rela.debug_info': relocation 740: invalid type
section [24] '.rela.debug_info': relocation 741: invalid type
section [24] '.rela.debug_info': relocation 742: invalid type
section [24] '.rela.debug_info': relocation 743: invalid type
section [24] '.rela.debug_info': relocation 744: invalid type
section [24] '.rela.debug_info': relocation 745: invalid type
section [24] '.rela.debug_info': relocation 746: invalid type
section [24] '.rela.debug_info': relocation 747: invalid type
section [24] '.rela.debug_info': relocation 748: invalid type
section [24] '.rela.debug_info': relocation 749: invalid type
section [24] '.rela.debug_info': relocation 750: invalid type
section [24] '.rela.debug_info': relocation 751: invalid type
section [24] '.rela.debug_info': relocation 752: invalid type
section [24] '.rela.debug_info': relocation 753: invalid type
section [24] '.rela.debug_info': relocation 754: invalid type
section [24] '.rela.debug_info': relocation 755: invalid type
section [24] '.rela.debug_info': relocation 756: invalid type
section [24] '.rela.debug_info': relocation 757: invalid type
section [24] '.rela.debug_info': relocation 758: invalid type
section [24] '.rela.debug_info': relocation 759: invalid type
section [24] '.rela.debug_info': relocation 760: invalid type
section [24] '.rela.debug_info': relocation 761: invalid type
section [24] '.rela.debug_info': relocation 762: invalid type
section [24] '.rela.debug_info': relocation 763: invalid type
section [24] '.rela.debug_info': relocation 764: invalid type
section [24] '.rela.debug_info': relocation 765: invalid type
section [24] '.rela.debug_info': relocation 766: invalid type
section [24] '.rela.debug_info': relocation 767: invalid type
section [24] '.rela.debug_info': relocation 768: invalid type
section [24] '.rela.debug_info': relocation 769: invalid type
section [24] '.rela.debug_info': relocation 770: invalid type
section [24] '.rela.debug_info': relocation 771: invalid type
section [24] '.rela.debug_info': relocation 772: invalid type
section [24] '.rela.debug_info': relocation 773: invalid type
section [24] '.rela.debug_info': relocation 774: invalid type
section [24] '.rela.debug_info': relocation 775: invalid type
section [24] '.rela.debug_info': relocation 776: invalid type
section [24] '.rela.debug_info': relocation 777: invalid type
section [24] '.rela.debug_info': relocation 778: invalid type
section [24] '.rela.debug_info': relocation 779: invalid type
section [24] '.rela.debug_info': relocation 780: invalid type
section [24] '.rela.debug_info': relocation 781: invalid type
section [24] '.rela.debug_info': relocation 782: invalid type
section [24] '.rela.debug_info': relocation 783: invalid type
section [24] '.rela.debug_info': relocation 784: invalid type
section [24] '.rela.debug_info': relocation 785: invalid type
section [24] '.rela.debug_info': relocation 786: invalid type
section [24] '.rela.debug_info': relocation 787: invalid type
section [24] '.rela.debug_info': relocation 788: invalid type
section [24] '.rela.debug_info': relocation 789: invalid type
section [24] '.rela.debug_info': relocation 790: invalid type
section [24] '.rela.debug_info': relocation 791: invalid type
section [24] '.rela.debug_info': relocation 792: invalid type
section [24] '.rela.debug_info': relocation 793: invalid type
section [24] '.rela.debug_info': relocation 794: invalid type
section [24] '.rela.debug_info': relocation 795: invalid type
section [24] '.rela.debug_info': relocation 796: invalid type
section [24] '.rela.debug_info': relocation 797: invalid type
section [24] '.rela.debug_info': relocation 798: invalid type
section [24] '.rela.debug_info': relocation 799: invalid type
section [24] '.rela.debug_info': relocation 800: invalid type
section [24] '.rela.debug_info': relocation 801: invalid type
section [24] '.rela.debug_info': relocation 802: invalid type
section [24] '.rela.debug_info': relocation 803: invalid type
section [24] '.rela.debug_info': relocation 804: invalid type
section [24] '.rela.debug_info': relocation 805: invalid type
section [24] '.rela.debug_info': relocation 806: invalid type
section [24] '.rela.debug_info': relocation 807: invalid type
section [24] '.rela.debug_info': relocation 808: invalid type
section [24] '.rela.debug_info': relocation 809: invalid type
section [24] '.rela.debug_info': relocation 810: invalid type
section [24] '.rela.debug_info': relocation 811: invalid type
section [24] '.rela.debug_info': relocation 812: invalid type
section [24] '.rela.debug_info': relocation 813: invalid type
section [24] '.rela.debug_info': relocation 814: invalid type
section [24] '.rela.debug_info': relocation 815: invalid type
section [24] '.rela.debug_info': relocation 816: invalid type
section [24] '.rela.debug_info': relocation 817: invalid type
section [24] '.rela.debug_info': relocation 818: invalid type
section [24] '.rela.debug_info': relocation 819: invalid type
section [24] '.rela.debug_info': relocation 820: invalid type
section [24] '.rela.debug_info': relocation 821: invalid type
section [24] '.rela.debug_info': relocation 822: invalid type
section [24] '.rela.debug_info': relocation 823: invalid type
section [24] '.rela.debug_info': relocation 824: invalid type
section [24] '.rela.debug_info': relocation 825: invalid type
section [24] '.rela.debug_info': relocation 826: invalid type
section [24] '.rela.debug_info': relocation 827: invalid type
section [24] '.rela.debug_info': relocation 828: invalid type
section [24] '.rela.debug_info': relocation 829: invalid type
section [24] '.rela.debug_info': relocation 830: invalid type
section [24] '.rela.debug_info': relocation 831: invalid type
section [24] '.rela.debug_info': relocation 832: invalid type
section [24] '.rela.debug_info': relocation 833: invalid type
section [24] '.rela.debug_info': relocation 834: invalid type
section [24] '.rela.debug_info': relocation 835: invalid type
section [24] '.rela.debug_info': relocation 836: invalid type
section [24] '.rela.debug_info': relocation 837: invalid type
section [24] '.rela.debug_info': relocation 838: invalid type
section [24] '.rela.debug_info': relocation 839: invalid type
section [24] '.rela.debug_info': relocation 840: invalid type
section [24] '.rela.debug_info': relocation 841: invalid type
section [24] '.rela.debug_info': relocation 842: invalid type
section [24] '.rela.debug_info': relocation 843: invalid type
section [24] '.rela.debug_info': relocation 844: invalid type
section [24] '.rela.debug_info': relocation 845: invalid type
section [24] '.rela.debug_info': relocation 846: invalid type
section [24] '.rela.debug_info': relocation 847: invalid type
section [24] '.rela.debug_info': relocation 848: invalid type
section [24] '.rela.debug_info': relocation 849: invalid type
section [24] '.rela.debug_info': relocation 850: invalid type
section [24] '.rela.debug_info': relocation 851: invalid type
section [24] '.rela.debug_info': relocation 852: invalid type
section [24] '.rela.debug_info': relocation 853: invalid type
section [24] '.rela.debug_info': relocation 854: invalid type
section [24] '.rela.debug_info': relocation 855: invalid type
section [24] '.rela.debug_info': relocation 856: invalid type
section [24] '.rela.debug_info': relocation 857: invalid type
section [24] '.rela.debug_info': relocation 858: invalid type
section [24] '.rela.debug_info': relocation 859: invalid type
section [24] '.rela.debug_info': relocation 860: invalid type
section [24] '.rela.debug_info': relocation 861: invalid type
section [24] '.rela.debug_info': relocation 862: invalid type
section [24] '.rela.debug_info': relocation 863: invalid type
section [24] '.rela.debug_info': relocation 864: invalid type
section [24] '.rela.debug_info': relocation 865: invalid type
section [24] '.rela.debug_info': relocation 866: invalid type
section [24] '.rela.debug_info': relocation 867: invalid type
section [24] '.rela.debug_info': relocation 868: invalid type
section [24] '.rela.debug_info': relocation 869: invalid type
section [24] '.rela.debug_info': relocation 870: invalid type
section [24] '.rela.debug_info': relocation 871: invalid type
section [24] '.rela.debug_info': relocation 872: invalid type
section [24] '.rela.debug_info': relocation 873: invalid type
section [24] '.rela.debug_info': relocation 874: invalid type
section [24] '.rela.debug_info': relocation 875: invalid type
section [24] '.rela.debug_info': relocation 876: invalid type
section [24] '.rela.debug_info': relocation 877: invalid type
section [24] '.rela.debug_info': relocation 878: invalid type
section [24] '.rela.debug_info': relocation 879: invalid type
section [24] '.rela.debug_info': relocation 880: invalid type
section [24] '.rela.debug_info': relocation 881: invalid type
section [24] '.rela.debug_info': relocation 882: invalid type
section [24] '.rela.debug_info': relocation 883: invalid type
section [24] '.rela.debug_info': relocation 884: invalid type
section [24] '.rela.debug_info': relocation 885: invalid type
section [24] '.rela.debug_info': relocation 886: invalid type
section [24] '.rela.debug_info': relocation 887: invalid type
section [24] '.rela.debug_info': relocation 888: invalid type
section [24] '.rela.debug_info': relocation 889: invalid type
section [24] '.rela.debug_info': relocation 890: invalid type
section [24] '.rela.debug_info': relocation 891: invalid type
section [24] '.rela.debug_info': relocation 892: invalid type
section [24] '.rela.debug_info': relocation 893: invalid type
section [24] '.rela.debug_info': relocation 894: invalid type
section [24] '.rela.debug_info': relocation 895: invalid type
section [24] '.rela.debug_info': relocation 896: invalid type
section [24] '.rela.debug_info': relocation 897: invalid type
section [24] '.rela.debug_info': relocation 898: invalid type
section [24] '.rela.debug_info': relocation 899: invalid type
section [24] '.rela.debug_info': relocation 900: invalid type
section [24] '.rela.debug_info': relocation 901: invalid type
section [24] '.rela.debug_info': relocation 902: invalid type
section [24] '.rela.debug_info': relocation 903: invalid type
section [24] '.rela.debug_info': relocation 904: invalid type
section [24] '.rela.debug_info': relocation 905: invalid type
section [24] '.rela.debug_info': relocation 906: invalid type
section [24] '.rela.debug_info': relocation 907: invalid type
section [24] '.rela.debug_info': relocation 908: invalid type
section [24] '.rela.debug_info': relocation 909: invalid type
section [24] '.rela.debug_info': relocation 910: invalid type
section [24] '.rela.debug_info': relocation 911: invalid type
section [24] '.rela.debug_info': relocation 912: invalid type
section [24] '.rela.debug_info': relocation 913: invalid type
section [24] '.rela.debug_info': relocation 914: invalid type
section [24] '.rela.debug_info': relocation 915: invalid type
section [24] '.rela.debug_info': relocation 916: invalid type
section [24] '.rela.debug_info': relocation 917: invalid type
section [24] '.rela.debug_info': relocation 918: invalid type
section [24] '.rela.debug_info': relocation 919: invalid type
section [24] '.rela.debug_info': relocation 920: invalid type
section [24] '.rela.debug_info': relocation 921: invalid type
section [24] '.rela.debug_info': relocation 922: invalid type
section [24] '.rela.debug_info': relocation 923: invalid type
section [24] '.rela.debug_info': relocation 924: invalid type
section [24] '.rela.debug_info': relocation 925: invalid type
section [24] '.rela.debug_info': relocation 926: invalid type
section [24] '.rela.debug_info': relocation 927: invalid type
section [24] '.rela.debug_info': relocation 928: invalid type
section [24] '.rela.debug_info': relocation 929: invalid type
section [24] '.rela.debug_info': relocation 930: invalid type
section [24] '.rela.debug_info': relocation 931: invalid type
section [24] '.rela.debug_info': relocation 932: invalid type
section [24] '.rela.debug_info': relocation 933: invalid type
section [24] '.rela.debug_info': relocation 934: invalid type
section [24] '.rela.debug_info': relocation 935: invalid type
section [24] '.rela.debug_info': relocation 936: invalid type
section [24] '.rela.debug_info': relocation 937: invalid type
section [24] '.rela.debug_info': relocation 938: invalid type
section [24] '.rela.debug_info': relocation 939: invalid type
section [24] '.rela.debug_info': relocation 940: invalid type
section [24] '.rela.debug_info': relocation 941: invalid type
section [24] '.rela.debug_info': relocation 942: invalid type
section [24] '.rela.debug_info': relocation 943: invalid type
section [24] '.rela.debug_info': relocation 944: invalid type
section [24] '.rela.debug_info': relocation 945: invalid type
section [24] '.rela.debug_info': relocation 946: invalid type
section [24] '.rela.debug_info': relocation 947: invalid type
section [24] '.rela.debug_info': relocation 948: invalid type
section [24] '.rela.debug_info': relocation 949: invalid type
section [24] '.rela.debug_info': relocation 950: invalid type
section [24] '.rela.debug_info': relocation 951: invalid type
section [24] '.rela.debug_info': relocation 952: invalid type
section [24] '.rela.debug_info': relocation 953: invalid type
section [24] '.rela.debug_info': relocation 954: invalid type
section [24] '.rela.debug_info': relocation 955: invalid type
section [24] '.rela.debug_info': relocation 956: invalid type
section [24] '.rela.debug_info': relocation 957: invalid type
section [24] '.rela.debug_info': relocation 958: invalid type
section [24] '.rela.debug_info': relocation 959: invalid type
section [24] '.rela.debug_info': relocation 960: invalid type
section [24] '.rela.debug_info': relocation 961: invalid type
section [24] '.rela.debug_info': relocation 962: invalid type
section [24] '.rela.debug_info': relocation 963: invalid type
section [24] '.rela.debug_info': relocation 964: invalid type
section [24] '.rela.debug_info': relocation 965: invalid type
section [24] '.rela.debug_info': relocation 966: invalid type
section [24] '.rela.debug_info': relocation 967: invalid type
section [24] '.rela.debug_info': relocation 968: invalid type
section [24] '.rela.debug_info': relocation 969: invalid type
section [24] '.rela.debug_info': relocation 970: invalid type
section [24] '.rela.debug_info': relocation 971: invalid type
section [24] '.rela.debug_info': relocation 972: invalid type
section [24] '.rela.debug_info': relocation 973: invalid type
section [24] '.rela.debug_info': relocation 974: invalid type
section [24] '.rela.debug_info': relocation 975: invalid type
section [24] '.rela.debug_info': relocation 976: invalid type
section [24] '.rela.debug_info': relocation 977: invalid type
section [24] '.rela.debug_info': relocation 978: invalid type
section [24] '.rela.debug_info': relocation 979: invalid type
section [24] '.rela.debug_info': relocation 980: invalid type
section [24] '.rela.debug_info': relocation 981: invalid type
section [24] '.rela.debug_info': relocation 982: invalid type
section [24] '.rela.debug_info': relocation 983: invalid type
section [24] '.rela.debug_info': relocation 984: invalid type
section [24] '.rela.debug_info': relocation 985: invalid type
section [24] '.rela.debug_info': relocation 986: invalid type
section [24] '.rela.debug_info': relocation 987: invalid type
section [24] '.rela.debug_info': relocation 988: invalid type
section [24] '.rela.debug_info': relocation 989: invalid type
section [24] '.rela.debug_info': relocation 990: invalid type
section [24] '.rela.debug_info': relocation 991: invalid type
section [24] '.rela.debug_info': relocation 992: invalid type
section [24] '.rela.debug_info': relocation 993: invalid type
section [24] '.rela.debug_info': relocation 994: invalid type
section [24] '.rela.debug_info': relocation 995: invalid type
section [24] '.rela.debug_info': relocation 996: invalid type
section [24] '.rela.debug_info': relocation 997: invalid type
section [24] '.rela.debug_info': relocation 998: invalid type
section [24] '.rela.debug_info': relocation 999: invalid type
section [24] '.rela.debug_info': relocation 1000: invalid type
section [24] '.rela.debug_info': relocation 1001: invalid type
section [24] '.rela.debug_info': relocation 1002: invalid type
section [24] '.rela.debug_info': relocation 1003: invalid type
section [24] '.rela.debug_info': relocation 1004: invalid type
section [24] '.rela.debug_info': relocation 1005: invalid type
section [24] '.rela.debug_info': relocation 1006: invalid type
section [24] '.rela.debug_info': relocation 1007: invalid type
section [24] '.rela.debug_info': relocation 1008: invalid type
section [24] '.rela.debug_info': relocation 1009: invalid type
section [24] '.rela.debug_info': relocation 1010: invalid type
section [24] '.rela.debug_info': relocation 1011: invalid type
section [24] '.rela.debug_info': relocation 1012: invalid type
section [24] '.rela.debug_info': relocation 1013: invalid type
section [24] '.rela.debug_info': relocation 1014: invalid type
section [24] '.rela.debug_info': relocation 1015: invalid type
section [24] '.rela.debug_info': relocation 1016: invalid type
section [24] '.rela.debug_info': relocation 1017: invalid type
section [24] '.rela.debug_info': relocation 1018: invalid type
section [24] '.rela.debug_info': relocation 1019: invalid type
section [24] '.rela.debug_info': relocation 1020: invalid type
section [24] '.rela.debug_info': relocation 1021: invalid type
section [24] '.rela.debug_info': relocation 1022: invalid type
section [24] '.rela.debug_info': relocation 1023: invalid type
section [24] '.rela.debug_info': relocation 1024: invalid type
section [24] '.rela.debug_info': relocation 1025: invalid type
section [24] '.rela.debug_info': relocation 1026: invalid type
section [24] '.rela.debug_info': relocation 1027: invalid type
section [24] '.rela.debug_info': relocation 1028: invalid type
section [24] '.rela.debug_info': relocation 1029: invalid type
section [24] '.rela.debug_info': relocation 1030: invalid type
section [24] '.rela.debug_info': relocation 1031: invalid type
section [24] '.rela.debug_info': relocation 1032: invalid type
section [24] '.rela.debug_info': relocation 1033: invalid type
section [24] '.rela.debug_info': relocation 1034: invalid type
section [24] '.rela.debug_info': relocation 1035: invalid type
section [24] '.rela.debug_info': relocation 1036: invalid type
section [24] '.rela.debug_info': relocation 1037: invalid type
section [24] '.rela.debug_info': relocation 1038: invalid type
section [24] '.rela.debug_info': relocation 1039: invalid type
section [24] '.rela.debug_info': relocation 1040: invalid type
section [24] '.rela.debug_info': relocation 1041: invalid type
section [24] '.rela.debug_info': relocation 1042: invalid type
section [24] '.rela.debug_info': relocation 1043: invalid type
section [24] '.rela.debug_info': relocation 1044: invalid type
section [24] '.rela.debug_info': relocation 1045: invalid type
section [24] '.rela.debug_info': relocation 1046: invalid type
section [24] '.rela.debug_info': relocation 1047: invalid type
section [24] '.rela.debug_info': relocation 1048: invalid type
section [24] '.rela.debug_info': relocation 1049: invalid type
section [24] '.rela.debug_info': relocation 1050: invalid type
section [24] '.rela.debug_info': relocation 1051: invalid type
section [24] '.rela.debug_info': relocation 1052: invalid type
section [24] '.rela.debug_info': relocation 1053: invalid type
section [24] '.rela.debug_info': relocation 1054: invalid type
section [24] '.rela.debug_info': relocation 1055: invalid type
section [24] '.rela.debug_info': relocation 1056: invalid type
section [24] '.rela.debug_info': relocation 1057: invalid type
section [24] '.rela.debug_info': relocation 1058: invalid type
section [24] '.rela.debug_info': relocation 1059: invalid type
section [24] '.rela.debug_info': relocation 1060: invalid type
section [24] '.rela.debug_info': relocation 1061: invalid type
section [24] '.rela.debug_info': relocation 1062: invalid type
section [24] '.rela.debug_info': relocation 1063: invalid type
section [24] '.rela.debug_info': relocation 1064: invalid type
section [24] '.rela.debug_info': relocation 1065: invalid type
section [24] '.rela.debug_info': relocation 1066: invalid type
section [24] '.rela.debug_info': relocation 1067: invalid type
section [24] '.rela.debug_info': relocation 1068: invalid type
section [24] '.rela.debug_info': relocation 1069: invalid type
section [24] '.rela.debug_info': relocation 1070: invalid type
section [24] '.rela.debug_info': relocation 1071: invalid type
section [24] '.rela.debug_info': relocation 1072: invalid type
section [24] '.rela.debug_info': relocation 1073: invalid type
section [24] '.rela.debug_info': relocation 1074: invalid type
section [24] '.rela.debug_info': relocation 1075: invalid type
section [24] '.rela.debug_info': relocation 1076: invalid type
section [24] '.rela.debug_info': relocation 1077: invalid type
section [24] '.rela.debug_info': relocation 1078: invalid type
section [24] '.rela.debug_info': relocation 1079: invalid type
section [24] '.rela.debug_info': relocation 1080: invalid type
section [24] '.rela.debug_info': relocation 1081: invalid type
section [24] '.rela.debug_info': relocation 1082: invalid type
section [24] '.rela.debug_info': relocation 1083: invalid type
section [24] '.rela.debug_info': relocation 1084: invalid type
section [24] '.rela.debug_info': relocation 1085: invalid type
section [24] '.rela.debug_info': relocation 1086: invalid type
section [24] '.rela.debug_info': relocation 1087: invalid type
section [24] '.rela.debug_info': relocation 1088: invalid type
section [24] '.rela.debug_info': relocation 1089: invalid type
section [24] '.rela.debug_info': relocation 1090: invalid type
section [24] '.rela.debug_info': relocation 1091: invalid type
section [24] '.rela.debug_info': relocation 1092: invalid type
section [24] '.rela.debug_info': relocation 1093: invalid type
section [24] '.rela.debug_info': relocation 1094: invalid type
section [24] '.rela.debug_info': relocation 1095: invalid type
section [24] '.rela.debug_info': relocation 1096: invalid type
section [24] '.rela.debug_info': relocation 1097: invalid type
section [24] '.rela.debug_info': relocation 1098: invalid type
section [24] '.rela.debug_info': relocation 1099: invalid type
section [24] '.rela.debug_info': relocation 1100: invalid type
section [24] '.rela.debug_info': relocation 1101: invalid type
section [24] '.rela.debug_info': relocation 1102: invalid type
section [24] '.rela.debug_info': relocation 1103: invalid type
section [24] '.rela.debug_info': relocation 1104: invalid type
section [24] '.rela.debug_info': relocation 1105: invalid type
section [24] '.rela.debug_info': relocation 1106: invalid type
section [24] '.rela.debug_info': relocation 1107: invalid type
section [24] '.rela.debug_info': relocation 1108: invalid type
section [24] '.rela.debug_info': relocation 1109: invalid type
section [24] '.rela.debug_info': relocation 1110: invalid type
section [24] '.rela.debug_info': relocation 1111: invalid type
section [24] '.rela.debug_info': relocation 1112: invalid type
section [24] '.rela.debug_info': relocation 1113: invalid type
section [24] '.rela.debug_info': relocation 1114: invalid type
section [24] '.rela.debug_info': relocation 1115: invalid type
section [24] '.rela.debug_info': relocation 1116: invalid type
section [24] '.rela.debug_info': relocation 1117: invalid type
section [24] '.rela.debug_info': relocation 1118: invalid type
section [24] '.rela.debug_info': relocation 1119: invalid type
section [24] '.rela.debug_info': relocation 1120: invalid type
section [24] '.rela.debug_info': relocation 1121: invalid type
section [24] '.rela.debug_info': relocation 1122: invalid type
section [24] '.rela.debug_info': relocation 1123: invalid type
section [24] '.rela.debug_info': relocation 1124: invalid type
section [24] '.rela.debug_info': relocation 1125: invalid type
section [24] '.rela.debug_info': relocation 1126: invalid type
section [24] '.rela.debug_info': relocation 1127: invalid type
section [24] '.rela.debug_info': relocation 1128: invalid type
section [24] '.rela.debug_info': relocation 1129: invalid type
section [24] '.rela.debug_info': relocation 1130: invalid type
section [24] '.rela.debug_info': relocation 1131: invalid type
section [24] '.rela.debug_info': relocation 1132: invalid type
section [24] '.rela.debug_info': relocation 1133: invalid type
section [24] '.rela.debug_info': relocation 1134: invalid type
section [24] '.rela.debug_info': relocation 1135: invalid type
section [24] '.rela.debug_info': relocation 1136: invalid type
section [24] '.rela.debug_info': relocation 1137: invalid type
section [24] '.rela.debug_info': relocation 1138: invalid type
section [24] '.rela.debug_info': relocation 1139: invalid type
section [24] '.rela.debug_info': relocation 1140: invalid type
section [24] '.rela.debug_info': relocation 1141: invalid type
section [24] '.rela.debug_info': relocation 1142: invalid type
section [24] '.rela.debug_info': relocation 1143: invalid type
section [24] '.rela.debug_info': relocation 1144: invalid type
section [24] '.rela.debug_info': relocation 1145: invalid type
section [24] '.rela.debug_info': relocation 1146: invalid type
section [24] '.rela.debug_info': relocation 1147: invalid type
section [24] '.rela.debug_info': relocation 1148: invalid type
section [24] '.rela.debug_info': relocation 1149: invalid type
section [24] '.rela.debug_info': relocation 1150: invalid type
section [24] '.rela.debug_info': relocation 1151: invalid type
section [24] '.rela.debug_info': relocation 1152: invalid type
section [24] '.rela.debug_info': relocation 1153: invalid type
section [24] '.rela.debug_info': relocation 1154: invalid type
section [24] '.rela.debug_info': relocation 1155: invalid type
section [24] '.rela.debug_info': relocation 1156: invalid type
section [24] '.rela.debug_info': relocation 1157: invalid type
section [24] '.rela.debug_info': relocation 1158: invalid type
section [24] '.rela.debug_info': relocation 1159: invalid type
section [24] '.rela.debug_info': relocation 1160: invalid type
section [24] '.rela.debug_info': relocation 1161: invalid type
section [24] '.rela.debug_info': relocation 1162: invalid type
section [24] '.rela.debug_info': relocation 1163: invalid type
section [24] '.rela.debug_info': relocation 1164: invalid type
section [24] '.rela.debug_info': relocation 1165: invalid type
section [24] '.rela.debug_info': relocation 1166: invalid type
section [24] '.rela.debug_info': relocation 1167: invalid type
section [24] '.rela.debug_info': relocation 1168: invalid type
section [24] '.rela.debug_info': relocation 1169: invalid type
section [24] '.rela.debug_info': relocation 1170: invalid type
section [24] '.rela.debug_info': relocation 1171: invalid type
section [24] '.rela.debug_info': relocation 1172: invalid type
section [24] '.rela.debug_info': relocation 1173: invalid type
section [24] '.rela.debug_info': relocation 1174: invalid type
section [24] '.rela.debug_info': relocation 1175: invalid type
section [24] '.rela.debug_info': relocation 1176: invalid type
section [24] '.rela.debug_info': relocation 1177: invalid type
section [24] '.rela.debug_info': relocation 1178: invalid type
section [24] '.rela.debug_info': relocation 1179: invalid type
section [24] '.rela.debug_info': relocation 1180: invalid type
section [24] '.rela.debug_info': relocation 1181: invalid type
section [24] '.rela.debug_info': relocation 1182: invalid type
section [24] '.rela.debug_info': relocation 1183: invalid type
section [24] '.rela.debug_info': relocation 1184: invalid type
section [24] '.rela.debug_info': relocation 1185: invalid type
section [24] '.rela.debug_info': relocation 1186: invalid type
section [24] '.rela.debug_info': relocation 1187: invalid type
section [24] '.rela.debug_info': relocation 1188: invalid type
section [24] '.rela.debug_info': relocation 1189: invalid type
section [24] '.rela.debug_info': relocation 1190: invalid type
section [24] '.rela.debug_info': relocation 1191: invalid type
section [24] '.rela.debug_info': relocation 1192: invalid type
section [24] '.rela.debug_info': relocation 1193: invalid type
section [24] '.rela.debug_info': relocation 1194: invalid type
section [24] '.rela.debug_info': relocation 1195: invalid type
section [24] '.rela.debug_info': relocation 1196: invalid type
section [24] '.rela.debug_info': relocation 1197: invalid type
section [24] '.rela.debug_info': relocation 1198: invalid type
section [24] '.rela.debug_info': relocation 1199: invalid type
section [24] '.rela.debug_info': relocation 1200: invalid type
section [24] '.rela.debug_info': relocation 1201: invalid type
section [24] '.rela.debug_info': relocation 1202: invalid type
section [24] '.rela.debug_info': relocation 1203: invalid type
section [24] '.rela.debug_info': relocation 1204: invalid type
section [24] '.rela.debug_info': relocation 1205: invalid type
section [24] '.rela.debug_info': relocation 1206: invalid type
section [24] '.rela.debug_info': relocation 1207: invalid type
section [24] '.rela.debug_info': relocation 1208: invalid type
section [24] '.rela.debug_info': relocation 1209: invalid type
section [24] '.rela.debug_info': relocation 1210: invalid type
section [24] '.rela.debug_info': relocation 1211: invalid type
section [24] '.rela.debug_info': relocation 1212: invalid type
section [24] '.rela.debug_info': relocation 1213: invalid type
section [24] '.rela.debug_info': relocation 1214: invalid type
section [24] '.rela.debug_info': relocation 1215: invalid type
section [24] '.rela.debug_info': relocation 1216: invalid type
section [24] '.rela.debug_info': relocation 1217: invalid type
section [24] '.rela.debug_info': relocation 1218: invalid type
section [24] '.rela.debug_info': relocation 1219: invalid type
section [24] '.rela.debug_info': relocation 1220: invalid type
section [24] '.rela.debug_info': relocation 1221: invalid type
section [24] '.rela.debug_info': relocation 1222: invalid type
section [24] '.rela.debug_info': relocation 1223: invalid type
section [24] '.rela.debug_info': relocation 1224: invalid type
section [24] '.rela.debug_info': relocation 1225: invalid type
section [24] '.rela.debug_info': relocation 1226: invalid type
section [24] '.rela.debug_info': relocation 1227: invalid type
section [24] '.rela.debug_info': relocation 1228: invalid type
section [24] '.rela.debug_info': relocation 1229: invalid type
section [24] '.rela.debug_info': relocation 1230: invalid type
section [24] '.rela.debug_info': relocation 1231: invalid type
section [24] '.rela.debug_info': relocation 1232: invalid type
section [24] '.rela.debug_info': relocation 1233: invalid type
section [24] '.rela.debug_info': relocation 1234: invalid type
section [24] '.rela.debug_info': relocation 1235: invalid type
section [24] '.rela.debug_info': relocation 1236: invalid type
section [24] '.rela.debug_info': relocation 1237: invalid type
section [24] '.rela.debug_info': relocation 1238: invalid type
section [24] '.rela.debug_info': relocation 1239: invalid type
section [24] '.rela.debug_info': relocation 1240: invalid type
section [24] '.rela.debug_info': relocation 1241: invalid type
section [24] '.rela.debug_info': relocation 1242: invalid type
section [24] '.rela.debug_info': relocation 1243: invalid type
section [24] '.rela.debug_info': relocation 1244: invalid type
section [24] '.rela.debug_info': relocation 1245: invalid type
section [24] '.rela.debug_info': relocation 1246: invalid type
section [24] '.rela.debug_info': relocation 1247: invalid type
section [24] '.rela.debug_info': relocation 1248: invalid type
section [24] '.rela.debug_info': relocation 1249: invalid type
section [24] '.rela.debug_info': relocation 1250: invalid type
section [24] '.rela.debug_info': relocation 1251: invalid type
section [24] '.rela.debug_info': relocation 1252: invalid type
section [24] '.rela.debug_info': relocation 1253: invalid type
section [24] '.rela.debug_info': relocation 1254: invalid type
section [24] '.rela.debug_info': relocation 1255: invalid type
section [24] '.rela.debug_info': relocation 1256: invalid type
section [24] '.rela.debug_info': relocation 1257: invalid type
section [24] '.rela.debug_info': relocation 1258: invalid type
section [24] '.rela.debug_info': relocation 1259: invalid type
section [24] '.rela.debug_info': relocation 1260: invalid type
section [24] '.rela.debug_info': relocation 1261: invalid type
section [24] '.rela.debug_info': relocation 1262: invalid type
section [24] '.rela.debug_info': relocation 1263: invalid type
section [24] '.rela.debug_info': relocation 1264: invalid type
section [24] '.rela.debug_info': relocation 1265: invalid type
section [24] '.rela.debug_info': relocation 1266: invalid type
section [24] '.rela.debug_info': relocation 1267: invalid type
section [24] '.rela.debug_info': relocation 1268: invalid type
section [24] '.rela.debug_info': relocation 1269: invalid type
section [24] '.rela.debug_info': relocation 1270: invalid type
section [24] '.rela.debug_info': relocation 1271: invalid type
section [24] '.rela.debug_info': relocation 1272: invalid type
section [24] '.rela.debug_info': relocation 1273: invalid type
section [24] '.rela.debug_info': relocation 1274: invalid type
section [24] '.rela.debug_info': relocation 1275: invalid type
section [24] '.rela.debug_info': relocation 1276: invalid type
section [24] '.rela.debug_info': relocation 1277: invalid type
section [24] '.rela.debug_info': relocation 1278: invalid type
section [24] '.rela.debug_info': relocation 1279: invalid type
section [24] '.rela.debug_info': relocation 1280: invalid type
section [24] '.rela.debug_info': relocation 1281: invalid type
section [24] '.rela.debug_info': relocation 1282: invalid type
section [24] '.rela.debug_info': relocation 1283: invalid type
section [24] '.rela.debug_info': relocation 1284: invalid type
section [24] '.rela.debug_info': relocation 1285: invalid type
section [24] '.rela.debug_info': relocation 1286: invalid type
section [24] '.rela.debug_info': relocation 1287: invalid type
section [24] '.rela.debug_info': relocation 1288: invalid type
section [24] '.rela.debug_info': relocation 1289: invalid type
section [24] '.rela.debug_info': relocation 1290: invalid type
section [24] '.rela.debug_info': relocation 1291: invalid type
section [24] '.rela.debug_info': relocation 1292: invalid type
section [24] '.rela.debug_info': relocation 1293: invalid type
section [24] '.rela.debug_info': relocation 1294: invalid type
section [24] '.rela.debug_info': relocation 1295: invalid type
section [24] '.rela.debug_info': relocation 1296: invalid type
section [24] '.rela.debug_info': relocation 1297: invalid type
section [24] '.rela.debug_info': relocation 1298: invalid type
section [24] '.rela.debug_info': relocation 1299: invalid type
section [24] '.rela.debug_info': relocation 1300: invalid type
section [24] '.rela.debug_info': relocation 1301: invalid type
section [24] '.rela.debug_info': relocation 1302: invalid type
section [24] '.rela.debug_info': relocation 1303: invalid type
section [24] '.rela.debug_info': relocation 1304: invalid type
section [24] '.rela.debug_info': relocation 1305: invalid type
section [24] '.rela.debug_info': relocation 1306: invalid type
section [24] '.rela.debug_info': relocation 1307: invalid type
section [24] '.rela.debug_info': relocation 1308: invalid type
section [24] '.rela.debug_info': relocation 1309: invalid type
section [24] '.rela.debug_info': relocation 1310: invalid type
section [24] '.rela.debug_info': relocation 1311: invalid type
section [24] '.rela.debug_info': relocation 1312: invalid type
section [24] '.rela.debug_info': relocation 1313: invalid type
section [24] '.rela.debug_info': relocation 1314: invalid type
section [24] '.rela.debug_info': relocation 1315: invalid type
section [24] '.rela.debug_info': relocation 1316: invalid type
section [24] '.rela.debug_info': relocation 1317: invalid type
section [24] '.rela.debug_info': relocation 1318: invalid type
section [24] '.rela.debug_info': relocation 1319: invalid type
section [24] '.rela.debug_info': relocation 1320: invalid type
section [24] '.rela.debug_info': relocation 1321: invalid type
section [24] '.rela.debug_info': relocation 1322: invalid type
section [24] '.rela.debug_info': relocation 1323: invalid type
section [24] '.rela.debug_info': relocation 1324: invalid type
section [24] '.rela.debug_info': relocation 1325: invalid type
section [24] '.rela.debug_info': relocation 1326: invalid type
section [24] '.rela.debug_info': relocation 1327: invalid type
section [24] '.rela.debug_info': relocation 1328: invalid type
section [24] '.rela.debug_info': relocation 1329: invalid type
section [24] '.rela.debug_info': relocation 1330: invalid type
section [24] '.rela.debug_info': relocation 1331: invalid type
section [24] '.rela.debug_info': relocation 1332: invalid type
section [24] '.rela.debug_info': relocation 1333: invalid type
section [24] '.rela.debug_info': relocation 1334: invalid type
section [24] '.rela.debug_info': relocation 1335: invalid type
section [24] '.rela.debug_info': relocation 1336: invalid type
section [24] '.rela.debug_info': relocation 1337: invalid type
section [24] '.rela.debug_info': relocation 1338: invalid type
section [24] '.rela.debug_info': relocation 1339: invalid type
section [24] '.rela.debug_info': relocation 1340: invalid type
section [24] '.rela.debug_info': relocation 1341: invalid type
section [24] '.rela.debug_info': relocation 1342: invalid type
section [24] '.rela.debug_info': relocation 1343: invalid type
section [24] '.rela.debug_info': relocation 1344: invalid type
section [24] '.rela.debug_info': relocation 1345: invalid type
section [24] '.rela.debug_info': relocation 1346: invalid type
section [24] '.rela.debug_info': relocation 1347: invalid type
section [24] '.rela.debug_info': relocation 1348: invalid type
section [24] '.rela.debug_info': relocation 1349: invalid type
section [24] '.rela.debug_info': relocation 1350: invalid type
section [24] '.rela.debug_info': relocation 1351: invalid type
section [24] '.rela.debug_info': relocation 1352: invalid type
section [24] '.rela.debug_info': relocation 1353: invalid type
section [24] '.rela.debug_info': relocation 1354: invalid type
section [24] '.rela.debug_info': relocation 1355: invalid type
section [24] '.rela.debug_info': relocation 1356: invalid type
section [24] '.rela.debug_info': relocation 1357: invalid type
section [24] '.rela.debug_info': relocation 1358: invalid type
section [24] '.rela.debug_info': relocation 1359: invalid type
section [24] '.rela.debug_info': relocation 1360: invalid type
section [24] '.rela.debug_info': relocation 1361: invalid type
section [24] '.rela.debug_info': relocation 1362: invalid type
section [24] '.rela.debug_info': relocation 1363: invalid type
section [24] '.rela.debug_info': relocation 1364: invalid type
section [24] '.rela.debug_info': relocation 1365: invalid type
section [24] '.rela.debug_info': relocation 1366: invalid type
section [24] '.rela.debug_info': relocation 1367: invalid type
section [24] '.rela.debug_info': relocation 1368: invalid type
section [24] '.rela.debug_info': relocation 1369: invalid type
section [24] '.rela.debug_info': relocation 1370: invalid type
section [24] '.rela.debug_info': relocation 1371: invalid type
section [24] '.rela.debug_info': relocation 1372: invalid type
section [24] '.rela.debug_info': relocation 1373: invalid type
section [24] '.rela.debug_info': relocation 1374: invalid type
section [24] '.rela.debug_info': relocation 1375: invalid type
section [24] '.rela.debug_info': relocation 1376: invalid type
section [24] '.rela.debug_info': relocation 1377: invalid type
section [27] '.rela.debug_loc': relocation 0: invalid type
section [27] '.rela.debug_loc': relocation 1: invalid type
section [27] '.rela.debug_loc': relocation 2: invalid type
section [27] '.rela.debug_loc': relocation 3: invalid type
section [27] '.rela.debug_loc': relocation 4: invalid type
section [27] '.rela.debug_loc': relocation 5: invalid type
section [27] '.rela.debug_loc': relocation 6: invalid type
section [27] '.rela.debug_loc': relocation 7: invalid type
section [27] '.rela.debug_loc': relocation 8: invalid type
section [27] '.rela.debug_loc': relocation 9: invalid type
section [27] '.rela.debug_loc': relocation 10: invalid type
section [27] '.rela.debug_loc': relocation 11: invalid type
section [27] '.rela.debug_loc': relocation 12: invalid type
section [27] '.rela.debug_loc': relocation 13: invalid type
section [27] '.rela.debug_loc': relocation 14: invalid type
section [27] '.rela.debug_loc': relocation 15: invalid type
section [27] '.rela.debug_loc': relocation 16: invalid type
section [27] '.rela.debug_loc': relocation 17: invalid type
section [27] '.rela.debug_loc': relocation 18: invalid type
section [27] '.rela.debug_loc': relocation 19: invalid type
section [27] '.rela.debug_loc': relocation 20: invalid type
section [27] '.rela.debug_loc': relocation 21: invalid type
section [27] '.rela.debug_loc': relocation 22: invalid type
section [27] '.rela.debug_loc': relocation 23: invalid type
section [27] '.rela.debug_loc': relocation 24: invalid type
section [27] '.rela.debug_loc': relocation 25: invalid type
section [27] '.rela.debug_loc': relocation 26: invalid type
section [27] '.rela.debug_loc': relocation 27: invalid type
section [27] '.rela.debug_loc': relocation 28: invalid type
section [27] '.rela.debug_loc': relocation 29: invalid type
section [27] '.rela.debug_loc': relocation 30: invalid type
section [27] '.rela.debug_loc': relocation 31: invalid type
section [27] '.rela.debug_loc': relocation 32: invalid type
section [27] '.rela.debug_loc': relocation 33: invalid type
section [27] '.rela.debug_loc': relocation 34: invalid type
section [27] '.rela.debug_loc': relocation 35: invalid type
section [27] '.rela.debug_loc': relocation 36: invalid type
section [27] '.rela.debug_loc': relocation 37: invalid type
section [27] '.rela.debug_loc': relocation 38: invalid type
section [27] '.rela.debug_loc': relocation 39: invalid type
section [27] '.rela.debug_loc': relocation 40: invalid type
section [27] '.rela.debug_loc': relocation 41: invalid type
section [27] '.rela.debug_loc': relocation 42: invalid type
section [27] '.rela.debug_loc': relocation 43: invalid type
section [27] '.rela.debug_loc': relocation 44: invalid type
section [27] '.rela.debug_loc': relocation 45: invalid type
section [27] '.rela.debug_loc': relocation 46: invalid type
section [27] '.rela.debug_loc': relocation 47: invalid type
section [27] '.rela.debug_loc': relocation 48: invalid type
section [27] '.rela.debug_loc': relocation 49: invalid type
section [27] '.rela.debug_loc': relocation 50: invalid type
section [27] '.rela.debug_loc': relocation 51: invalid type
section [27] '.rela.debug_loc': relocation 52: invalid type
section [27] '.rela.debug_loc': relocation 53: invalid type
section [27] '.rela.debug_loc': relocation 54: invalid type
section [27] '.rela.debug_loc': relocation 55: invalid type
section [27] '.rela.debug_loc': relocation 56: invalid type
section [27] '.rela.debug_loc': relocation 57: invalid type
section [27] '.rela.debug_loc': relocation 58: invalid type
section [27] '.rela.debug_loc': relocation 59: invalid type
section [27] '.rela.debug_loc': relocation 60: invalid type
section [27] '.rela.debug_loc': relocation 61: invalid type
section [27] '.rela.debug_loc': relocation 62: invalid type
section [27] '.rela.debug_loc': relocation 63: invalid type
section [27] '.rela.debug_loc': relocation 64: invalid type
section [27] '.rela.debug_loc': relocation 65: invalid type
section [27] '.rela.debug_loc': relocation 66: invalid type
section [27] '.rela.debug_loc': relocation 67: invalid type
section [27] '.rela.debug_loc': relocation 68: invalid type
section [27] '.rela.debug_loc': relocation 69: invalid type
section [27] '.rela.debug_loc': relocation 70: invalid type
section [27] '.rela.debug_loc': relocation 71: invalid type
section [27] '.rela.debug_loc': relocation 72: invalid type
section [27] '.rela.debug_loc': relocation 73: invalid type
section [27] '.rela.debug_loc': relocation 74: invalid type
section [27] '.rela.debug_loc': relocation 75: invalid type
section [27] '.rela.debug_loc': relocation 76: invalid type
section [27] '.rela.debug_loc': relocation 77: invalid type
section [27] '.rela.debug_loc': relocation 78: invalid type
section [27] '.rela.debug_loc': relocation 79: invalid type
section [27] '.rela.debug_loc': relocation 80: invalid type
section [27] '.rela.debug_loc': relocation 81: invalid type
section [27] '.rela.debug_loc': relocation 82: invalid type
section [27] '.rela.debug_loc': relocation 83: invalid type
section [27] '.rela.debug_loc': relocation 84: invalid type
section [27] '.rela.debug_loc': relocation 85: invalid type
section [27] '.rela.debug_loc': relocation 86: invalid type
section [27] '.rela.debug_loc': relocation 87: invalid type
section [27] '.rela.debug_loc': relocation 88: invalid type
section [27] '.rela.debug_loc': relocation 89: invalid type
section [27] '.rela.debug_loc': relocation 90: invalid type
section [27] '.rela.debug_loc': relocation 91: invalid type
section [27] '.rela.debug_loc': relocation 92: invalid type
section [27] '.rela.debug_loc': relocation 93: invalid type
section [27] '.rela.debug_loc': relocation 94: invalid type
section [27] '.rela.debug_loc': relocation 95: invalid type
section [27] '.rela.debug_loc': relocation 96: invalid type
section [27] '.rela.debug_loc': relocation 97: invalid type
section [27] '.rela.debug_loc': relocation 98: invalid type
section [27] '.rela.debug_loc': relocation 99: invalid type
section [27] '.rela.debug_loc': relocation 100: invalid type
section [27] '.rela.debug_loc': relocation 101: invalid type
section [27] '.rela.debug_loc': relocation 102: invalid type
section [27] '.rela.debug_loc': relocation 103: invalid type
section [27] '.rela.debug_loc': relocation 104: invalid type
section [27] '.rela.debug_loc': relocation 105: invalid type
section [27] '.rela.debug_loc': relocation 106: invalid type
section [27] '.rela.debug_loc': relocation 107: invalid type
section [27] '.rela.debug_loc': relocation 108: invalid type
section [27] '.rela.debug_loc': relocation 109: invalid type
section [27] '.rela.debug_loc': relocation 110: invalid type
section [27] '.rela.debug_loc': relocation 111: invalid type
section [27] '.rela.debug_loc': relocation 112: invalid type
section [27] '.rela.debug_loc': relocation 113: invalid type
section [27] '.rela.debug_loc': relocation 114: invalid type
section [27] '.rela.debug_loc': relocation 115: invalid type
section [27] '.rela.debug_loc': relocation 116: invalid type
section [27] '.rela.debug_loc': relocation 117: invalid type
section [27] '.rela.debug_loc': relocation 118: invalid type
section [27] '.rela.debug_loc': relocation 119: invalid type
section [27] '.rela.debug_loc': relocation 120: invalid type
section [27] '.rela.debug_loc': relocation 121: invalid type
section [27] '.rela.debug_loc': relocation 122: invalid type
section [27] '.rela.debug_loc': relocation 123: invalid type
section [27] '.rela.debug_loc': relocation 124: invalid type
section [27] '.rela.debug_loc': relocation 125: invalid type
section [27] '.rela.debug_loc': relocation 126: invalid type
section [27] '.rela.debug_loc': relocation 127: invalid type
section [27] '.rela.debug_loc': relocation 128: invalid type
section [27] '.rela.debug_loc': relocation 129: invalid type
section [27] '.rela.debug_loc': relocation 130: invalid type
section [27] '.rela.debug_loc': relocation 131: invalid type
section [27] '.rela.debug_loc': relocation 132: invalid type
section [27] '.rela.debug_loc': relocation 133: invalid type
section [27] '.rela.debug_loc': relocation 134: invalid type
section [27] '.rela.debug_loc': relocation 135: invalid type
section [27] '.rela.debug_loc': relocation 136: invalid type
section [27] '.rela.debug_loc': relocation 137: invalid type
section [27] '.rela.debug_loc': relocation 138: invalid type
section [27] '.rela.debug_loc': relocation 139: invalid type
section [27] '.rela.debug_loc': relocation 140: invalid type
section [27] '.rela.debug_loc': relocation 141: invalid type
section [27] '.rela.debug_loc': relocation 142: invalid type
section [27] '.rela.debug_loc': relocation 143: invalid type
section [27] '.rela.debug_loc': relocation 144: invalid type
section [27] '.rela.debug_loc': relocation 145: invalid type
section [27] '.rela.debug_loc': relocation 146: invalid type
section [27] '.rela.debug_loc': relocation 147: invalid type
section [27] '.rela.debug_loc': relocation 148: invalid type
section [27] '.rela.debug_loc': relocation 149: invalid type
section [27] '.rela.debug_loc': relocation 150: invalid type
section [27] '.rela.debug_loc': relocation 151: invalid type
section [27] '.rela.debug_loc': relocation 152: invalid type
section [27] '.rela.debug_loc': relocation 153: invalid type
section [27] '.rela.debug_loc': relocation 154: invalid type
section [27] '.rela.debug_loc': relocation 155: invalid type
section [27] '.rela.debug_loc': relocation 156: invalid type
section [27] '.rela.debug_loc': relocation 157: invalid type
section [27] '.rela.debug_loc': relocation 158: invalid type
section [27] '.rela.debug_loc': relocation 159: invalid type
section [27] '.rela.debug_loc': relocation 160: invalid type
section [27] '.rela.debug_loc': relocation 161: invalid type
section [27] '.rela.debug_loc': relocation 162: invalid type
section [27] '.rela.debug_loc': relocation 163: invalid type
section [27] '.rela.debug_loc': relocation 164: invalid type
section [27] '.rela.debug_loc': relocation 165: invalid type
section [27] '.rela.debug_loc': relocation 166: invalid type
section [27] '.rela.debug_loc': relocation 167: invalid type
section [27] '.rela.debug_loc': relocation 168: invalid type
section [27] '.rela.debug_loc': relocation 169: invalid type
section [27] '.rela.debug_loc': relocation 170: invalid type
section [27] '.rela.debug_loc': relocation 171: invalid type
section [27] '.rela.debug_loc': relocation 172: invalid type
section [27] '.rela.debug_loc': relocation 173: invalid type
section [27] '.rela.debug_loc': relocation 174: invalid type
section [27] '.rela.debug_loc': relocation 175: invalid type
section [27] '.rela.debug_loc': relocation 176: invalid type
section [27] '.rela.debug_loc': relocation 177: invalid type
section [27] '.rela.debug_loc': relocation 178: invalid type
section [27] '.rela.debug_loc': relocation 179: invalid type
section [27] '.rela.debug_loc': relocation 180: invalid type
section [27] '.rela.debug_loc': relocation 181: invalid type
section [27] '.rela.debug_loc': relocation 182: invalid type
section [27] '.rela.debug_loc': relocation 183: invalid type
section [27] '.rela.debug_loc': relocation 184: invalid type
section [27] '.rela.debug_loc': relocation 185: invalid type
section [27] '.rela.debug_loc': relocation 186: invalid type
section [27] '.rela.debug_loc': relocation 187: invalid type
section [27] '.rela.debug_loc': relocation 188: invalid type
section [27] '.rela.debug_loc': relocation 189: invalid type
section [27] '.rela.debug_loc': relocation 190: invalid type
section [27] '.rela.debug_loc': relocation 191: invalid type
section [27] '.rela.debug_loc': relocation 192: invalid type
section [27] '.rela.debug_loc': relocation 193: invalid type
section [27] '.rela.debug_loc': relocation 194: invalid type
section [27] '.rela.debug_loc': relocation 195: invalid type
section [27] '.rela.debug_loc': relocation 196: invalid type
section [27] '.rela.debug_loc': relocation 197: invalid type
section [27] '.rela.debug_loc': relocation 198: invalid type
section [27] '.rela.debug_loc': relocation 199: invalid type
section [27] '.rela.debug_loc': relocation 200: invalid type
section [27] '.rela.debug_loc': relocation 201: invalid type
section [27] '.rela.debug_loc': relocation 202: invalid type
section [27] '.rela.debug_loc': relocation 203: invalid type
section [27] '.rela.debug_loc': relocation 204: invalid type
section [27] '.rela.debug_loc': relocation 205: invalid type
section [27] '.rela.debug_loc': relocation 206: invalid type
section [27] '.rela.debug_loc': relocation 207: invalid type
section [27] '.rela.debug_loc': relocation 208: invalid type
section [27] '.rela.debug_loc': relocation 209: invalid type
section [27] '.rela.debug_loc': relocation 210: invalid type
section [27] '.rela.debug_loc': relocation 211: invalid type
section [27] '.rela.debug_loc': relocation 212: invalid type
section [27] '.rela.debug_loc': relocation 213: invalid type
section [27] '.rela.debug_loc': relocation 214: invalid type
section [27] '.rela.debug_loc': relocation 215: invalid type
section [27] '.rela.debug_loc': relocation 216: invalid type
section [27] '.rela.debug_loc': relocation 217: invalid type
section [27] '.rela.debug_loc': relocation 218: invalid type
section [27] '.rela.debug_loc': relocation 219: invalid type
section [27] '.rela.debug_loc': relocation 220: invalid type
section [27] '.rela.debug_loc': relocation 221: invalid type
section [27] '.rela.debug_loc': relocation 222: invalid type
section [27] '.rela.debug_loc': relocation 223: invalid type
section [27] '.rela.debug_loc': relocation 224: invalid type
section [27] '.rela.debug_loc': relocation 225: invalid type
section [27] '.rela.debug_loc': relocation 226: invalid type
section [27] '.rela.debug_loc': relocation 227: invalid type
section [27] '.rela.debug_loc': relocation 228: invalid type
section [27] '.rela.debug_loc': relocation 229: invalid type
section [27] '.rela.debug_loc': relocation 230: invalid type
section [27] '.rela.debug_loc': relocation 231: invalid type
section [27] '.rela.debug_loc': relocation 232: invalid type
section [27] '.rela.debug_loc': relocation 233: invalid type
section [27] '.rela.debug_loc': relocation 234: invalid type
section [27] '.rela.debug_loc': relocation 235: invalid type
section [27] '.rela.debug_loc': relocation 236: invalid type
section [27] '.rela.debug_loc': relocation 237: invalid type
section [27] '.rela.debug_loc': relocation 238: invalid type
section [27] '.rela.debug_loc': relocation 239: invalid type
section [27] '.rela.debug_loc': relocation 240: invalid type
section [27] '.rela.debug_loc': relocation 241: invalid type
section [27] '.rela.debug_loc': relocation 242: invalid type
section [27] '.rela.debug_loc': relocation 243: invalid type
section [27] '.rela.debug_loc': relocation 244: invalid type
section [27] '.rela.debug_loc': relocation 245: invalid type
section [27] '.rela.debug_loc': relocation 246: invalid type
section [27] '.rela.debug_loc': relocation 247: invalid type
section [27] '.rela.debug_loc': relocation 248: invalid type
section [27] '.rela.debug_loc': relocation 249: invalid type
section [27] '.rela.debug_loc': relocation 250: invalid type
section [27] '.rela.debug_loc': relocation 251: invalid type
section [27] '.rela.debug_loc': relocation 252: invalid type
section [27] '.rela.debug_loc': relocation 253: invalid type
section [27] '.rela.debug_loc': relocation 254: invalid type
section [27] '.rela.debug_loc': relocation 255: invalid type
section [27] '.rela.debug_loc': relocation 256: invalid type
section [27] '.rela.debug_loc': relocation 257: invalid type
section [27] '.rela.debug_loc': relocation 258: invalid type
section [27] '.rela.debug_loc': relocation 259: invalid type
section [27] '.rela.debug_loc': relocation 260: invalid type
section [27] '.rela.debug_loc': relocation 261: invalid type
section [27] '.rela.debug_loc': relocation 262: invalid type
section [27] '.rela.debug_loc': relocation 263: invalid type
section [27] '.rela.debug_loc': relocation 264: invalid type
section [27] '.rela.debug_loc': relocation 265: invalid type
section [27] '.rela.debug_loc': relocation 266: invalid type
section [27] '.rela.debug_loc': relocation 267: invalid type
section [27] '.rela.debug_loc': relocation 268: invalid type
section [27] '.rela.debug_loc': relocation 269: invalid type
section [27] '.rela.debug_loc': relocation 270: invalid type
section [27] '.rela.debug_loc': relocation 271: invalid type
section [27] '.rela.debug_loc': relocation 272: invalid type
section [27] '.rela.debug_loc': relocation 273: invalid type
section [27] '.rela.debug_loc': relocation 274: invalid type
section [27] '.rela.debug_loc': relocation 275: invalid type
section [27] '.rela.debug_loc': relocation 276: invalid type
section [27] '.rela.debug_loc': relocation 277: invalid type
section [27] '.rela.debug_loc': relocation 278: invalid type
section [27] '.rela.debug_loc': relocation 279: invalid type
section [27] '.rela.debug_loc': relocation 280: invalid type
section [27] '.rela.debug_loc': relocation 281: invalid type
section [27] '.rela.debug_loc': relocation 282: invalid type
section [27] '.rela.debug_loc': relocation 283: invalid type
section [27] '.rela.debug_loc': relocation 284: invalid type
section [27] '.rela.debug_loc': relocation 285: invalid type
section [27] '.rela.debug_loc': relocation 286: invalid type
section [27] '.rela.debug_loc': relocation 287: invalid type
section [27] '.rela.debug_loc': relocation 288: invalid type
section [27] '.rela.debug_loc': relocation 289: invalid type
section [27] '.rela.debug_loc': relocation 290: invalid type
section [27] '.rela.debug_loc': relocation 291: invalid type
section [27] '.rela.debug_loc': relocation 292: invalid type
section [27] '.rela.debug_loc': relocation 293: invalid type
section [27] '.rela.debug_loc': relocation 294: invalid type
section [27] '.rela.debug_loc': relocation 295: invalid type
section [27] '.rela.debug_loc': relocation 296: invalid type
section [27] '.rela.debug_loc': relocation 297: invalid type
section [27] '.rela.debug_loc': relocation 298: invalid type
section [27] '.rela.debug_loc': relocation 299: invalid type
section [27] '.rela.debug_loc': relocation 300: invalid type
section [27] '.rela.debug_loc': relocation 301: invalid type
section [27] '.rela.debug_loc': relocation 302: invalid type
section [27] '.rela.debug_loc': relocation 303: invalid type
section [27] '.rela.debug_loc': relocation 304: invalid type
section [27] '.rela.debug_loc': relocation 305: invalid type
section [27] '.rela.debug_loc': relocation 306: invalid type
section [27] '.rela.debug_loc': relocation 307: invalid type
section [27] '.rela.debug_loc': relocation 308: invalid type
section [27] '.rela.debug_loc': relocation 309: invalid type
section [27] '.rela.debug_loc': relocation 310: invalid type
section [27] '.rela.debug_loc': relocation 311: invalid type
section [27] '.rela.debug_loc': relocation 312: invalid type
section [27] '.rela.debug_loc': relocation 313: invalid type
section [27] '.rela.debug_loc': relocation 314: invalid type
section [27] '.rela.debug_loc': relocation 315: invalid type
section [27] '.rela.debug_loc': relocation 316: invalid type
section [27] '.rela.debug_loc': relocation 317: invalid type
section [27] '.rela.debug_loc': relocation 318: invalid type
section [27] '.rela.debug_loc': relocation 319: invalid type
section [27] '.rela.debug_loc': relocation 320: invalid type
section [27] '.rela.debug_loc': relocation 321: invalid type
section [27] '.rela.debug_loc': relocation 322: invalid type
section [27] '.rela.debug_loc': relocation 323: invalid type
section [27] '.rela.debug_loc': relocation 324: invalid type
section [27] '.rela.debug_loc': relocation 325: invalid type
section [27] '.rela.debug_loc': relocation 326: invalid type
section [27] '.rela.debug_loc': relocation 327: invalid type
section [27] '.rela.debug_loc': relocation 328: invalid type
section [27] '.rela.debug_loc': relocation 329: invalid type
section [27] '.rela.debug_loc': relocation 330: invalid type
section [27] '.rela.debug_loc': relocation 331: invalid type
section [27] '.rela.debug_loc': relocation 332: invalid type
section [27] '.rela.debug_loc': relocation 333: invalid type
section [27] '.rela.debug_loc': relocation 334: invalid type
section [27] '.rela.debug_loc': relocation 335: invalid type
section [27] '.rela.debug_loc': relocation 336: invalid type
section [27] '.rela.debug_loc': relocation 337: invalid type
section [27] '.rela.debug_loc': relocation 338: invalid type
section [27] '.rela.debug_loc': relocation 339: invalid type
section [27] '.rela.debug_loc': relocation 340: invalid type
section [27] '.rela.debug_loc': relocation 341: invalid type
section [27] '.rela.debug_loc': relocation 342: invalid type
section [27] '.rela.debug_loc': relocation 343: invalid type
section [27] '.rela.debug_loc': relocation 344: invalid type
section [27] '.rela.debug_loc': relocation 345: invalid type
section [27] '.rela.debug_loc': relocation 346: invalid type
section [27] '.rela.debug_loc': relocation 347: invalid type
section [27] '.rela.debug_loc': relocation 348: invalid type
section [27] '.rela.debug_loc': relocation 349: invalid type
section [27] '.rela.debug_loc': relocation 350: invalid type
section [27] '.rela.debug_loc': relocation 351: invalid type
section [27] '.rela.debug_loc': relocation 352: invalid type
section [27] '.rela.debug_loc': relocation 353: invalid type
section [27] '.rela.debug_loc': relocation 354: invalid type
section [27] '.rela.debug_loc': relocation 355: invalid type
section [27] '.rela.debug_loc': relocation 356: invalid type
section [27] '.rela.debug_loc': relocation 357: invalid type
section [27] '.rela.debug_loc': relocation 358: invalid type
section [27] '.rela.debug_loc': relocation 359: invalid type
section [27] '.rela.debug_loc': relocation 360: invalid type
section [27] '.rela.debug_loc': relocation 361: invalid type
section [27] '.rela.debug_loc': relocation 362: invalid type
section [27] '.rela.debug_loc': relocation 363: invalid type
section [27] '.rela.debug_loc': relocation 364: invalid type
section [27] '.rela.debug_loc': relocation 365: invalid type
section [27] '.rela.debug_loc': relocation 366: invalid type
section [27] '.rela.debug_loc': relocation 367: invalid type
section [27] '.rela.debug_loc': relocation 368: invalid type
section [27] '.rela.debug_loc': relocation 369: invalid type
section [27] '.rela.debug_loc': relocation 370: invalid type
section [27] '.rela.debug_loc': relocation 371: invalid type
section [27] '.rela.debug_loc': relocation 372: invalid type
section [27] '.rela.debug_loc': relocation 373: invalid type
section [27] '.rela.debug_loc': relocation 374: invalid type
section [27] '.rela.debug_loc': relocation 375: invalid type
section [27] '.rela.debug_loc': relocation 376: invalid type
section [27] '.rela.debug_loc': relocation 377: invalid type
section [27] '.rela.debug_loc': relocation 378: invalid type
section [27] '.rela.debug_loc': relocation 379: invalid type
section [27] '.rela.debug_loc': relocation 380: invalid type
section [27] '.rela.debug_loc': relocation 381: invalid type
section [27] '.rela.debug_loc': relocation 382: invalid type
section [27] '.rela.debug_loc': relocation 383: invalid type
section [27] '.rela.debug_loc': relocation 384: invalid type
section [27] '.rela.debug_loc': relocation 385: invalid type
section [27] '.rela.debug_loc': relocation 386: invalid type
section [27] '.rela.debug_loc': relocation 387: invalid type
section [27] '.rela.debug_loc': relocation 388: invalid type
section [27] '.rela.debug_loc': relocation 389: invalid type
section [27] '.rela.debug_loc': relocation 390: invalid type
section [27] '.rela.debug_loc': relocation 391: invalid type
section [27] '.rela.debug_loc': relocation 392: invalid type
section [27] '.rela.debug_loc': relocation 393: invalid type
section [27] '.rela.debug_loc': relocation 394: invalid type
section [27] '.rela.debug_loc': relocation 395: invalid type
section [27] '.rela.debug_loc': relocation 396: invalid type
section [27] '.rela.debug_loc': relocation 397: invalid type
section [27] '.rela.debug_loc': relocation 398: invalid type
section [27] '.rela.debug_loc': relocation 399: invalid type
section [27] '.rela.debug_loc': relocation 400: invalid type
section [27] '.rela.debug_loc': relocation 401: invalid type
section [27] '.rela.debug_loc': relocation 402: invalid type
section [27] '.rela.debug_loc': relocation 403: invalid type
section [27] '.rela.debug_loc': relocation 404: invalid type
section [27] '.rela.debug_loc': relocation 405: invalid type
section [27] '.rela.debug_loc': relocation 406: invalid type
section [27] '.rela.debug_loc': relocation 407: invalid type
section [27] '.rela.debug_loc': relocation 408: invalid type
section [27] '.rela.debug_loc': relocation 409: invalid type
section [27] '.rela.debug_loc': relocation 410: invalid type
section [27] '.rela.debug_loc': relocation 411: invalid type
section [27] '.rela.debug_loc': relocation 412: invalid type
section [27] '.rela.debug_loc': relocation 413: invalid type
section [27] '.rela.debug_loc': relocation 414: invalid type
section [27] '.rela.debug_loc': relocation 415: invalid type
section [27] '.rela.debug_loc': relocation 416: invalid type
section [27] '.rela.debug_loc': relocation 417: invalid type
section [27] '.rela.debug_loc': relocation 418: invalid type
section [27] '.rela.debug_loc': relocation 419: invalid type
section [27] '.rela.debug_loc': relocation 420: invalid type
section [27] '.rela.debug_loc': relocation 421: invalid type
section [27] '.rela.debug_loc': relocation 422: invalid type
section [27] '.rela.debug_loc': relocation 423: invalid type
section [27] '.rela.debug_loc': relocation 424: invalid type
section [27] '.rela.debug_loc': relocation 425: invalid type
section [27] '.rela.debug_loc': relocation 426: invalid type
section [27] '.rela.debug_loc': relocation 427: invalid type
section [27] '.rela.debug_loc': relocation 428: invalid type
section [27] '.rela.debug_loc': relocation 429: invalid type
section [27] '.rela.debug_loc': relocation 430: invalid type
section [27] '.rela.debug_loc': relocation 431: invalid type
section [27] '.rela.debug_loc': relocation 432: invalid type
section [27] '.rela.debug_loc': relocation 433: invalid type
section [27] '.rela.debug_loc': relocation 434: invalid type
section [27] '.rela.debug_loc': relocation 435: invalid type
section [27] '.rela.debug_loc': relocation 436: invalid type
section [27] '.rela.debug_loc': relocation 437: invalid type
section [27] '.rela.debug_loc': relocation 438: invalid type
section [27] '.rela.debug_loc': relocation 439: invalid type
section [27] '.rela.debug_loc': relocation 440: invalid type
section [27] '.rela.debug_loc': relocation 441: invalid type
section [27] '.rela.debug_loc': relocation 442: invalid type
section [27] '.rela.debug_loc': relocation 443: invalid type
section [27] '.rela.debug_loc': relocation 444: invalid type
section [27] '.rela.debug_loc': relocation 445: invalid type
section [27] '.rela.debug_loc': relocation 446: invalid type
section [27] '.rela.debug_loc': relocation 447: invalid type
section [27] '.rela.debug_loc': relocation 448: invalid type
section [27] '.rela.debug_loc': relocation 449: invalid type
section [27] '.rela.debug_loc': relocation 450: invalid type
section [27] '.rela.debug_loc': relocation 451: invalid type
section [27] '.rela.debug_loc': relocation 452: invalid type
section [27] '.rela.debug_loc': relocation 453: invalid type
section [27] '.rela.debug_loc': relocation 454: invalid type
section [27] '.rela.debug_loc': relocation 455: invalid type
section [27] '.rela.debug_loc': relocation 456: invalid type
section [27] '.rela.debug_loc': relocation 457: invalid type
section [27] '.rela.debug_loc': relocation 458: invalid type
section [27] '.rela.debug_loc': relocation 459: invalid type
section [27] '.rela.debug_loc': relocation 460: invalid type
section [27] '.rela.debug_loc': relocation 461: invalid type
section [27] '.rela.debug_loc': relocation 462: invalid type
section [27] '.rela.debug_loc': relocation 463: invalid type
section [27] '.rela.debug_loc': relocation 464: invalid type
section [27] '.rela.debug_loc': relocation 465: invalid type
section [27] '.rela.debug_loc': relocation 466: invalid type
section [27] '.rela.debug_loc': relocation 467: invalid type
section [27] '.rela.debug_loc': relocation 468: invalid type
section [27] '.rela.debug_loc': relocation 469: invalid type
section [27] '.rela.debug_loc': relocation 470: invalid type
section [27] '.rela.debug_loc': relocation 471: invalid type
section [27] '.rela.debug_loc': relocation 472: invalid type
section [27] '.rela.debug_loc': relocation 473: invalid type
section [27] '.rela.debug_loc': relocation 474: invalid type
section [27] '.rela.debug_loc': relocation 475: invalid type
section [27] '.rela.debug_loc': relocation 476: invalid type
section [27] '.rela.debug_loc': relocation 477: invalid type
section [27] '.rela.debug_loc': relocation 478: invalid type
section [27] '.rela.debug_loc': relocation 479: invalid type
section [27] '.rela.debug_loc': relocation 480: invalid type
section [27] '.rela.debug_loc': relocation 481: invalid type
section [27] '.rela.debug_loc': relocation 482: invalid type
section [27] '.rela.debug_loc': relocation 483: invalid type
section [27] '.rela.debug_loc': relocation 484: invalid type
section [27] '.rela.debug_loc': relocation 485: invalid type
section [27] '.rela.debug_loc': relocation 486: invalid type
section [27] '.rela.debug_loc': relocation 487: invalid type
section [27] '.rela.debug_loc': relocation 488: invalid type
section [27] '.rela.debug_loc': relocation 489: invalid type
section [27] '.rela.debug_loc': relocation 490: invalid type
section [27] '.rela.debug_loc': relocation 491: invalid type
section [27] '.rela.debug_loc': relocation 492: invalid type
section [27] '.rela.debug_loc': relocation 493: invalid type
section [27] '.rela.debug_loc': relocation 494: invalid type
section [27] '.rela.debug_loc': relocation 495: invalid type
section [27] '.rela.debug_loc': relocation 496: invalid type
section [27] '.rela.debug_loc': relocation 497: invalid type
section [27] '.rela.debug_loc': relocation 498: invalid type
section [27] '.rela.debug_loc': relocation 499: invalid type
section [27] '.rela.debug_loc': relocation 500: invalid type
section [27] '.rela.debug_loc': relocation 501: invalid type
section [27] '.rela.debug_loc': relocation 502: invalid type
section [27] '.rela.debug_loc': relocation 503: invalid type
section [27] '.rela.debug_loc': relocation 504: invalid type
section [27] '.rela.debug_loc': relocation 505: invalid type
section [27] '.rela.debug_loc': relocation 506: invalid type
section [27] '.rela.debug_loc': relocation 507: invalid type
section [27] '.rela.debug_loc': relocation 508: invalid type
section [27] '.rela.debug_loc': relocation 509: invalid type
section [27] '.rela.debug_loc': relocation 510: invalid type
section [27] '.rela.debug_loc': relocation 511: invalid type
section [27] '.rela.debug_loc': relocation 512: invalid type
section [27] '.rela.debug_loc': relocation 513: invalid type
section [27] '.rela.debug_loc': relocation 514: invalid type
section [27] '.rela.debug_loc': relocation 515: invalid type
section [27] '.rela.debug_loc': relocation 516: invalid type
section [27] '.rela.debug_loc': relocation 517: invalid type
section [27] '.rela.debug_loc': relocation 518: invalid type
section [27] '.rela.debug_loc': relocation 519: invalid type
section [27] '.rela.debug_loc': relocation 520: invalid type
section [27] '.rela.debug_loc': relocation 521: invalid type
section [27] '.rela.debug_loc': relocation 522: invalid type
section [27] '.rela.debug_loc': relocation 523: invalid type
section [27] '.rela.debug_loc': relocation 524: invalid type
section [27] '.rela.debug_loc': relocation 525: invalid type
section [27] '.rela.debug_loc': relocation 526: invalid type
section [27] '.rela.debug_loc': relocation 527: invalid type
section [27] '.rela.debug_loc': relocation 528: invalid type
section [27] '.rela.debug_loc': relocation 529: invalid type
section [27] '.rela.debug_loc': relocation 530: invalid type
section [27] '.rela.debug_loc': relocation 531: invalid type
section [27] '.rela.debug_loc': relocation 532: invalid type
section [27] '.rela.debug_loc': relocation 533: invalid type
section [27] '.rela.debug_loc': relocation 534: invalid type
section [27] '.rela.debug_loc': relocation 535: invalid type
section [27] '.rela.debug_loc': relocation 536: invalid type
section [27] '.rela.debug_loc': relocation 537: invalid type
section [27] '.rela.debug_loc': relocation 538: invalid type
section [27] '.rela.debug_loc': relocation 539: invalid type
section [27] '.rela.debug_loc': relocation 540: invalid type
section [27] '.rela.debug_loc': relocation 541: invalid type
section [27] '.rela.debug_loc': relocation 542: invalid type
section [27] '.rela.debug_loc': relocation 543: invalid type
section [27] '.rela.debug_loc': relocation 544: invalid type
section [27] '.rela.debug_loc': relocation 545: invalid type
section [27] '.rela.debug_loc': relocation 546: invalid type
section [27] '.rela.debug_loc': relocation 547: invalid type
section [27] '.rela.debug_loc': relocation 548: invalid type
section [27] '.rela.debug_loc': relocation 549: invalid type
section [27] '.rela.debug_loc': relocation 550: invalid type
section [27] '.rela.debug_loc': relocation 551: invalid type
section [27] '.rela.debug_loc': relocation 552: invalid type
section [27] '.rela.debug_loc': relocation 553: invalid type
section [27] '.rela.debug_loc': relocation 554: invalid type
section [27] '.rela.debug_loc': relocation 555: invalid type
section [27] '.rela.debug_loc': relocation 556: invalid type
section [27] '.rela.debug_loc': relocation 557: invalid type
section [27] '.rela.debug_loc': relocation 558: invalid type
section [27] '.rela.debug_loc': relocation 559: invalid type
section [27] '.rela.debug_loc': relocation 560: invalid type
section [27] '.rela.debug_loc': relocation 561: invalid type
section [27] '.rela.debug_loc': relocation 562: invalid type
section [27] '.rela.debug_loc': relocation 563: invalid type
section [27] '.rela.debug_loc': relocation 564: invalid type
section [27] '.rela.debug_loc': relocation 565: invalid type
section [27] '.rela.debug_loc': relocation 566: invalid type
section [27] '.rela.debug_loc': relocation 567: invalid type
section [27] '.rela.debug_loc': relocation 568: invalid type
section [27] '.rela.debug_loc': relocation 569: invalid type
section [27] '.rela.debug_loc': relocation 570: invalid type
section [27] '.rela.debug_loc': relocation 571: invalid type
section [27] '.rela.debug_loc': relocation 572: invalid type
section [27] '.rela.debug_loc': relocation 573: invalid type
section [27] '.rela.debug_loc': relocation 574: invalid type
section [27] '.rela.debug_loc': relocation 575: invalid type
section [27] '.rela.debug_loc': relocation 576: invalid type
section [27] '.rela.debug_loc': relocation 577: invalid type
section [27] '.rela.debug_loc': relocation 578: invalid type
section [27] '.rela.debug_loc': relocation 579: invalid type
section [27] '.rela.debug_loc': relocation 580: invalid type
section [27] '.rela.debug_loc': relocation 581: invalid type
section [27] '.rela.debug_loc': relocation 582: invalid type
section [27] '.rela.debug_loc': relocation 583: invalid type
section [27] '.rela.debug_loc': relocation 584: invalid type
section [27] '.rela.debug_loc': relocation 585: invalid type
section [27] '.rela.debug_loc': relocation 586: invalid type
section [27] '.rela.debug_loc': relocation 587: invalid type
section [27] '.rela.debug_loc': relocation 588: invalid type
section [27] '.rela.debug_loc': relocation 589: invalid type
section [27] '.rela.debug_loc': relocation 590: invalid type
section [27] '.rela.debug_loc': relocation 591: invalid type
section [27] '.rela.debug_loc': relocation 592: invalid type
section [27] '.rela.debug_loc': relocation 593: invalid type
section [27] '.rela.debug_loc': relocation 594: invalid type
section [27] '.rela.debug_loc': relocation 595: invalid type
section [27] '.rela.debug_loc': relocation 596: invalid type
section [27] '.rela.debug_loc': relocation 597: invalid type
section [27] '.rela.debug_loc': relocation 598: invalid type
section [27] '.rela.debug_loc': relocation 599: invalid type
section [27] '.rela.debug_loc': relocation 600: invalid type
section [27] '.rela.debug_loc': relocation 601: invalid type
section [27] '.rela.debug_loc': relocation 602: invalid type
section [27] '.rela.debug_loc': relocation 603: invalid type
section [27] '.rela.debug_loc': relocation 604: invalid type
section [27] '.rela.debug_loc': relocation 605: invalid type
section [27] '.rela.debug_loc': relocation 606: invalid type
section [27] '.rela.debug_loc': relocation 607: invalid type
section [27] '.rela.debug_loc': relocation 608: invalid type
section [27] '.rela.debug_loc': relocation 609: invalid type
section [27] '.rela.debug_loc': relocation 610: invalid type
section [27] '.rela.debug_loc': relocation 611: invalid type
section [27] '.rela.debug_loc': relocation 612: invalid type
section [27] '.rela.debug_loc': relocation 613: invalid type
section [27] '.rela.debug_loc': relocation 614: invalid type
section [27] '.rela.debug_loc': relocation 615: invalid type
section [27] '.rela.debug_loc': relocation 616: invalid type
section [27] '.rela.debug_loc': relocation 617: invalid type
section [27] '.rela.debug_loc': relocation 618: invalid type
section [27] '.rela.debug_loc': relocation 619: invalid type
section [27] '.rela.debug_loc': relocation 620: invalid type
section [27] '.rela.debug_loc': relocation 621: invalid type
section [27] '.rela.debug_loc': relocation 622: invalid type
section [27] '.rela.debug_loc': relocation 623: invalid type
section [27] '.rela.debug_loc': relocation 624: invalid type
section [27] '.rela.debug_loc': relocation 625: invalid type
section [27] '.rela.debug_loc': relocation 626: invalid type
section [27] '.rela.debug_loc': relocation 627: invalid type
section [27] '.rela.debug_loc': relocation 628: invalid type
section [27] '.rela.debug_loc': relocation 629: invalid type
section [27] '.rela.debug_loc': relocation 630: invalid type
section [27] '.rela.debug_loc': relocation 631: invalid type
section [27] '.rela.debug_loc': relocation 632: invalid type
section [27] '.rela.debug_loc': relocation 633: invalid type
section [27] '.rela.debug_loc': relocation 634: invalid type
section [27] '.rela.debug_loc': relocation 635: invalid type
section [27] '.rela.debug_loc': relocation 636: invalid type
section [27] '.rela.debug_loc': relocation 637: invalid type
section [27] '.rela.debug_loc': relocation 638: invalid type
section [27] '.rela.debug_loc': relocation 639: invalid type
section [27] '.rela.debug_loc': relocation 640: invalid type
section [27] '.rela.debug_loc': relocation 641: invalid type
section [27] '.rela.debug_loc': relocation 642: invalid type
section [27] '.rela.debug_loc': relocation 643: invalid type
section [27] '.rela.debug_loc': relocation 644: invalid type
section [27] '.rela.debug_loc': relocation 645: invalid type
section [27] '.rela.debug_loc': relocation 646: invalid type
section [27] '.rela.debug_loc': relocation 647: invalid type
section [27] '.rela.debug_loc': relocation 648: invalid type
section [27] '.rela.debug_loc': relocation 649: invalid type
section [27] '.rela.debug_loc': relocation 650: invalid type
section [27] '.rela.debug_loc': relocation 651: invalid type
section [27] '.rela.debug_loc': relocation 652: invalid type
section [27] '.rela.debug_loc': relocation 653: invalid type
section [27] '.rela.debug_loc': relocation 654: invalid type
section [27] '.rela.debug_loc': relocation 655: invalid type
section [27] '.rela.debug_loc': relocation 656: invalid type
section [27] '.rela.debug_loc': relocation 657: invalid type
section [27] '.rela.debug_loc': relocation 658: invalid type
section [27] '.rela.debug_loc': relocation 659: invalid type
section [27] '.rela.debug_loc': relocation 660: invalid type
section [27] '.rela.debug_loc': relocation 661: invalid type
section [27] '.rela.debug_loc': relocation 662: invalid type
section [27] '.rela.debug_loc': relocation 663: invalid type
section [27] '.rela.debug_loc': relocation 664: invalid type
section [27] '.rela.debug_loc': relocation 665: invalid type
section [27] '.rela.debug_loc': relocation 666: invalid type
section [27] '.rela.debug_loc': relocation 667: invalid type
section [27] '.rela.debug_loc': relocation 668: invalid type
section [27] '.rela.debug_loc': relocation 669: invalid type
section [27] '.rela.debug_loc': relocation 670: invalid type
section [27] '.rela.debug_loc': relocation 671: invalid type
section [27] '.rela.debug_loc': relocation 672: invalid type
section [27] '.rela.debug_loc': relocation 673: invalid type
section [27] '.rela.debug_loc': relocation 674: invalid type
section [27] '.rela.debug_loc': relocation 675: invalid type
section [27] '.rela.debug_loc': relocation 676: invalid type
section [27] '.rela.debug_loc': relocation 677: invalid type
section [27] '.rela.debug_loc': relocation 678: invalid type
section [27] '.rela.debug_loc': relocation 679: invalid type
section [27] '.rela.debug_loc': relocation 680: invalid type
section [27] '.rela.debug_loc': relocation 681: invalid type
section [27] '.rela.debug_loc': relocation 682: invalid type
section [27] '.rela.debug_loc': relocation 683: invalid type
section [27] '.rela.debug_loc': relocation 684: invalid type
section [27] '.rela.debug_loc': relocation 685: invalid type
section [27] '.rela.debug_loc': relocation 686: invalid type
section [27] '.rela.debug_loc': relocation 687: invalid type
section [27] '.rela.debug_loc': relocation 688: invalid type
section [27] '.rela.debug_loc': relocation 689: invalid type
section [27] '.rela.debug_loc': relocation 690: invalid type
section [27] '.rela.debug_loc': relocation 691: invalid type
section [27] '.rela.debug_loc': relocation 692: invalid type
section [27] '.rela.debug_loc': relocation 693: invalid type
section [27] '.rela.debug_loc': relocation 694: invalid type
section [27] '.rela.debug_loc': relocation 695: invalid type
section [27] '.rela.debug_loc': relocation 696: invalid type
section [27] '.rela.debug_loc': relocation 697: invalid type
section [27] '.rela.debug_loc': relocation 698: invalid type
section [27] '.rela.debug_loc': relocation 699: invalid type
section [27] '.rela.debug_loc': relocation 700: invalid type
section [27] '.rela.debug_loc': relocation 701: invalid type
section [27] '.rela.debug_loc': relocation 702: invalid type
section [27] '.rela.debug_loc': relocation 703: invalid type
section [27] '.rela.debug_loc': relocation 704: invalid type
section [27] '.rela.debug_loc': relocation 705: invalid type
section [27] '.rela.debug_loc': relocation 706: invalid type
section [27] '.rela.debug_loc': relocation 707: invalid type
section [27] '.rela.debug_loc': relocation 708: invalid type
section [27] '.rela.debug_loc': relocation 709: invalid type
section [27] '.rela.debug_loc': relocation 710: invalid type
section [27] '.rela.debug_loc': relocation 711: invalid type
section [27] '.rela.debug_loc': relocation 712: invalid type
section [27] '.rela.debug_loc': relocation 713: invalid type
section [27] '.rela.debug_loc': relocation 714: invalid type
section [27] '.rela.debug_loc': relocation 715: invalid type
section [27] '.rela.debug_loc': relocation 716: invalid type
section [27] '.rela.debug_loc': relocation 717: invalid type
section [27] '.rela.debug_loc': relocation 718: invalid type
section [27] '.rela.debug_loc': relocation 719: invalid type
section [27] '.rela.debug_loc': relocation 720: invalid type
section [27] '.rela.debug_loc': relocation 721: invalid type
section [27] '.rela.debug_loc': relocation 722: invalid type
section [27] '.rela.debug_loc': relocation 723: invalid type
section [27] '.rela.debug_loc': relocation 724: invalid type
section [27] '.rela.debug_loc': relocation 725: invalid type
section [27] '.rela.debug_loc': relocation 726: invalid type
section [27] '.rela.debug_loc': relocation 727: invalid type
section [27] '.rela.debug_loc': relocation 728: invalid type
section [27] '.rela.debug_loc': relocation 729: invalid type
section [27] '.rela.debug_loc': relocation 730: invalid type
section [27] '.rela.debug_loc': relocation 731: invalid type
section [27] '.rela.debug_loc': relocation 732: invalid type
section [27] '.rela.debug_loc': relocation 733: invalid type
section [27] '.rela.debug_loc': relocation 734: invalid type
section [27] '.rela.debug_loc': relocation 735: invalid type
section [27] '.rela.debug_loc': relocation 736: invalid type
section [27] '.rela.debug_loc': relocation 737: invalid type
section [27] '.rela.debug_loc': relocation 738: invalid type
section [27] '.rela.debug_loc': relocation 739: invalid type
section [27] '.rela.debug_loc': relocation 740: invalid type
section [27] '.rela.debug_loc': relocation 741: invalid type
section [27] '.rela.debug_loc': relocation 742: invalid type
section [27] '.rela.debug_loc': relocation 743: invalid type
section [27] '.rela.debug_loc': relocation 744: invalid type
section [27] '.rela.debug_loc': relocation 745: invalid type
section [27] '.rela.debug_loc': relocation 746: invalid type
section [27] '.rela.debug_loc': relocation 747: invalid type
section [27] '.rela.debug_loc': relocation 748: invalid type
section [27] '.rela.debug_loc': relocation 749: invalid type
section [27] '.rela.debug_loc': relocation 750: invalid type
section [27] '.rela.debug_loc': relocation 751: invalid type
section [27] '.rela.debug_loc': relocation 752: invalid type
section [27] '.rela.debug_loc': relocation 753: invalid type
section [27] '.rela.debug_loc': relocation 754: invalid type
section [27] '.rela.debug_loc': relocation 755: invalid type
section [27] '.rela.debug_loc': relocation 756: invalid type
section [27] '.rela.debug_loc': relocation 757: invalid type
section [27] '.rela.debug_loc': relocation 758: invalid type
section [27] '.rela.debug_loc': relocation 759: invalid type
section [27] '.rela.debug_loc': relocation 760: invalid type
section [27] '.rela.debug_loc': relocation 761: invalid type
section [27] '.rela.debug_loc': relocation 762: invalid type
section [27] '.rela.debug_loc': relocation 763: invalid type
section [27] '.rela.debug_loc': relocation 764: invalid type
section [27] '.rela.debug_loc': relocation 765: invalid type
section [27] '.rela.debug_loc': relocation 766: invalid type
section [27] '.rela.debug_loc': relocation 767: invalid type
section [27] '.rela.debug_loc': relocation 768: invalid type
section [27] '.rela.debug_loc': relocation 769: invalid type
section [27] '.rela.debug_loc': relocation 770: invalid type
section [27] '.rela.debug_loc': relocation 771: invalid type
section [27] '.rela.debug_loc': relocation 772: invalid type
section [27] '.rela.debug_loc': relocation 773: invalid type
section [27] '.rela.debug_loc': relocation 774: invalid type
section [27] '.rela.debug_loc': relocation 775: invalid type
section [27] '.rela.debug_loc': relocation 776: invalid type
section [27] '.rela.debug_loc': relocation 777: invalid type
section [27] '.rela.debug_loc': relocation 778: invalid type
section [27] '.rela.debug_loc': relocation 779: invalid type
section [27] '.rela.debug_loc': relocation 780: invalid type
section [27] '.rela.debug_loc': relocation 781: invalid type
section [27] '.rela.debug_loc': relocation 782: invalid type
section [27] '.rela.debug_loc': relocation 783: invalid type
section [27] '.rela.debug_loc': relocation 784: invalid type
section [27] '.rela.debug_loc': relocation 785: invalid type
section [27] '.rela.debug_loc': relocation 786: invalid type
section [27] '.rela.debug_loc': relocation 787: invalid type
section [27] '.rela.debug_loc': relocation 788: invalid type
section [27] '.rela.debug_loc': relocation 789: invalid type
section [27] '.rela.debug_loc': relocation 790: invalid type
section [27] '.rela.debug_loc': relocation 791: invalid type
section [27] '.rela.debug_loc': relocation 792: invalid type
section [27] '.rela.debug_loc': relocation 793: invalid type
section [27] '.rela.debug_loc': relocation 794: invalid type
section [27] '.rela.debug_loc': relocation 795: invalid type
section [27] '.rela.debug_loc': relocation 796: invalid type
section [27] '.rela.debug_loc': relocation 797: invalid type
section [27] '.rela.debug_loc': relocation 798: invalid type
section [27] '.rela.debug_loc': relocation 799: invalid type
section [27] '.rela.debug_loc': relocation 800: invalid type
section [27] '.rela.debug_loc': relocation 801: invalid type
section [27] '.rela.debug_loc': relocation 802: invalid type
section [27] '.rela.debug_loc': relocation 803: invalid type
section [27] '.rela.debug_loc': relocation 804: invalid type
section [27] '.rela.debug_loc': relocation 805: invalid type
section [27] '.rela.debug_loc': relocation 806: invalid type
section [27] '.rela.debug_loc': relocation 807: invalid type
section [27] '.rela.debug_loc': relocation 808: invalid type
section [27] '.rela.debug_loc': relocation 809: invalid type
section [27] '.rela.debug_loc': relocation 810: invalid type
section [27] '.rela.debug_loc': relocation 811: invalid type
section [27] '.rela.debug_loc': relocation 812: invalid type
section [27] '.rela.debug_loc': relocation 813: invalid type
section [27] '.rela.debug_loc': relocation 814: invalid type
section [27] '.rela.debug_loc': relocation 815: invalid type
section [27] '.rela.debug_loc': relocation 816: invalid type
section [27] '.rela.debug_loc': relocation 817: invalid type
section [27] '.rela.debug_loc': relocation 818: invalid type
section [27] '.rela.debug_loc': relocation 819: invalid type
section [27] '.rela.debug_loc': relocation 820: invalid type
section [27] '.rela.debug_loc': relocation 821: invalid type
section [27] '.rela.debug_loc': relocation 822: invalid type
section [27] '.rela.debug_loc': relocation 823: invalid type
section [27] '.rela.debug_loc': relocation 824: invalid type
section [27] '.rela.debug_loc': relocation 825: invalid type
section [27] '.rela.debug_loc': relocation 826: invalid type
section [27] '.rela.debug_loc': relocation 827: invalid type
section [27] '.rela.debug_loc': relocation 828: invalid type
section [27] '.rela.debug_loc': relocation 829: invalid type
section [27] '.rela.debug_loc': relocation 830: invalid type
section [27] '.rela.debug_loc': relocation 831: invalid type
section [27] '.rela.debug_loc': relocation 832: invalid type
section [27] '.rela.debug_loc': relocation 833: invalid type
section [27] '.rela.debug_loc': relocation 834: invalid type
section [27] '.rela.debug_loc': relocation 835: invalid type
section [27] '.rela.debug_loc': relocation 836: invalid type
section [27] '.rela.debug_loc': relocation 837: invalid type
section [27] '.rela.debug_loc': relocation 838: invalid type
section [27] '.rela.debug_loc': relocation 839: invalid type
section [27] '.rela.debug_loc': relocation 840: invalid type
section [27] '.rela.debug_loc': relocation 841: invalid type
section [27] '.rela.debug_loc': relocation 842: invalid type
section [27] '.rela.debug_loc': relocation 843: invalid type
section [27] '.rela.debug_loc': relocation 844: invalid type
section [27] '.rela.debug_loc': relocation 845: invalid type
section [27] '.rela.debug_loc': relocation 846: invalid type
section [27] '.rela.debug_loc': relocation 847: invalid type
section [27] '.rela.debug_loc': relocation 848: invalid type
section [27] '.rela.debug_loc': relocation 849: invalid type
section [27] '.rela.debug_loc': relocation 850: invalid type
section [27] '.rela.debug_loc': relocation 851: invalid type
section [27] '.rela.debug_loc': relocation 852: invalid type
section [27] '.rela.debug_loc': relocation 853: invalid type
section [27] '.rela.debug_loc': relocation 854: invalid type
section [27] '.rela.debug_loc': relocation 855: invalid type
section [27] '.rela.debug_loc': relocation 856: invalid type
section [27] '.rela.debug_loc': relocation 857: invalid type
section [27] '.rela.debug_loc': relocation 858: invalid type
section [27] '.rela.debug_loc': relocation 859: invalid type
section [27] '.rela.debug_loc': relocation 860: invalid type
section [27] '.rela.debug_loc': relocation 861: invalid type
section [27] '.rela.debug_loc': relocation 862: invalid type
section [27] '.rela.debug_loc': relocation 863: invalid type
section [27] '.rela.debug_loc': relocation 864: invalid type
section [27] '.rela.debug_loc': relocation 865: invalid type
section [27] '.rela.debug_loc': relocation 866: invalid type
section [27] '.rela.debug_loc': relocation 867: invalid type
section [27] '.rela.debug_loc': relocation 868: invalid type
section [27] '.rela.debug_loc': relocation 869: invalid type
section [27] '.rela.debug_loc': relocation 870: invalid type
section [27] '.rela.debug_loc': relocation 871: invalid type
section [27] '.rela.debug_loc': relocation 872: invalid type
section [27] '.rela.debug_loc': relocation 873: invalid type
section [27] '.rela.debug_loc': relocation 874: invalid type
section [27] '.rela.debug_loc': relocation 875: invalid type
section [27] '.rela.debug_loc': relocation 876: invalid type
section [27] '.rela.debug_loc': relocation 877: invalid type
section [27] '.rela.debug_loc': relocation 878: invalid type
section [27] '.rela.debug_loc': relocation 879: invalid type
section [27] '.rela.debug_loc': relocation 880: invalid type
section [27] '.rela.debug_loc': relocation 881: invalid type
section [27] '.rela.debug_loc': relocation 882: invalid type
section [27] '.rela.debug_loc': relocation 883: invalid type
section [27] '.rela.debug_loc': relocation 884: invalid type
section [27] '.rela.debug_loc': relocation 885: invalid type
section [27] '.rela.debug_loc': relocation 886: invalid type
section [27] '.rela.debug_loc': relocation 887: invalid type
section [27] '.rela.debug_loc': relocation 888: invalid type
section [27] '.rela.debug_loc': relocation 889: invalid type
section [27] '.rela.debug_loc': relocation 890: invalid type
section [27] '.rela.debug_loc': relocation 891: invalid type
section [27] '.rela.debug_loc': relocation 892: invalid type
section [27] '.rela.debug_loc': relocation 893: invalid type
section [27] '.rela.debug_loc': relocation 894: invalid type
section [27] '.rela.debug_loc': relocation 895: invalid type
section [27] '.rela.debug_loc': relocation 896: invalid type
section [27] '.rela.debug_loc': relocation 897: invalid type
section [27] '.rela.debug_loc': relocation 898: invalid type
section [27] '.rela.debug_loc': relocation 899: invalid type
section [27] '.rela.debug_loc': relocation 900: invalid type
section [27] '.rela.debug_loc': relocation 901: invalid type
section [27] '.rela.debug_loc': relocation 902: invalid type
section [27] '.rela.debug_loc': relocation 903: invalid type
section [27] '.rela.debug_loc': relocation 904: invalid type
section [27] '.rela.debug_loc': relocation 905: invalid type
section [27] '.rela.debug_loc': relocation 906: invalid type
section [27] '.rela.debug_loc': relocation 907: invalid type
section [27] '.rela.debug_loc': relocation 908: invalid type
section [27] '.rela.debug_loc': relocation 909: invalid type
section [27] '.rela.debug_loc': relocation 910: invalid type
section [27] '.rela.debug_loc': relocation 911: invalid type
section [27] '.rela.debug_loc': relocation 912: invalid type
section [27] '.rela.debug_loc': relocation 913: invalid type
section [27] '.rela.debug_loc': relocation 914: invalid type
section [27] '.rela.debug_loc': relocation 915: invalid type
section [27] '.rela.debug_loc': relocation 916: invalid type
section [27] '.rela.debug_loc': relocation 917: invalid type
section [27] '.rela.debug_loc': relocation 918: invalid type
section [27] '.rela.debug_loc': relocation 919: invalid type
section [27] '.rela.debug_loc': relocation 920: invalid type
section [27] '.rela.debug_loc': relocation 921: invalid type
section [27] '.rela.debug_loc': relocation 922: invalid type
section [27] '.rela.debug_loc': relocation 923: invalid type
section [27] '.rela.debug_loc': relocation 924: invalid type
section [27] '.rela.debug_loc': relocation 925: invalid type
section [27] '.rela.debug_loc': relocation 926: invalid type
section [27] '.rela.debug_loc': relocation 927: invalid type
section [27] '.rela.debug_loc': relocation 928: invalid type
section [27] '.rela.debug_loc': relocation 929: invalid type
section [27] '.rela.debug_loc': relocation 930: invalid type
section [27] '.rela.debug_loc': relocation 931: invalid type
section [27] '.rela.debug_loc': relocation 932: invalid type
section [27] '.rela.debug_loc': relocation 933: invalid type
section [27] '.rela.debug_loc': relocation 934: invalid type
section [27] '.rela.debug_loc': relocation 935: invalid type
section [27] '.rela.debug_loc': relocation 936: invalid type
section [27] '.rela.debug_loc': relocation 937: invalid type
section [27] '.rela.debug_loc': relocation 938: invalid type
section [27] '.rela.debug_loc': relocation 939: invalid type
section [27] '.rela.debug_loc': relocation 940: invalid type
section [27] '.rela.debug_loc': relocation 941: invalid type
section [27] '.rela.debug_loc': relocation 942: invalid type
section [27] '.rela.debug_loc': relocation 943: invalid type
section [27] '.rela.debug_loc': relocation 944: invalid type
section [27] '.rela.debug_loc': relocation 945: invalid type
section [27] '.rela.debug_loc': relocation 946: invalid type
section [27] '.rela.debug_loc': relocation 947: invalid type
section [27] '.rela.debug_loc': relocation 948: invalid type
section [27] '.rela.debug_loc': relocation 949: invalid type
section [27] '.rela.debug_loc': relocation 950: invalid type
section [27] '.rela.debug_loc': relocation 951: invalid type
section [27] '.rela.debug_loc': relocation 952: invalid type
section [27] '.rela.debug_loc': relocation 953: invalid type
section [27] '.rela.debug_loc': relocation 954: invalid type
section [27] '.rela.debug_loc': relocation 955: invalid type
section [27] '.rela.debug_loc': relocation 956: invalid type
section [27] '.rela.debug_loc': relocation 957: invalid type
section [27] '.rela.debug_loc': relocation 958: invalid type
section [27] '.rela.debug_loc': relocation 959: invalid type
section [27] '.rela.debug_loc': relocation 960: invalid type
section [27] '.rela.debug_loc': relocation 961: invalid type
section [27] '.rela.debug_loc': relocation 962: invalid type
section [27] '.rela.debug_loc': relocation 963: invalid type
section [27] '.rela.debug_loc': relocation 964: invalid type
section [27] '.rela.debug_loc': relocation 965: invalid type
section [27] '.rela.debug_loc': relocation 966: invalid type
section [27] '.rela.debug_loc': relocation 967: invalid type
section [27] '.rela.debug_loc': relocation 968: invalid type
section [27] '.rela.debug_loc': relocation 969: invalid type
section [27] '.rela.debug_loc': relocation 970: invalid type
section [27] '.rela.debug_loc': relocation 971: invalid type
section [27] '.rela.debug_loc': relocation 972: invalid type
section [27] '.rela.debug_loc': relocation 973: invalid type
section [27] '.rela.debug_loc': relocation 974: invalid type
section [27] '.rela.debug_loc': relocation 975: invalid type
section [27] '.rela.debug_loc': relocation 976: invalid type
section [27] '.rela.debug_loc': relocation 977: invalid type
section [27] '.rela.debug_loc': relocation 978: invalid type
section [27] '.rela.debug_loc': relocation 979: invalid type
section [27] '.rela.debug_loc': relocation 980: invalid type
section [27] '.rela.debug_loc': relocation 981: invalid type
section [27] '.rela.debug_loc': relocation 982: invalid type
section [27] '.rela.debug_loc': relocation 983: invalid type
section [27] '.rela.debug_loc': relocation 984: invalid type
section [27] '.rela.debug_loc': relocation 985: invalid type
section [27] '.rela.debug_loc': relocation 986: invalid type
section [27] '.rela.debug_loc': relocation 987: invalid type
section [27] '.rela.debug_loc': relocation 988: invalid type
section [27] '.rela.debug_loc': relocation 989: invalid type
section [27] '.rela.debug_loc': relocation 990: invalid type
section [27] '.rela.debug_loc': relocation 991: invalid type
section [27] '.rela.debug_loc': relocation 992: invalid type
section [27] '.rela.debug_loc': relocation 993: invalid type
section [27] '.rela.debug_loc': relocation 994: invalid type
section [27] '.rela.debug_loc': relocation 995: invalid type
section [27] '.rela.debug_loc': relocation 996: invalid type
section [27] '.rela.debug_loc': relocation 997: invalid type
section [27] '.rela.debug_loc': relocation 998: invalid type
section [27] '.rela.debug_loc': relocation 999: invalid type
section [27] '.rela.debug_loc': relocation 1000: invalid type
section [27] '.rela.debug_loc': relocation 1001: invalid type
section [27] '.rela.debug_loc': relocation 1002: invalid type
section [27] '.rela.debug_loc': relocation 1003: invalid type
section [27] '.rela.debug_loc': relocation 1004: invalid type
section [27] '.rela.debug_loc': relocation 1005: invalid type
section [27] '.rela.debug_loc': relocation 1006: invalid type
section [27] '.rela.debug_loc': relocation 1007: invalid type
section [27] '.rela.debug_loc': relocation 1008: invalid type
section [27] '.rela.debug_loc': relocation 1009: invalid type
section [27] '.rela.debug_loc': relocation 1010: invalid type
section [27] '.rela.debug_loc': relocation 1011: invalid type
section [27] '.rela.debug_loc': relocation 1012: invalid type
section [27] '.rela.debug_loc': relocation 1013: invalid type
section [27] '.rela.debug_loc': relocation 1014: invalid type
section [27] '.rela.debug_loc': relocation 1015: invalid type
section [27] '.rela.debug_loc': relocation 1016: invalid type
section [27] '.rela.debug_loc': relocation 1017: invalid type
section [27] '.rela.debug_loc': relocation 1018: invalid type
section [27] '.rela.debug_loc': relocation 1019: invalid type
section [27] '.rela.debug_loc': relocation 1020: invalid type
section [27] '.rela.debug_loc': relocation 1021: invalid type
section [29] '.rela.debug_aranges': relocation 0: invalid type
section [29] '.rela.debug_aranges': relocation 1: invalid type
section [29] '.rela.debug_aranges': relocation 2: invalid type
section [29] '.rela.debug_aranges': relocation 3: invalid type
section [29] '.rela.debug_aranges': relocation 4: invalid type
section [29] '.rela.debug_aranges': relocation 5: invalid type
section [29] '.rela.debug_aranges': relocation 6: invalid type
section [29] '.rela.debug_aranges': relocation 7: invalid type
section [29] '.rela.debug_aranges': relocation 8: invalid type
section [29] '.rela.debug_aranges': relocation 9: invalid type
section [29] '.rela.debug_aranges': relocation 10: invalid type
section [29] '.rela.debug_aranges': relocation 11: invalid type
section [29] '.rela.debug_aranges': relocation 12: invalid type
section [31] '.rela.debug_ranges': relocation 0: invalid type
section [31] '.rela.debug_ranges': relocation 1: invalid type
section [31] '.rela.debug_ranges': relocation 2: invalid type
section [31] '.rela.debug_ranges': relocation 3: invalid type
section [31] '.rela.debug_ranges': relocation 4: invalid type
section [31] '.rela.debug_ranges': relocation 5: invalid type
section [31] '.rela.debug_ranges': relocation 6: invalid type
section [31] '.rela.debug_ranges': relocation 7: invalid type
section [31] '.rela.debug_ranges': relocation 8: invalid type
section [31] '.rela.debug_ranges': relocation 9: invalid type
section [31] '.rela.debug_ranges': relocation 10: invalid type
section [31] '.rela.debug_ranges': relocation 11: invalid type
section [31] '.rela.debug_ranges': relocation 12: invalid type
section [31] '.rela.debug_ranges': relocation 13: invalid type
section [31] '.rela.debug_ranges': relocation 14: invalid type
section [31] '.rela.debug_ranges': relocation 15: invalid type
section [31] '.rela.debug_ranges': relocation 16: invalid type
section [31] '.rela.debug_ranges': relocation 17: invalid type
section [31] '.rela.debug_ranges': relocation 18: invalid type
section [31] '.rela.debug_ranges': relocation 19: invalid type
section [31] '.rela.debug_ranges': relocation 20: invalid type
section [31] '.rela.debug_ranges': relocation 21: invalid type
section [31] '.rela.debug_ranges': relocation 22: invalid type
section [31] '.rela.debug_ranges': relocation 23: invalid type
section [31] '.rela.debug_ranges': relocation 24: invalid type
section [31] '.rela.debug_ranges': relocation 25: invalid type
section [31] '.rela.debug_ranges': relocation 26: invalid type
section [31] '.rela.debug_ranges': relocation 27: invalid type
section [31] '.rela.debug_ranges': relocation 28: invalid type
section [31] '.rela.debug_ranges': relocation 29: invalid type
section [31] '.rela.debug_ranges': relocation 30: invalid type
section [31] '.rela.debug_ranges': relocation 31: invalid type
section [31] '.rela.debug_ranges': relocation 32: invalid type
section [31] '.rela.debug_ranges': relocation 33: invalid type
section [31] '.rela.debug_ranges': relocation 34: invalid type
section [31] '.rela.debug_ranges': relocation 35: invalid type
section [31] '.rela.debug_ranges': relocation 36: invalid type
section [31] '.rela.debug_ranges': relocation 37: invalid type
section [31] '.rela.debug_ranges': relocation 38: invalid type
section [31] '.rela.debug_ranges': relocation 39: invalid type
section [31] '.rela.debug_ranges': relocation 40: invalid type
section [31] '.rela.debug_ranges': relocation 41: invalid type
section [31] '.rela.debug_ranges': relocation 42: invalid type
section [31] '.rela.debug_ranges': relocation 43: invalid type
section [31] '.rela.debug_ranges': relocation 44: invalid type
section [31] '.rela.debug_ranges': relocation 45: invalid type
section [31] '.rela.debug_ranges': relocation 46: invalid type
section [31] '.rela.debug_ranges': relocation 47: invalid type
section [31] '.rela.debug_ranges': relocation 48: invalid type
section [31] '.rela.debug_ranges': relocation 49: invalid type
section [31] '.rela.debug_ranges': relocation 50: invalid type
section [31] '.rela.debug_ranges': relocation 51: invalid type
section [31] '.rela.debug_ranges': relocation 52: invalid type
section [31] '.rela.debug_ranges': relocation 53: invalid type
section [31] '.rela.debug_ranges': relocation 54: invalid type
section [31] '.rela.debug_ranges': relocation 55: invalid type
section [31] '.rela.debug_ranges': relocation 56: invalid type
section [31] '.rela.debug_ranges': relocation 57: invalid type
section [31] '.rela.debug_ranges': relocation 58: invalid type
section [31] '.rela.debug_ranges': relocation 59: invalid type
section [31] '.rela.debug_ranges': relocation 60: invalid type
section [31] '.rela.debug_ranges': relocation 61: invalid type
section [31] '.rela.debug_ranges': relocation 62: invalid type
section [31] '.rela.debug_ranges': relocation 63: invalid type
section [31] '.rela.debug_ranges': relocation 64: invalid type
section [31] '.rela.debug_ranges': relocation 65: invalid type
section [31] '.rela.debug_ranges': relocation 66: invalid type
section [31] '.rela.debug_ranges': relocation 67: invalid type
section [31] '.rela.debug_ranges': relocation 68: invalid type
section [31] '.rela.debug_ranges': relocation 69: invalid type
section [31] '.rela.debug_ranges': relocation 70: invalid type
section [31] '.rela.debug_ranges': relocation 71: invalid type
section [31] '.rela.debug_ranges': relocation 72: invalid type
section [31] '.rela.debug_ranges': relocation 73: invalid type
section [31] '.rela.debug_ranges': relocation 74: invalid type
section [31] '.rela.debug_ranges': relocation 75: invalid type
section [31] '.rela.debug_ranges': relocation 76: invalid type
section [31] '.rela.debug_ranges': relocation 77: invalid type
section [31] '.rela.debug_ranges': relocation 78: invalid type
section [31] '.rela.debug_ranges': relocation 79: invalid type
section [31] '.rela.debug_ranges': relocation 80: invalid type
section [31] '.rela.debug_ranges': relocation 81: invalid type
section [31] '.rela.debug_ranges': relocation 82: invalid type
section [31] '.rela.debug_ranges': relocation 83: invalid type
section [31] '.rela.debug_ranges': relocation 84: invalid type
section [31] '.rela.debug_ranges': relocation 85: invalid type
section [31] '.rela.debug_ranges': relocation 86: invalid type
section [31] '.rela.debug_ranges': relocation 87: invalid type
section [31] '.rela.debug_ranges': relocation 88: invalid type
section [31] '.rela.debug_ranges': relocation 89: invalid type
section [31] '.rela.debug_ranges': relocation 90: invalid type
section [31] '.rela.debug_ranges': relocation 91: invalid type
section [31] '.rela.debug_ranges': relocation 92: invalid type
section [31] '.rela.debug_ranges': relocation 93: invalid type
section [31] '.rela.debug_ranges': relocation 94: invalid type
section [31] '.rela.debug_ranges': relocation 95: invalid type
section [31] '.rela.debug_ranges': relocation 96: invalid type
section [31] '.rela.debug_ranges': relocation 97: invalid type
section [31] '.rela.debug_ranges': relocation 98: invalid type
section [31] '.rela.debug_ranges': relocation 99: invalid type
section [31] '.rela.debug_ranges': relocation 100: invalid type
section [31] '.rela.debug_ranges': relocation 101: invalid type
section [31] '.rela.debug_ranges': relocation 102: invalid type
section [31] '.rela.debug_ranges': relocation 103: invalid type
section [31] '.rela.debug_ranges': relocation 104: invalid type
section [31] '.rela.debug_ranges': relocation 105: invalid type
section [31] '.rela.debug_ranges': relocation 106: invalid type
section [31] '.rela.debug_ranges': relocation 107: invalid type
section [31] '.rela.debug_ranges': relocation 108: invalid type
section [31] '.rela.debug_ranges': relocation 109: invalid type
section [31] '.rela.debug_ranges': relocation 110: invalid type
section [31] '.rela.debug_ranges': relocation 111: invalid type
section [31] '.rela.debug_ranges': relocation 112: invalid type
section [31] '.rela.debug_ranges': relocation 113: invalid type
section [31] '.rela.debug_ranges': relocation 114: invalid type
section [31] '.rela.debug_ranges': relocation 115: invalid type
section [31] '.rela.debug_ranges': relocation 116: invalid type
section [31] '.rela.debug_ranges': relocation 117: invalid type
section [31] '.rela.debug_ranges': relocation 118: invalid type
section [31] '.rela.debug_ranges': relocation 119: invalid type
section [31] '.rela.debug_ranges': relocation 120: invalid type
section [31] '.rela.debug_ranges': relocation 121: invalid type
section [31] '.rela.debug_ranges': relocation 122: invalid type
section [31] '.rela.debug_ranges': relocation 123: invalid type
section [31] '.rela.debug_ranges': relocation 124: invalid type
section [31] '.rela.debug_ranges': relocation 125: invalid type
section [31] '.rela.debug_ranges': relocation 126: invalid type
section [31] '.rela.debug_ranges': relocation 127: invalid type
section [31] '.rela.debug_ranges': relocation 128: invalid type
section [31] '.rela.debug_ranges': relocation 129: invalid type
section [31] '.rela.debug_ranges': relocation 130: invalid type
section [31] '.rela.debug_ranges': relocation 131: invalid type
section [31] '.rela.debug_ranges': relocation 132: invalid type
section [31] '.rela.debug_ranges': relocation 133: invalid type
section [31] '.rela.debug_ranges': relocation 134: invalid type
section [31] '.rela.debug_ranges': relocation 135: invalid type
section [31] '.rela.debug_ranges': relocation 136: invalid type
section [31] '.rela.debug_ranges': relocation 137: invalid type
section [31] '.rela.debug_ranges': relocation 138: invalid type
section [31] '.rela.debug_ranges': relocation 139: invalid type
section [31] '.rela.debug_ranges': relocation 140: invalid type
section [31] '.rela.debug_ranges': relocation 141: invalid type
section [31] '.rela.debug_ranges': relocation 142: invalid type
section [31] '.rela.debug_ranges': relocation 143: invalid type
section [31] '.rela.debug_ranges': relocation 144: invalid type
section [31] '.rela.debug_ranges': relocation 145: invalid type
section [31] '.rela.debug_ranges': relocation 146: invalid type
section [31] '.rela.debug_ranges': relocation 147: invalid type
section [31] '.rela.debug_ranges': relocation 148: invalid type
section [31] '.rela.debug_ranges': relocation 149: invalid type
section [31] '.rela.debug_ranges': relocation 150: invalid type
section [31] '.rela.debug_ranges': relocation 151: invalid type
section [31] '.rela.debug_ranges': relocation 152: invalid type
section [31] '.rela.debug_ranges': relocation 153: invalid type
section [31] '.rela.debug_ranges': relocation 154: invalid type
section [31] '.rela.debug_ranges': relocation 155: invalid type
section [31] '.rela.debug_ranges': relocation 156: invalid type
section [31] '.rela.debug_ranges': relocation 157: invalid type
section [31] '.rela.debug_ranges': relocation 158: invalid type
section [31] '.rela.debug_ranges': relocation 159: invalid type
section [31] '.rela.debug_ranges': relocation 160: invalid type
section [31] '.rela.debug_ranges': relocation 161: invalid type
section [31] '.rela.debug_ranges': relocation 162: invalid type
section [31] '.rela.debug_ranges': relocation 163: invalid type
section [31] '.rela.debug_ranges': relocation 164: invalid type
section [31] '.rela.debug_ranges': relocation 165: invalid type
section [31] '.rela.debug_ranges': relocation 166: invalid type
section [31] '.rela.debug_ranges': relocation 167: invalid type
section [31] '.rela.debug_ranges': relocation 168: invalid type
section [31] '.rela.debug_ranges': relocation 169: invalid type
section [31] '.rela.debug_ranges': relocation 170: invalid type
section [31] '.rela.debug_ranges': relocation 171: invalid type
section [31] '.rela.debug_ranges': relocation 172: invalid type
section [31] '.rela.debug_ranges': relocation 173: invalid type
section [31] '.rela.debug_ranges': relocation 174: invalid type
section [31] '.rela.debug_ranges': relocation 175: invalid type
section [31] '.rela.debug_ranges': relocation 176: invalid type
section [31] '.rela.debug_ranges': relocation 177: invalid type
section [31] '.rela.debug_ranges': relocation 178: invalid type
section [31] '.rela.debug_ranges': relocation 179: invalid type
section [33] '.rela.debug_line': relocation 0: invalid type
section [33] '.rela.debug_line': relocation 1: invalid type
section [33] '.rela.debug_line': relocation 2: invalid type
section [33] '.rela.debug_line': relocation 3: invalid type
section [33] '.rela.debug_line': relocation 4: invalid type
section [33] '.rela.debug_line': relocation 5: invalid type
section [33] '.rela.debug_line': relocation 6: invalid type
section [33] '.rela.debug_line': relocation 7: invalid type
section [33] '.rela.debug_line': relocation 8: invalid type
section [33] '.rela.debug_line': relocation 9: invalid type
section [33] '.rela.debug_line': relocation 10: invalid type
section [33] '.rela.debug_line': relocation 11: invalid type
section [33] '.rela.debug_line': relocation 12: invalid type
section [33] '.rela.debug_line': relocation 13: invalid type
section [33] '.rela.debug_line': relocation 14: invalid type
section [33] '.rela.debug_line': relocation 15: invalid type
section [33] '.rela.debug_line': relocation 16: invalid type
section [33] '.rela.debug_line': relocation 17: invalid type
section [33] '.rela.debug_line': relocation 18: invalid type
section [33] '.rela.debug_line': relocation 19: invalid type
section [33] '.rela.debug_line': relocation 20: invalid type
section [33] '.rela.debug_line': relocation 21: invalid type
section [33] '.rela.debug_line': relocation 22: invalid type
section [33] '.rela.debug_line': relocation 23: invalid type
section [33] '.rela.debug_line': relocation 24: invalid type
section [33] '.rela.debug_line': relocation 25: invalid type
section [33] '.rela.debug_line': relocation 26: invalid type
section [33] '.rela.debug_line': relocation 27: invalid type
section [33] '.rela.debug_line': relocation 28: invalid type
section [33] '.rela.debug_line': relocation 29: invalid type
section [33] '.rela.debug_line': relocation 30: invalid type
section [33] '.rela.debug_line': relocation 31: invalid type
section [33] '.rela.debug_line': relocation 32: invalid type
section [33] '.rela.debug_line': relocation 33: invalid type
section [33] '.rela.debug_line': relocation 34: invalid type
section [33] '.rela.debug_line': relocation 35: invalid type
section [33] '.rela.debug_line': relocation 36: invalid type
section [33] '.rela.debug_line': relocation 37: invalid type
section [33] '.rela.debug_line': relocation 38: invalid type
section [33] '.rela.debug_line': relocation 39: invalid type
section [33] '.rela.debug_line': relocation 40: invalid type
section [33] '.rela.debug_line': relocation 41: invalid type
section [33] '.rela.debug_line': relocation 42: invalid type
section [33] '.rela.debug_line': relocation 43: invalid type
section [33] '.rela.debug_line': relocation 44: invalid type
section [33] '.rela.debug_line': relocation 45: invalid type
section [33] '.rela.debug_line': relocation 46: invalid type
section [33] '.rela.debug_line': relocation 47: invalid type
section [33] '.rela.debug_line': relocation 48: invalid type
section [33] '.rela.debug_line': relocation 49: invalid type
section [33] '.rela.debug_line': relocation 50: invalid type
section [33] '.rela.debug_line': relocation 51: invalid type
section [33] '.rela.debug_line': relocation 52: invalid type
section [33] '.rela.debug_line': relocation 53: invalid type
section [33] '.rela.debug_line': relocation 54: invalid type
section [33] '.rela.debug_line': relocation 55: invalid type
section [33] '.rela.debug_line': relocation 56: invalid type
section [33] '.rela.debug_line': relocation 57: invalid type
section [33] '.rela.debug_line': relocation 58: invalid type
section [33] '.rela.debug_line': relocation 59: invalid type
section [33] '.rela.debug_line': relocation 60: invalid type
section [33] '.rela.debug_line': relocation 61: invalid type
section [33] '.rela.debug_line': relocation 62: invalid type
section [33] '.rela.debug_line': relocation 63: invalid type
section [33] '.rela.debug_line': relocation 64: invalid type
section [33] '.rela.debug_line': relocation 65: invalid type
section [33] '.rela.debug_line': relocation 66: invalid type
section [33] '.rela.debug_line': relocation 67: invalid type
section [33] '.rela.debug_line': relocation 68: invalid type
section [33] '.rela.debug_line': relocation 69: invalid type
section [33] '.rela.debug_line': relocation 70: invalid type
section [33] '.rela.debug_line': relocation 71: invalid type
section [33] '.rela.debug_line': relocation 72: invalid type
section [33] '.rela.debug_line': relocation 73: invalid type
section [33] '.rela.debug_line': relocation 74: invalid type
section [33] '.rela.debug_line': relocation 75: invalid type
section [33] '.rela.debug_line': relocation 76: invalid type
section [33] '.rela.debug_line': relocation 77: invalid type
section [33] '.rela.debug_line': relocation 78: invalid type
section [33] '.rela.debug_line': relocation 79: invalid type
section [33] '.rela.debug_line': relocation 80: invalid type
section [33] '.rela.debug_line': relocation 81: invalid type
section [33] '.rela.debug_line': relocation 82: invalid type
section [33] '.rela.debug_line': relocation 83: invalid type
section [33] '.rela.debug_line': relocation 84: invalid type
section [33] '.rela.debug_line': relocation 85: invalid type
section [33] '.rela.debug_line': relocation 86: invalid type
section [33] '.rela.debug_line': relocation 87: invalid type
section [33] '.rela.debug_line': relocation 88: invalid type
section [33] '.rela.debug_line': relocation 89: invalid type
section [33] '.rela.debug_line': relocation 90: invalid type
section [33] '.rela.debug_line': relocation 91: invalid type
section [33] '.rela.debug_line': relocation 92: invalid type
section [33] '.rela.debug_line': relocation 93: invalid type
section [33] '.rela.debug_line': relocation 94: invalid type
section [33] '.rela.debug_line': relocation 95: invalid type
section [33] '.rela.debug_line': relocation 96: invalid type
section [33] '.rela.debug_line': relocation 97: invalid type
section [33] '.rela.debug_line': relocation 98: invalid type
section [33] '.rela.debug_line': relocation 99: invalid type
section [33] '.rela.debug_line': relocation 100: invalid type
section [33] '.rela.debug_line': relocation 101: invalid type
section [33] '.rela.debug_line': relocation 102: invalid type
section [33] '.rela.debug_line': relocation 103: invalid type
section [33] '.rela.debug_line': relocation 104: invalid type
section [33] '.rela.debug_line': relocation 105: invalid type
section [33] '.rela.debug_line': relocation 106: invalid type
section [33] '.rela.debug_line': relocation 107: invalid type
section [33] '.rela.debug_line': relocation 108: invalid type
section [33] '.rela.debug_line': relocation 109: invalid type
section [33] '.rela.debug_line': relocation 110: invalid type
section [33] '.rela.debug_line': relocation 111: invalid type
section [33] '.rela.debug_line': relocation 112: invalid type
section [33] '.rela.debug_line': relocation 113: invalid type
section [33] '.rela.debug_line': relocation 114: invalid type
section [33] '.rela.debug_line': relocation 115: invalid type
section [33] '.rela.debug_line': relocation 116: invalid type
section [33] '.rela.debug_line': relocation 117: invalid type
section [33] '.rela.debug_line': relocation 118: invalid type
section [33] '.rela.debug_line': relocation 119: invalid type
section [33] '.rela.debug_line': relocation 120: invalid type
section [33] '.rela.debug_line': relocation 121: invalid type
section [33] '.rela.debug_line': relocation 122: invalid type
section [33] '.rela.debug_line': relocation 123: invalid type
section [33] '.rela.debug_line': relocation 124: invalid type
section [33] '.rela.debug_line': relocation 125: invalid type
section [33] '.rela.debug_line': relocation 126: invalid type
section [33] '.rela.debug_line': relocation 127: invalid type
section [33] '.rela.debug_line': relocation 128: invalid type
section [33] '.rela.debug_line': relocation 129: invalid type
section [33] '.rela.debug_line': relocation 130: invalid type
section [33] '.rela.debug_line': relocation 131: invalid type
section [33] '.rela.debug_line': relocation 132: invalid type
section [33] '.rela.debug_line': relocation 133: invalid type
section [33] '.rela.debug_line': relocation 134: invalid type
section [33] '.rela.debug_line': relocation 135: invalid type
section [33] '.rela.debug_line': relocation 136: invalid type
section [33] '.rela.debug_line': relocation 137: invalid type
section [33] '.rela.debug_line': relocation 138: invalid type
section [33] '.rela.debug_line': relocation 139: invalid type
section [33] '.rela.debug_line': relocation 140: invalid type
section [33] '.rela.debug_line': relocation 141: invalid type
section [33] '.rela.debug_line': relocation 142: invalid type
section [33] '.rela.debug_line': relocation 143: invalid type
section [33] '.rela.debug_line': relocation 144: invalid type
section [33] '.rela.debug_line': relocation 145: invalid type
section [33] '.rela.debug_line': relocation 146: invalid type
section [33] '.rela.debug_line': relocation 147: invalid type
section [33] '.rela.debug_line': relocation 148: invalid type
section [33] '.rela.debug_line': relocation 149: invalid type
section [33] '.rela.debug_line': relocation 150: invalid type
section [33] '.rela.debug_line': relocation 151: invalid type
section [33] '.rela.debug_line': relocation 152: invalid type
section [33] '.rela.debug_line': relocation 153: invalid type
section [33] '.rela.debug_line': relocation 154: invalid type
section [33] '.rela.debug_line': relocation 155: invalid type
section [33] '.rela.debug_line': relocation 156: invalid type
section [33] '.rela.debug_line': relocation 157: invalid type
section [33] '.rela.debug_line': relocation 158: invalid type
section [33] '.rela.debug_line': relocation 159: invalid type
section [33] '.rela.debug_line': relocation 160: invalid type
section [33] '.rela.debug_line': relocation 161: invalid type
section [33] '.rela.debug_line': relocation 162: invalid type
section [33] '.rela.debug_line': relocation 163: invalid type
section [33] '.rela.debug_line': relocation 164: invalid type
section [33] '.rela.debug_line': relocation 165: invalid type
section [33] '.rela.debug_line': relocation 166: invalid type
section [33] '.rela.debug_line': relocation 167: invalid type
section [33] '.rela.debug_line': relocation 168: invalid type
section [33] '.rela.debug_line': relocation 169: invalid type
section [33] '.rela.debug_line': relocation 170: invalid type
section [33] '.rela.debug_line': relocation 171: invalid type
section [33] '.rela.debug_line': relocation 172: invalid type
section [33] '.rela.debug_line': relocation 173: invalid type
section [33] '.rela.debug_line': relocation 174: invalid type
section [33] '.rela.debug_line': relocation 175: invalid type
section [33] '.rela.debug_line': relocation 176: invalid type
section [33] '.rela.debug_line': relocation 177: invalid type
section [33] '.rela.debug_line': relocation 178: invalid type
section [33] '.rela.debug_line': relocation 179: invalid type
section [33] '.rela.debug_line': relocation 180: invalid type
section [33] '.rela.debug_line': relocation 181: invalid type
section [33] '.rela.debug_line': relocation 182: invalid type
section [33] '.rela.debug_line': relocation 183: invalid type
section [33] '.rela.debug_line': relocation 184: invalid type
section [33] '.rela.debug_line': relocation 185: invalid type
section [33] '.rela.debug_line': relocation 186: invalid type
section [33] '.rela.debug_line': relocation 187: invalid type
section [33] '.rela.debug_line': relocation 188: invalid type
section [33] '.rela.debug_line': relocation 189: invalid type
section [33] '.rela.debug_line': relocation 190: invalid type
section [33] '.rela.debug_line': relocation 191: invalid type
section [33] '.rela.debug_line': relocation 192: invalid type
section [33] '.rela.debug_line': relocation 193: invalid type
section [33] '.rela.debug_line': relocation 194: invalid type
section [33] '.rela.debug_line': relocation 195: invalid type
section [33] '.rela.debug_line': relocation 196: invalid type
section [33] '.rela.debug_line': relocation 197: invalid type
section [33] '.rela.debug_line': relocation 198: invalid type
section [33] '.rela.debug_line': relocation 199: invalid type
section [33] '.rela.debug_line': relocation 200: invalid type
section [33] '.rela.debug_line': relocation 201: invalid type
section [33] '.rela.debug_line': relocation 202: invalid type
section [33] '.rela.debug_line': relocation 203: invalid type
section [33] '.rela.debug_line': relocation 204: invalid type
section [33] '.rela.debug_line': relocation 205: invalid type
section [33] '.rela.debug_line': relocation 206: invalid type
section [33] '.rela.debug_line': relocation 207: invalid type
section [33] '.rela.debug_line': relocation 208: invalid type
section [33] '.rela.debug_line': relocation 209: invalid type
section [33] '.rela.debug_line': relocation 210: invalid type
section [33] '.rela.debug_line': relocation 211: invalid type
section [33] '.rela.debug_line': relocation 212: invalid type
section [33] '.rela.debug_line': relocation 213: invalid type
section [33] '.rela.debug_line': relocation 214: invalid type
section [33] '.rela.debug_line': relocation 215: invalid type
section [33] '.rela.debug_line': relocation 216: invalid type
section [33] '.rela.debug_line': relocation 217: invalid type
section [33] '.rela.debug_line': relocation 218: invalid type
section [33] '.rela.debug_line': relocation 219: invalid type
section [33] '.rela.debug_line': relocation 220: invalid type
section [33] '.rela.debug_line': relocation 221: invalid type
section [33] '.rela.debug_line': relocation 222: invalid type
section [33] '.rela.debug_line': relocation 223: invalid type
section [33] '.rela.debug_line': relocation 224: invalid type
section [33] '.rela.debug_line': relocation 225: invalid type
section [33] '.rela.debug_line': relocation 226: invalid type
section [33] '.rela.debug_line': relocation 227: invalid type
section [33] '.rela.debug_line': relocation 228: invalid type
section [33] '.rela.debug_line': relocation 229: invalid type
section [33] '.rela.debug_line': relocation 230: invalid type
section [33] '.rela.debug_line': relocation 231: invalid type
section [33] '.rela.debug_line': relocation 232: invalid type
section [33] '.rela.debug_line': relocation 233: invalid type
section [33] '.rela.debug_line': relocation 234: invalid type
section [33] '.rela.debug_line': relocation 235: invalid type
section [33] '.rela.debug_line': relocation 236: invalid type
section [33] '.rela.debug_line': relocation 237: invalid type
section [33] '.rela.debug_line': relocation 238: invalid type
section [33] '.rela.debug_line': relocation 239: invalid type
section [33] '.rela.debug_line': relocation 240: invalid type
section [33] '.rela.debug_line': relocation 241: invalid type
section [33] '.rela.debug_line': relocation 242: invalid type
section [33] '.rela.debug_line': relocation 243: invalid type
section [33] '.rela.debug_line': relocation 244: invalid type
section [33] '.rela.debug_line': relocation 245: invalid type
section [33] '.rela.debug_line': relocation 246: invalid type
section [33] '.rela.debug_line': relocation 247: invalid type
section [33] '.rela.debug_line': relocation 248: invalid type
section [33] '.rela.debug_line': relocation 249: invalid type
section [33] '.rela.debug_line': relocation 250: invalid type
section [33] '.rela.debug_line': relocation 251: invalid type
section [33] '.rela.debug_line': relocation 252: invalid type
section [33] '.rela.debug_line': relocation 253: invalid type
section [33] '.rela.debug_line': relocation 254: invalid type
section [33] '.rela.debug_line': relocation 255: invalid type
section [33] '.rela.debug_line': relocation 256: invalid type
section [33] '.rela.debug_line': relocation 257: invalid type
section [33] '.rela.debug_line': relocation 258: invalid type
section [33] '.rela.debug_line': relocation 259: invalid type
section [33] '.rela.debug_line': relocation 260: invalid type
section [33] '.rela.debug_line': relocation 261: invalid type
section [33] '.rela.debug_line': relocation 262: invalid type
section [33] '.rela.debug_line': relocation 263: invalid type
section [33] '.rela.debug_line': relocation 264: invalid type
section [33] '.rela.debug_line': relocation 265: invalid type
section [33] '.rela.debug_line': relocation 266: invalid type
section [33] '.rela.debug_line': relocation 267: invalid type
section [33] '.rela.debug_line': relocation 268: invalid type
section [33] '.rela.debug_line': relocation 269: invalid type
section [33] '.rela.debug_line': relocation 270: invalid type
section [33] '.rela.debug_line': relocation 271: invalid type
section [33] '.rela.debug_line': relocation 272: invalid type
section [33] '.rela.debug_line': relocation 273: invalid type
section [33] '.rela.debug_line': relocation 274: invalid type
section [33] '.rela.debug_line': relocation 275: invalid type
section [33] '.rela.debug_line': relocation 276: invalid type
section [33] '.rela.debug_line': relocation 277: invalid type
section [33] '.rela.debug_line': relocation 278: invalid type
section [33] '.rela.debug_line': relocation 279: invalid type
section [33] '.rela.debug_line': relocation 280: invalid type
section [33] '.rela.debug_line': relocation 281: invalid type
section [33] '.rela.debug_line': relocation 282: invalid type
section [33] '.rela.debug_line': relocation 283: invalid type
section [33] '.rela.debug_line': relocation 284: invalid type
section [33] '.rela.debug_line': relocation 285: invalid type
section [33] '.rela.debug_line': relocation 286: invalid type
section [33] '.rela.debug_line': relocation 287: invalid type
section [33] '.rela.debug_line': relocation 288: invalid type
section [33] '.rela.debug_line': relocation 289: invalid type
section [33] '.rela.debug_line': relocation 290: invalid type
section [33] '.rela.debug_line': relocation 291: invalid type
section [33] '.rela.debug_line': relocation 292: invalid type
section [33] '.rela.debug_line': relocation 293: invalid type
section [33] '.rela.debug_line': relocation 294: invalid type
section [33] '.rela.debug_line': relocation 295: invalid type
section [33] '.rela.debug_line': relocation 296: invalid type
section [33] '.rela.debug_line': relocation 297: invalid type
section [33] '.rela.debug_line': relocation 298: invalid type
section [33] '.rela.debug_line': relocation 299: invalid type
section [33] '.rela.debug_line': relocation 300: invalid type
section [33] '.rela.debug_line': relocation 301: invalid type
section [33] '.rela.debug_line': relocation 302: invalid type
section [33] '.rela.debug_line': relocation 303: invalid type
section [33] '.rela.debug_line': relocation 304: invalid type
section [33] '.rela.debug_line': relocation 305: invalid type
section [33] '.rela.debug_line': relocation 306: invalid type
section [33] '.rela.debug_line': relocation 307: invalid type
section [33] '.rela.debug_line': relocation 308: invalid type
section [33] '.rela.debug_line': relocation 309: invalid type
section [33] '.rela.debug_line': relocation 310: invalid type
section [33] '.rela.debug_line': relocation 311: invalid type
section [33] '.rela.debug_line': relocation 312: invalid type
section [33] '.rela.debug_line': relocation 313: invalid type
section [33] '.rela.debug_line': relocation 314: invalid type
section [33] '.rela.debug_line': relocation 315: invalid type
section [33] '.rela.debug_line': relocation 316: invalid type
section [33] '.rela.debug_line': relocation 317: invalid type
section [33] '.rela.debug_line': relocation 318: invalid type
section [33] '.rela.debug_line': relocation 319: invalid type
section [33] '.rela.debug_line': relocation 320: invalid type
section [33] '.rela.debug_line': relocation 321: invalid type
section [33] '.rela.debug_line': relocation 322: invalid type
section [33] '.rela.debug_line': relocation 323: invalid type
section [33] '.rela.debug_line': relocation 324: invalid type
section [33] '.rela.debug_line': relocation 325: invalid type
section [33] '.rela.debug_line': relocation 326: invalid type
section [33] '.rela.debug_line': relocation 327: invalid type
section [33] '.rela.debug_line': relocation 328: invalid type
section [33] '.rela.debug_line': relocation 329: invalid type
section [33] '.rela.debug_line': relocation 330: invalid type
section [33] '.rela.debug_line': relocation 331: invalid type
section [33] '.rela.debug_line': relocation 332: invalid type
section [33] '.rela.debug_line': relocation 333: invalid type
section [33] '.rela.debug_line': relocation 334: invalid type
section [33] '.rela.debug_line': relocation 335: invalid type
section [33] '.rela.debug_line': relocation 336: invalid type
section [33] '.rela.debug_line': relocation 337: invalid type
section [33] '.rela.debug_line': relocation 338: invalid type
section [33] '.rela.debug_line': relocation 339: invalid type
section [33] '.rela.debug_line': relocation 340: invalid type
section [33] '.rela.debug_line': relocation 341: invalid type
section [33] '.rela.debug_line': relocation 342: invalid type
section [33] '.rela.debug_line': relocation 343: invalid type
section [33] '.rela.debug_line': relocation 344: invalid type
section [33] '.rela.debug_line': relocation 345: invalid type
section [33] '.rela.debug_line': relocation 346: invalid type
section [33] '.rela.debug_line': relocation 347: invalid type
section [33] '.rela.debug_line': relocation 348: invalid type
section [33] '.rela.debug_line': relocation 349: invalid type
section [33] '.rela.debug_line': relocation 350: invalid type
section [33] '.rela.debug_line': relocation 351: invalid type
section [33] '.rela.debug_line': relocation 352: invalid type
section [33] '.rela.debug_line': relocation 353: invalid type
section [33] '.rela.debug_line': relocation 354: invalid type
section [33] '.rela.debug_line': relocation 355: invalid type
section [33] '.rela.debug_line': relocation 356: invalid type
section [33] '.rela.debug_line': relocation 357: invalid type
section [33] '.rela.debug_line': relocation 358: invalid type
section [33] '.rela.debug_line': relocation 359: invalid type
section [33] '.rela.debug_line': relocation 360: invalid type
section [33] '.rela.debug_line': relocation 361: invalid type
section [33] '.rela.debug_line': relocation 362: invalid type
section [33] '.rela.debug_line': relocation 363: invalid type
section [33] '.rela.debug_line': relocation 364: invalid type
section [33] '.rela.debug_line': relocation 365: invalid type
section [33] '.rela.debug_line': relocation 366: invalid type
section [33] '.rela.debug_line': relocation 367: invalid type
section [33] '.rela.debug_line': relocation 368: invalid type
section [33] '.rela.debug_line': relocation 369: invalid type
section [33] '.rela.debug_line': relocation 370: invalid type
section [33] '.rela.debug_line': relocation 371: invalid type
section [33] '.rela.debug_line': relocation 372: invalid type
section [33] '.rela.debug_line': relocation 373: invalid type
section [33] '.rela.debug_line': relocation 374: invalid type
section [33] '.rela.debug_line': relocation 375: invalid type
section [33] '.rela.debug_line': relocation 376: invalid type
section [33] '.rela.debug_line': relocation 377: invalid type
section [33] '.rela.debug_line': relocation 378: invalid type
section [33] '.rela.debug_line': relocation 379: invalid type
section [33] '.rela.debug_line': relocation 380: invalid type
section [33] '.rela.debug_line': relocation 381: invalid type
section [33] '.rela.debug_line': relocation 382: invalid type
section [33] '.rela.debug_line': relocation 383: invalid type
section [33] '.rela.debug_line': relocation 384: invalid type
section [33] '.rela.debug_line': relocation 385: invalid type
section [33] '.rela.debug_line': relocation 386: invalid type
section [33] '.rela.debug_line': relocation 387: invalid type
section [33] '.rela.debug_line': relocation 388: invalid type
section [33] '.rela.debug_line': relocation 389: invalid type
section [33] '.rela.debug_line': relocation 390: invalid type
section [33] '.rela.debug_line': relocation 391: invalid type
section [33] '.rela.debug_line': relocation 392: invalid type
section [33] '.rela.debug_line': relocation 393: invalid type
section [33] '.rela.debug_line': relocation 394: invalid type
section [33] '.rela.debug_line': relocation 395: invalid type
section [33] '.rela.debug_line': relocation 396: invalid type
section [33] '.rela.debug_line': relocation 397: invalid type
section [33] '.rela.debug_line': relocation 398: invalid type
section [33] '.rela.debug_line': relocation 399: invalid type
section [33] '.rela.debug_line': relocation 400: invalid type
section [33] '.rela.debug_line': relocation 401: invalid type
section [33] '.rela.debug_line': relocation 402: invalid type
section [33] '.rela.debug_line': relocation 403: invalid type
section [33] '.rela.debug_line': relocation 404: invalid type
section [33] '.rela.debug_line': relocation 405: invalid type
section [33] '.rela.debug_line': relocation 406: invalid type
section [33] '.rela.debug_line': relocation 407: invalid type
section [33] '.rela.debug_line': relocation 408: invalid type
section [33] '.rela.debug_line': relocation 409: invalid type
section [33] '.rela.debug_line': relocation 410: invalid type
section [33] '.rela.debug_line': relocation 411: invalid type
section [33] '.rela.debug_line': relocation 412: invalid type
section [33] '.rela.debug_line': relocation 413: invalid type
section [33] '.rela.debug_line': relocation 414: invalid type
section [33] '.rela.debug_line': relocation 415: invalid type
section [33] '.rela.debug_line': relocation 416: invalid type
section [33] '.rela.debug_line': relocation 417: invalid type
section [33] '.rela.debug_line': relocation 418: invalid type
section [33] '.rela.debug_line': relocation 419: invalid type
section [33] '.rela.debug_line': relocation 420: invalid type
section [33] '.rela.debug_line': relocation 421: invalid type
section [33] '.rela.debug_line': relocation 422: invalid type
section [33] '.rela.debug_line': relocation 423: invalid type
section [33] '.rela.debug_line': relocation 424: invalid type
section [33] '.rela.debug_line': relocation 425: invalid type
section [33] '.rela.debug_line': relocation 426: invalid type
section [33] '.rela.debug_line': relocation 427: invalid type
section [33] '.rela.debug_line': relocation 428: invalid type
section [33] '.rela.debug_line': relocation 429: invalid type
section [33] '.rela.debug_line': relocation 430: invalid type
section [33] '.rela.debug_line': relocation 431: invalid type
section [33] '.rela.debug_line': relocation 432: invalid type
section [33] '.rela.debug_line': relocation 433: invalid type
section [33] '.rela.debug_line': relocation 434: invalid type
section [33] '.rela.debug_line': relocation 435: invalid type
section [33] '.rela.debug_line': relocation 436: invalid type
section [33] '.rela.debug_line': relocation 437: invalid type
section [33] '.rela.debug_line': relocation 438: invalid type
section [33] '.rela.debug_line': relocation 439: invalid type
section [33] '.rela.debug_line': relocation 440: invalid type
section [33] '.rela.debug_line': relocation 441: invalid type
section [33] '.rela.debug_line': relocation 442: invalid type
section [33] '.rela.debug_line': relocation 443: invalid type
section [33] '.rela.debug_line': relocation 444: invalid type
section [33] '.rela.debug_line': relocation 445: invalid type
section [33] '.rela.debug_line': relocation 446: invalid type
section [33] '.rela.debug_line': relocation 447: invalid type
section [33] '.rela.debug_line': relocation 448: invalid type
section [33] '.rela.debug_line': relocation 449: invalid type
section [33] '.rela.debug_line': relocation 450: invalid type
section [33] '.rela.debug_line': relocation 451: invalid type
section [33] '.rela.debug_line': relocation 452: invalid type
section [33] '.rela.debug_line': relocation 453: invalid type
section [33] '.rela.debug_line': relocation 454: invalid type
section [33] '.rela.debug_line': relocation 455: invalid type
section [33] '.rela.debug_line': relocation 456: invalid type
section [33] '.rela.debug_line': relocation 457: invalid type
section [33] '.rela.debug_line': relocation 458: invalid type
section [33] '.rela.debug_line': relocation 459: invalid type
section [33] '.rela.debug_line': relocation 460: invalid type
section [33] '.rela.debug_line': relocation 461: invalid type
section [33] '.rela.debug_line': relocation 462: invalid type
section [33] '.rela.debug_line': relocation 463: invalid type
section [33] '.rela.debug_line': relocation 464: invalid type
section [33] '.rela.debug_line': relocation 465: invalid type
section [33] '.rela.debug_line': relocation 466: invalid type
section [33] '.rela.debug_line': relocation 467: invalid type
section [33] '.rela.debug_line': relocation 468: invalid type
section [33] '.rela.debug_line': relocation 469: invalid type
section [33] '.rela.debug_line': relocation 470: invalid type
section [33] '.rela.debug_line': relocation 471: invalid type
section [33] '.rela.debug_line': relocation 472: invalid type
section [33] '.rela.debug_line': relocation 473: invalid type
section [33] '.rela.debug_line': relocation 474: invalid type
section [33] '.rela.debug_line': relocation 475: invalid type
section [33] '.rela.debug_line': relocation 476: invalid type
section [33] '.rela.debug_line': relocation 477: invalid type
section [33] '.rela.debug_line': relocation 478: invalid type
section [33] '.rela.debug_line': relocation 479: invalid type
section [33] '.rela.debug_line': relocation 480: invalid type
section [33] '.rela.debug_line': relocation 481: invalid type
section [33] '.rela.debug_line': relocation 482: invalid type
section [33] '.rela.debug_line': relocation 483: invalid type
section [33] '.rela.debug_line': relocation 484: invalid type
section [33] '.rela.debug_line': relocation 485: invalid type
section [33] '.rela.debug_line': relocation 486: invalid type
section [33] '.rela.debug_line': relocation 487: invalid type
section [33] '.rela.debug_line': relocation 488: invalid type
section [33] '.rela.debug_line': relocation 489: invalid type
section [33] '.rela.debug_line': relocation 490: invalid type
section [33] '.rela.debug_line': relocation 491: invalid type
section [33] '.rela.debug_line': relocation 492: invalid type
section [33] '.rela.debug_line': relocation 493: invalid type
section [33] '.rela.debug_line': relocation 494: invalid type
section [33] '.rela.debug_line': relocation 495: invalid type
section [33] '.rela.debug_line': relocation 496: invalid type
section [33] '.rela.debug_line': relocation 497: invalid type
section [33] '.rela.debug_line': relocation 498: invalid type
section [33] '.rela.debug_line': relocation 499: invalid type
section [33] '.rela.debug_line': relocation 500: invalid type
section [33] '.rela.debug_line': relocation 501: invalid type
section [33] '.rela.debug_line': relocation 502: invalid type
section [33] '.rela.debug_line': relocation 503: invalid type
section [33] '.rela.debug_line': relocation 504: invalid type
section [33] '.rela.debug_line': relocation 505: invalid type
section [33] '.rela.debug_line': relocation 506: invalid type
section [33] '.rela.debug_line': relocation 507: invalid type
section [33] '.rela.debug_line': relocation 508: invalid type
section [33] '.rela.debug_line': relocation 509: invalid type
section [33] '.rela.debug_line': relocation 510: invalid type
section [33] '.rela.debug_line': relocation 511: invalid type
section [33] '.rela.debug_line': relocation 512: invalid type
section [33] '.rela.debug_line': relocation 513: invalid type
section [33] '.rela.debug_line': relocation 514: invalid type
section [33] '.rela.debug_line': relocation 515: invalid type
section [33] '.rela.debug_line': relocation 516: invalid type
section [33] '.rela.debug_line': relocation 517: invalid type
section [33] '.rela.debug_line': relocation 518: invalid type
section [33] '.rela.debug_line': relocation 519: invalid type
section [33] '.rela.debug_line': relocation 520: invalid type
section [33] '.rela.debug_line': relocation 521: invalid type
section [33] '.rela.debug_line': relocation 522: invalid type
section [33] '.rela.debug_line': relocation 523: invalid type
section [33] '.rela.debug_line': relocation 524: invalid type
section [33] '.rela.debug_line': relocation 525: invalid type
section [33] '.rela.debug_line': relocation 526: invalid type
section [33] '.rela.debug_line': relocation 527: invalid type
section [33] '.rela.debug_line': relocation 528: invalid type
section [33] '.rela.debug_line': relocation 529: invalid type
section [33] '.rela.debug_line': relocation 530: invalid type
section [33] '.rela.debug_line': relocation 531: invalid type
section [33] '.rela.debug_line': relocation 532: invalid type
section [33] '.rela.debug_line': relocation 533: invalid type
section [33] '.rela.debug_line': relocation 534: invalid type
section [33] '.rela.debug_line': relocation 535: invalid type
section [33] '.rela.debug_line': relocation 536: invalid type
section [33] '.rela.debug_line': relocation 537: invalid type
section [33] '.rela.debug_line': relocation 538: invalid type
section [33] '.rela.debug_line': relocation 539: invalid type
section [33] '.rela.debug_line': relocation 540: invalid type
section [33] '.rela.debug_line': relocation 541: invalid type
section [33] '.rela.debug_line': relocation 542: invalid type
section [33] '.rela.debug_line': relocation 543: invalid type
section [33] '.rela.debug_line': relocation 544: invalid type
section [33] '.rela.debug_line': relocation 545: invalid type
section [33] '.rela.debug_line': relocation 546: invalid type
section [33] '.rela.debug_line': relocation 547: invalid type
section [33] '.rela.debug_line': relocation 548: invalid type
section [33] '.rela.debug_line': relocation 549: invalid type
section [33] '.rela.debug_line': relocation 550: invalid type
section [33] '.rela.debug_line': relocation 551: invalid type
section [33] '.rela.debug_line': relocation 552: invalid type
section [33] '.rela.debug_line': relocation 553: invalid type
section [33] '.rela.debug_line': relocation 554: invalid type
section [33] '.rela.debug_line': relocation 555: invalid type
section [33] '.rela.debug_line': relocation 556: invalid type
section [33] '.rela.debug_line': relocation 557: invalid type
section [33] '.rela.debug_line': relocation 558: invalid type
section [33] '.rela.debug_line': relocation 559: invalid type
section [33] '.rela.debug_line': relocation 560: invalid type
section [33] '.rela.debug_line': relocation 561: invalid type
section [33] '.rela.debug_line': relocation 562: invalid type
section [33] '.rela.debug_line': relocation 563: invalid type
section [33] '.rela.debug_line': relocation 564: invalid type
section [33] '.rela.debug_line': relocation 565: invalid type
section [33] '.rela.debug_line': relocation 566: invalid type
section [33] '.rela.debug_line': relocation 567: invalid type
section [33] '.rela.debug_line': relocation 568: invalid type
section [33] '.rela.debug_line': relocation 569: invalid type
section [33] '.rela.debug_line': relocation 570: invalid type
section [33] '.rela.debug_line': relocation 571: invalid type
section [33] '.rela.debug_line': relocation 572: invalid type
section [33] '.rela.debug_line': relocation 573: invalid type
section [33] '.rela.debug_line': relocation 574: invalid type
section [33] '.rela.debug_line': relocation 575: invalid type
section [33] '.rela.debug_line': relocation 576: invalid type
section [33] '.rela.debug_line': relocation 577: invalid type
section [33] '.rela.debug_line': relocation 578: invalid type
section [33] '.rela.debug_line': relocation 579: invalid type
section [33] '.rela.debug_line': relocation 580: invalid type
section [33] '.rela.debug_line': relocation 581: invalid type
section [33] '.rela.debug_line': relocation 582: invalid type
section [33] '.rela.debug_line': relocation 583: invalid type
section [33] '.rela.debug_line': relocation 584: invalid type
section [33] '.rela.debug_line': relocation 585: invalid type
section [33] '.rela.debug_line': relocation 586: invalid type
section [33] '.rela.debug_line': relocation 587: invalid type
section [33] '.rela.debug_line': relocation 588: invalid type
section [33] '.rela.debug_line': relocation 589: invalid type
section [33] '.rela.debug_line': relocation 590: invalid type
section [33] '.rela.debug_line': relocation 591: invalid type
section [33] '.rela.debug_line': relocation 592: invalid type
section [33] '.rela.debug_line': relocation 593: invalid type
section [33] '.rela.debug_line': relocation 594: invalid type
section [33] '.rela.debug_line': relocation 595: invalid type
section [33] '.rela.debug_line': relocation 596: invalid type
section [33] '.rela.debug_line': relocation 597: invalid type
section [33] '.rela.debug_line': relocation 598: invalid type
section [33] '.rela.debug_line': relocation 599: invalid type
section [33] '.rela.debug_line': relocation 600: invalid type
section [33] '.rela.debug_line': relocation 601: invalid type
section [33] '.rela.debug_line': relocation 602: invalid type
section [33] '.rela.debug_line': relocation 603: invalid type
section [33] '.rela.debug_line': relocation 604: invalid type
section [33] '.rela.debug_line': relocation 605: invalid type
section [33] '.rela.debug_line': relocation 606: invalid type
section [33] '.rela.debug_line': relocation 607: invalid type
section [33] '.rela.debug_line': relocation 608: invalid type
section [33] '.rela.debug_line': relocation 609: invalid type
section [33] '.rela.debug_line': relocation 610: invalid type
section [33] '.rela.debug_line': relocation 611: invalid type
section [33] '.rela.debug_line': relocation 612: invalid type
section [33] '.rela.debug_line': relocation 613: invalid type
section [33] '.rela.debug_line': relocation 614: invalid type
section [33] '.rela.debug_line': relocation 615: invalid type
section [33] '.rela.debug_line': relocation 616: invalid type
section [33] '.rela.debug_line': relocation 617: invalid type
section [33] '.rela.debug_line': relocation 618: invalid type
section [33] '.rela.debug_line': relocation 619: invalid type
section [33] '.rela.debug_line': relocation 620: invalid type
section [33] '.rela.debug_line': relocation 621: invalid type
section [33] '.rela.debug_line': relocation 622: invalid type
section [33] '.rela.debug_line': relocation 623: invalid type
section [33] '.rela.debug_line': relocation 624: invalid type
section [33] '.rela.debug_line': relocation 625: invalid type
section [33] '.rela.debug_line': relocation 626: invalid type
section [33] '.rela.debug_line': relocation 627: invalid type
section [33] '.rela.debug_line': relocation 628: invalid type
section [33] '.rela.debug_line': relocation 629: invalid type
section [33] '.rela.debug_line': relocation 630: invalid type
section [33] '.rela.debug_line': relocation 631: invalid type
section [33] '.rela.debug_line': relocation 632: invalid type
section [33] '.rela.debug_line': relocation 633: invalid type
section [33] '.rela.debug_line': relocation 634: invalid type
section [33] '.rela.debug_line': relocation 635: invalid type
section [33] '.rela.debug_line': relocation 636: invalid type
section [33] '.rela.debug_line': relocation 637: invalid type
section [33] '.rela.debug_line': relocation 638: invalid type
section [33] '.rela.debug_line': relocation 639: invalid type
section [33] '.rela.debug_line': relocation 640: invalid type
section [33] '.rela.debug_line': relocation 641: invalid type
section [33] '.rela.debug_line': relocation 642: invalid type
section [33] '.rela.debug_line': relocation 643: invalid type
section [33] '.rela.debug_line': relocation 644: invalid type
section [33] '.rela.debug_line': relocation 645: invalid type
section [33] '.rela.debug_line': relocation 646: invalid type
section [33] '.rela.debug_line': relocation 647: invalid type
section [33] '.rela.debug_line': relocation 648: invalid type
section [33] '.rela.debug_line': relocation 649: invalid type
section [33] '.rela.debug_line': relocation 650: invalid type
section [33] '.rela.debug_line': relocation 651: invalid type
section [33] '.rela.debug_line': relocation 652: invalid type
section [33] '.rela.debug_line': relocation 653: invalid type
section [33] '.rela.debug_line': relocation 654: invalid type
section [33] '.rela.debug_line': relocation 655: invalid type
section [33] '.rela.debug_line': relocation 656: invalid type
section [33] '.rela.debug_line': relocation 657: invalid type
section [33] '.rela.debug_line': relocation 658: invalid type
section [33] '.rela.debug_line': relocation 659: invalid type
section [33] '.rela.debug_line': relocation 660: invalid type
section [33] '.rela.debug_line': relocation 661: invalid type
section [33] '.rela.debug_line': relocation 662: invalid type
section [33] '.rela.debug_line': relocation 663: invalid type
section [33] '.rela.debug_line': relocation 664: invalid type
section [33] '.rela.debug_line': relocation 665: invalid type
section [33] '.rela.debug_line': relocation 666: invalid type
section [33] '.rela.debug_line': relocation 667: invalid type
section [33] '.rela.debug_line': relocation 668: invalid type
section [33] '.rela.debug_line': relocation 669: invalid type
section [33] '.rela.debug_line': relocation 670: invalid type
section [33] '.rela.debug_line': relocation 671: invalid type
section [33] '.rela.debug_line': relocation 672: invalid type
section [33] '.rela.debug_line': relocation 673: invalid type
section [33] '.rela.debug_line': relocation 674: invalid type
section [33] '.rela.debug_line': relocation 675: invalid type
section [33] '.rela.debug_line': relocation 676: invalid type
section [33] '.rela.debug_line': relocation 677: invalid type
section [33] '.rela.debug_line': relocation 678: invalid type
section [33] '.rela.debug_line': relocation 679: invalid type
section [33] '.rela.debug_line': relocation 680: invalid type
section [33] '.rela.debug_line': relocation 681: invalid type
section [33] '.rela.debug_line': relocation 682: invalid type
section [33] '.rela.debug_line': relocation 683: invalid type
section [33] '.rela.debug_line': relocation 684: invalid type
section [33] '.rela.debug_line': relocation 685: invalid type
section [33] '.rela.debug_line': relocation 686: invalid type
section [33] '.rela.debug_line': relocation 687: invalid type
section [33] '.rela.debug_line': relocation 688: invalid type
section [33] '.rela.debug_line': relocation 689: invalid type
section [33] '.rela.debug_line': relocation 690: invalid type
section [33] '.rela.debug_line': relocation 691: invalid type
section [33] '.rela.debug_line': relocation 692: invalid type
section [33] '.rela.debug_line': relocation 693: invalid type
section [33] '.rela.debug_line': relocation 694: invalid type
section [33] '.rela.debug_line': relocation 695: invalid type
section [33] '.rela.debug_line': relocation 696: invalid type
section [33] '.rela.debug_line': relocation 697: invalid type
section [33] '.rela.debug_line': relocation 698: invalid type
section [33] '.rela.debug_line': relocation 699: invalid type
section [33] '.rela.debug_line': relocation 700: invalid type
section [33] '.rela.debug_line': relocation 701: invalid type
section [33] '.rela.debug_line': relocation 702: invalid type
section [33] '.rela.debug_line': relocation 703: invalid type
section [33] '.rela.debug_line': relocation 704: invalid type
section [33] '.rela.debug_line': relocation 705: invalid type
section [33] '.rela.debug_line': relocation 706: invalid type
section [33] '.rela.debug_line': relocation 707: invalid type
section [33] '.rela.debug_line': relocation 708: invalid type
section [33] '.rela.debug_line': relocation 709: invalid type
section [33] '.rela.debug_line': relocation 710: invalid type
section [33] '.rela.debug_line': relocation 711: invalid type
section [33] '.rela.debug_line': relocation 712: invalid type
section [33] '.rela.debug_line': relocation 713: invalid type
section [33] '.rela.debug_line': relocation 714: invalid type
section [33] '.rela.debug_line': relocation 715: invalid type
section [33] '.rela.debug_line': relocation 716: invalid type
section [33] '.rela.debug_line': relocation 717: invalid type
section [33] '.rela.debug_line': relocation 718: invalid type
section [33] '.rela.debug_line': relocation 719: invalid type
section [33] '.rela.debug_line': relocation 720: invalid type
section [33] '.rela.debug_line': relocation 721: invalid type
section [33] '.rela.debug_line': relocation 722: invalid type
section [33] '.rela.debug_line': relocation 723: invalid type
section [33] '.rela.debug_line': relocation 724: invalid type
section [33] '.rela.debug_line': relocation 725: invalid type
section [33] '.rela.debug_line': relocation 726: invalid type
section [33] '.rela.debug_line': relocation 727: invalid type
section [33] '.rela.debug_line': relocation 728: invalid type
section [33] '.rela.debug_line': relocation 729: invalid type
section [33] '.rela.debug_line': relocation 730: invalid type
section [33] '.rela.debug_line': relocation 731: invalid type
section [33] '.rela.debug_line': relocation 732: invalid type
section [33] '.rela.debug_line': relocation 733: invalid type
section [33] '.rela.debug_line': relocation 734: invalid type
section [33] '.rela.debug_line': relocation 735: invalid type
section [33] '.rela.debug_line': relocation 736: invalid type
section [33] '.rela.debug_line': relocation 737: invalid type
section [33] '.rela.debug_line': relocation 738: invalid type
section [33] '.rela.debug_line': relocation 739: invalid type
section [33] '.rela.debug_line': relocation 740: invalid type
section [33] '.rela.debug_line': relocation 741: invalid type
section [33] '.rela.debug_line': relocation 742: invalid type
section [33] '.rela.debug_line': relocation 743: invalid type
section [33] '.rela.debug_line': relocation 744: invalid type
section [33] '.rela.debug_line': relocation 745: invalid type
section [33] '.rela.debug_line': relocation 746: invalid type
section [33] '.rela.debug_line': relocation 747: invalid type
section [33] '.rela.debug_line': relocation 748: invalid type
section [33] '.rela.debug_line': relocation 749: invalid type
section [33] '.rela.debug_line': relocation 750: invalid type
section [33] '.rela.debug_line': relocation 751: invalid type
section [33] '.rela.debug_line': relocation 752: invalid type
section [33] '.rela.debug_line': relocation 753: invalid type
section [33] '.rela.debug_line': relocation 754: invalid type
section [33] '.rela.debug_line': relocation 755: invalid type
section [33] '.rela.debug_line': relocation 756: invalid type
section [33] '.rela.debug_line': relocation 757: invalid type
section [33] '.rela.debug_line': relocation 758: invalid type
section [33] '.rela.debug_line': relocation 759: invalid type
section [33] '.rela.debug_line': relocation 760: invalid type
section [33] '.rela.debug_line': relocation 761: invalid type
section [33] '.rela.debug_line': relocation 762: invalid type
section [33] '.rela.debug_line': relocation 763: invalid type
section [33] '.rela.debug_line': relocation 764: invalid type
section [33] '.rela.debug_line': relocation 765: invalid type
section [33] '.rela.debug_line': relocation 766: invalid type
section [33] '.rela.debug_line': relocation 767: invalid type
section [33] '.rela.debug_line': relocation 768: invalid type
section [33] '.rela.debug_line': relocation 769: invalid type
section [33] '.rela.debug_line': relocation 770: invalid type
section [33] '.rela.debug_line': relocation 771: invalid type
section [33] '.rela.debug_line': relocation 772: invalid type
section [33] '.rela.debug_line': relocation 773: invalid type
section [33] '.rela.debug_line': relocation 774: invalid type
section [33] '.rela.debug_line': relocation 775: invalid type
section [33] '.rela.debug_line': relocation 776: invalid type
section [33] '.rela.debug_line': relocation 777: invalid type
section [33] '.rela.debug_line': relocation 778: invalid type
section [33] '.rela.debug_line': relocation 779: invalid type
section [33] '.rela.debug_line': relocation 780: invalid type
section [33] '.rela.debug_line': relocation 781: invalid type
section [33] '.rela.debug_line': relocation 782: invalid type
section [33] '.rela.debug_line': relocation 783: invalid type
section [33] '.rela.debug_line': relocation 784: invalid type
section [33] '.rela.debug_line': relocation 785: invalid type
section [33] '.rela.debug_line': relocation 786: invalid type
section [33] '.rela.debug_line': relocation 787: invalid type
section [33] '.rela.debug_line': relocation 788: invalid type
section [33] '.rela.debug_line': relocation 789: invalid type
section [33] '.rela.debug_line': relocation 790: invalid type
section [33] '.rela.debug_line': relocation 791: invalid type
section [33] '.rela.debug_line': relocation 792: invalid type
section [33] '.rela.debug_line': relocation 793: invalid type
section [33] '.rela.debug_line': relocation 794: invalid type
section [33] '.rela.debug_line': relocation 795: invalid type
section [33] '.rela.debug_line': relocation 796: invalid type
section [33] '.rela.debug_line': relocation 797: invalid type
section [33] '.rela.debug_line': relocation 798: invalid type
section [33] '.rela.debug_line': relocation 799: invalid type
section [33] '.rela.debug_line': relocation 800: invalid type
section [33] '.rela.debug_line': relocation 801: invalid type
section [33] '.rela.debug_line': relocation 802: invalid type
section [33] '.rela.debug_line': relocation 803: invalid type
section [33] '.rela.debug_line': relocation 804: invalid type
section [33] '.rela.debug_line': relocation 805: invalid type
section [33] '.rela.debug_line': relocation 806: invalid type
section [33] '.rela.debug_line': relocation 807: invalid type
section [33] '.rela.debug_line': relocation 808: invalid type
section [33] '.rela.debug_line': relocation 809: invalid type
section [33] '.rela.debug_line': relocation 810: invalid type
section [33] '.rela.debug_line': relocation 811: invalid type
section [33] '.rela.debug_line': relocation 812: invalid type
section [33] '.rela.debug_line': relocation 813: invalid type
section [33] '.rela.debug_line': relocation 814: invalid type
section [33] '.rela.debug_line': relocation 815: invalid type
section [33] '.rela.debug_line': relocation 816: invalid type
section [33] '.rela.debug_line': relocation 817: invalid type
section [33] '.rela.debug_line': relocation 818: invalid type
section [33] '.rela.debug_line': relocation 819: invalid type
section [33] '.rela.debug_line': relocation 820: invalid type
section [33] '.rela.debug_line': relocation 821: invalid type
section [33] '.rela.debug_line': relocation 822: invalid type
section [33] '.rela.debug_line': relocation 823: invalid type
section [33] '.rela.debug_line': relocation 824: invalid type
section [33] '.rela.debug_line': relocation 825: invalid type
section [33] '.rela.debug_line': relocation 826: invalid type
section [33] '.rela.debug_line': relocation 827: invalid type
section [33] '.rela.debug_line': relocation 828: invalid type
section [33] '.rela.debug_line': relocation 829: invalid type
section [33] '.rela.debug_line': relocation 830: invalid type
section [33] '.rela.debug_line': relocation 831: invalid type
section [33] '.rela.debug_line': relocation 832: invalid type
section [33] '.rela.debug_line': relocation 833: invalid type
section [33] '.rela.debug_line': relocation 834: invalid type
section [33] '.rela.debug_line': relocation 835: invalid type
section [33] '.rela.debug_line': relocation 836: invalid type
section [33] '.rela.debug_line': relocation 837: invalid type
section [33] '.rela.debug_line': relocation 838: invalid type
section [33] '.rela.debug_line': relocation 839: invalid type
section [33] '.rela.debug_line': relocation 840: invalid type
section [33] '.rela.debug_line': relocation 841: invalid type
section [33] '.rela.debug_line': relocation 842: invalid type
section [33] '.rela.debug_line': relocation 843: invalid type
section [33] '.rela.debug_line': relocation 844: invalid type
section [33] '.rela.debug_line': relocation 845: invalid type
section [33] '.rela.debug_line': relocation 846: invalid type
section [33] '.rela.debug_line': relocation 847: invalid type
section [33] '.rela.debug_line': relocation 848: invalid type
section [33] '.rela.debug_line': relocation 849: invalid type
section [33] '.rela.debug_line': relocation 850: invalid type
section [33] '.rela.debug_line': relocation 851: invalid type
section [33] '.rela.debug_line': relocation 852: invalid type
section [33] '.rela.debug_line': relocation 853: invalid type
section [33] '.rela.debug_line': relocation 854: invalid type
section [33] '.rela.debug_line': relocation 855: invalid type
section [33] '.rela.debug_line': relocation 856: invalid type
section [33] '.rela.debug_line': relocation 857: invalid type
section [33] '.rela.debug_line': relocation 858: invalid type
section [33] '.rela.debug_line': relocation 859: invalid type
section [33] '.rela.debug_line': relocation 860: invalid type
section [33] '.rela.debug_line': relocation 861: invalid type
section [33] '.rela.debug_line': relocation 862: invalid type
section [33] '.rela.debug_line': relocation 863: invalid type
section [33] '.rela.debug_line': relocation 864: invalid type
section [33] '.rela.debug_line': relocation 865: invalid type
section [33] '.rela.debug_line': relocation 866: invalid type
section [33] '.rela.debug_line': relocation 867: invalid type
section [33] '.rela.debug_line': relocation 868: invalid type
section [33] '.rela.debug_line': relocation 869: invalid type
section [33] '.rela.debug_line': relocation 870: invalid type
section [33] '.rela.debug_line': relocation 871: invalid type
section [33] '.rela.debug_line': relocation 872: invalid type
section [33] '.rela.debug_line': relocation 873: invalid type
section [33] '.rela.debug_line': relocation 874: invalid type
section [33] '.rela.debug_line': relocation 875: invalid type
section [33] '.rela.debug_line': relocation 876: invalid type
section [33] '.rela.debug_line': relocation 877: invalid type
section [33] '.rela.debug_line': relocation 878: invalid type
section [33] '.rela.debug_line': relocation 879: invalid type
section [33] '.rela.debug_line': relocation 880: invalid type
section [33] '.rela.debug_line': relocation 881: invalid type
section [33] '.rela.debug_line': relocation 882: invalid type
section [33] '.rela.debug_line': relocation 883: invalid type
section [33] '.rela.debug_line': relocation 884: invalid type
section [33] '.rela.debug_line': relocation 885: invalid type
section [33] '.rela.debug_line': relocation 886: invalid type
section [33] '.rela.debug_line': relocation 887: invalid type
section [33] '.rela.debug_line': relocation 888: invalid type
section [33] '.rela.debug_line': relocation 889: invalid type
section [33] '.rela.debug_line': relocation 890: invalid type
section [33] '.rela.debug_line': relocation 891: invalid type
section [33] '.rela.debug_line': relocation 892: invalid type
section [33] '.rela.debug_line': relocation 893: invalid type
section [33] '.rela.debug_line': relocation 894: invalid type
section [33] '.rela.debug_line': relocation 895: invalid type
section [33] '.rela.debug_line': relocation 896: invalid type
section [33] '.rela.debug_line': relocation 897: invalid type
section [33] '.rela.debug_line': relocation 898: invalid type
section [33] '.rela.debug_line': relocation 899: invalid type
section [33] '.rela.debug_line': relocation 900: invalid type
section [33] '.rela.debug_line': relocation 901: invalid type
section [33] '.rela.debug_line': relocation 902: invalid type
section [33] '.rela.debug_line': relocation 903: invalid type
section [33] '.rela.debug_line': relocation 904: invalid type
section [33] '.rela.debug_line': relocation 905: invalid type
section [33] '.rela.debug_line': relocation 906: invalid type
section [33] '.rela.debug_line': relocation 907: invalid type
section [33] '.rela.debug_line': relocation 908: invalid type
section [33] '.rela.debug_line': relocation 909: invalid type
section [33] '.rela.debug_line': relocation 910: invalid type
section [33] '.rela.debug_line': relocation 911: invalid type
section [33] '.rela.debug_line': relocation 912: invalid type
section [33] '.rela.debug_line': relocation 913: invalid type
section [33] '.rela.debug_line': relocation 914: invalid type
section [33] '.rela.debug_line': relocation 915: invalid type
section [33] '.rela.debug_line': relocation 916: invalid type
section [33] '.rela.debug_line': relocation 917: invalid type
section [33] '.rela.debug_line': relocation 918: invalid type
section [33] '.rela.debug_line': relocation 919: invalid type
section [33] '.rela.debug_line': relocation 920: invalid type
section [33] '.rela.debug_line': relocation 921: invalid type
section [33] '.rela.debug_line': relocation 922: invalid type
section [33] '.rela.debug_line': relocation 923: invalid type
section [33] '.rela.debug_line': relocation 924: invalid type
section [33] '.rela.debug_line': relocation 925: invalid type
section [33] '.rela.debug_line': relocation 926: invalid type
section [33] '.rela.debug_line': relocation 927: invalid type
section [33] '.rela.debug_line': relocation 928: invalid type
section [33] '.rela.debug_line': relocation 929: invalid type
section [33] '.rela.debug_line': relocation 930: invalid type
section [33] '.rela.debug_line': relocation 931: invalid type
section [33] '.rela.debug_line': relocation 932: invalid type
section [33] '.rela.debug_line': relocation 933: invalid type
section [33] '.rela.debug_line': relocation 934: invalid type
section [33] '.rela.debug_line': relocation 935: invalid type
section [33] '.rela.debug_line': relocation 936: invalid type
section [33] '.rela.debug_line': relocation 937: invalid type
section [33] '.rela.debug_line': relocation 938: invalid type
section [33] '.rela.debug_line': relocation 939: invalid type
section [33] '.rela.debug_line': relocation 940: invalid type
section [33] '.rela.debug_line': relocation 941: invalid type
section [33] '.rela.debug_line': relocation 942: invalid type
section [33] '.rela.debug_line': relocation 943: invalid type
section [33] '.rela.debug_line': relocation 944: invalid type
section [33] '.rela.debug_line': relocation 945: invalid type
section [33] '.rela.debug_line': relocation 946: invalid type
section [33] '.rela.debug_line': relocation 947: invalid type
section [33] '.rela.debug_line': relocation 948: invalid type
section [33] '.rela.debug_line': relocation 949: invalid type
section [33] '.rela.debug_line': relocation 950: invalid type
section [33] '.rela.debug_line': relocation 951: invalid type
section [33] '.rela.debug_line': relocation 952: invalid type
section [33] '.rela.debug_line': relocation 953: invalid type
section [33] '.rela.debug_line': relocation 954: invalid type
section [33] '.rela.debug_line': relocation 955: invalid type
section [33] '.rela.debug_line': relocation 956: invalid type
section [33] '.rela.debug_line': relocation 957: invalid type
section [33] '.rela.debug_line': relocation 958: invalid type
section [33] '.rela.debug_line': relocation 959: invalid type
section [33] '.rela.debug_line': relocation 960: invalid type
section [33] '.rela.debug_line': relocation 961: invalid type
section [33] '.rela.debug_line': relocation 962: invalid type
section [33] '.rela.debug_line': relocation 963: invalid type
section [33] '.rela.debug_line': relocation 964: invalid type
section [33] '.rela.debug_line': relocation 965: invalid type
section [33] '.rela.debug_line': relocation 966: invalid type
section [33] '.rela.debug_line': relocation 967: invalid type
section [33] '.rela.debug_line': relocation 968: invalid type
section [33] '.rela.debug_line': relocation 969: invalid type
section [33] '.rela.debug_line': relocation 970: invalid type
section [33] '.rela.debug_line': relocation 971: invalid type
section [33] '.rela.debug_line': relocation 972: invalid type
section [33] '.rela.debug_line': relocation 973: invalid type
section [33] '.rela.debug_line': relocation 974: invalid type
section [33] '.rela.debug_line': relocation 975: invalid type
section [33] '.rela.debug_line': relocation 976: invalid type
section [33] '.rela.debug_line': relocation 977: invalid type
section [33] '.rela.debug_line': relocation 978: invalid type
section [33] '.rela.debug_line': relocation 979: invalid type
section [33] '.rela.debug_line': relocation 980: invalid type
section [33] '.rela.debug_line': relocation 981: invalid type
section [33] '.rela.debug_line': relocation 982: invalid type
section [33] '.rela.debug_line': relocation 983: invalid type
section [33] '.rela.debug_line': relocation 984: invalid type
section [33] '.rela.debug_line': relocation 985: invalid type
section [33] '.rela.debug_line': relocation 986: invalid type
section [33] '.rela.debug_line': relocation 987: invalid type
section [33] '.rela.debug_line': relocation 988: invalid type
section [33] '.rela.debug_line': relocation 989: invalid type
section [33] '.rela.debug_line': relocation 990: invalid type
section [33] '.rela.debug_line': relocation 991: invalid type
section [33] '.rela.debug_line': relocation 992: invalid type
section [33] '.rela.debug_line': relocation 993: invalid type
section [33] '.rela.debug_line': relocation 994: invalid type
section [33] '.rela.debug_line': relocation 995: invalid type
section [33] '.rela.debug_line': relocation 996: invalid type
section [33] '.rela.debug_line': relocation 997: invalid type
section [33] '.rela.debug_line': relocation 998: invalid type
section [33] '.rela.debug_line': relocation 999: invalid type
section [33] '.rela.debug_line': relocation 1000: invalid type
section [33] '.rela.debug_line': relocation 1001: invalid type
section [33] '.rela.debug_line': relocation 1002: invalid type
section [33] '.rela.debug_line': relocation 1003: invalid type
section [33] '.rela.debug_line': relocation 1004: invalid type
section [33] '.rela.debug_line': relocation 1005: invalid type
section [33] '.rela.debug_line': relocation 1006: invalid type
section [33] '.rela.debug_line': relocation 1007: invalid type
section [33] '.rela.debug_line': relocation 1008: invalid type
section [33] '.rela.debug_line': relocation 1009: invalid type
section [33] '.rela.debug_line': relocation 1010: invalid type
section [33] '.rela.debug_line': relocation 1011: invalid type
section [33] '.rela.debug_line': relocation 1012: invalid type
section [33] '.rela.debug_line': relocation 1013: invalid type
section [33] '.rela.debug_line': relocation 1014: invalid type
section [33] '.rela.debug_line': relocation 1015: invalid type
section [33] '.rela.debug_line': relocation 1016: invalid type
section [33] '.rela.debug_line': relocation 1017: invalid type
section [33] '.rela.debug_line': relocation 1018: invalid type
section [33] '.rela.debug_line': relocation 1019: invalid type
section [33] '.rela.debug_line': relocation 1020: invalid type
section [33] '.rela.debug_line': relocation 1021: invalid type
section [33] '.rela.debug_line': relocation 1022: invalid type
section [33] '.rela.debug_line': relocation 1023: invalid type
section [33] '.rela.debug_line': relocation 1024: invalid type
section [33] '.rela.debug_line': relocation 1025: invalid type
section [33] '.rela.debug_line': relocation 1026: invalid type
section [33] '.rela.debug_line': relocation 1027: invalid type
section [33] '.rela.debug_line': relocation 1028: invalid type
section [33] '.rela.debug_line': relocation 1029: invalid type
section [33] '.rela.debug_line': relocation 1030: invalid type
section [33] '.rela.debug_line': relocation 1031: invalid type
section [33] '.rela.debug_line': relocation 1032: invalid type
section [33] '.rela.debug_line': relocation 1033: invalid type
section [33] '.rela.debug_line': relocation 1034: invalid type
section [33] '.rela.debug_line': relocation 1035: invalid type
section [33] '.rela.debug_line': relocation 1036: invalid type
section [33] '.rela.debug_line': relocation 1037: invalid type
section [33] '.rela.debug_line': relocation 1038: invalid type
section [33] '.rela.debug_line': relocation 1039: invalid type
section [33] '.rela.debug_line': relocation 1040: invalid type
section [33] '.rela.debug_line': relocation 1041: invalid type
section [33] '.rela.debug_line': relocation 1042: invalid type
section [33] '.rela.debug_line': relocation 1043: invalid type
section [33] '.rela.debug_line': relocation 1044: invalid type
section [33] '.rela.debug_line': relocation 1045: invalid type
section [33] '.rela.debug_line': relocation 1046: invalid type
section [33] '.rela.debug_line': relocation 1047: invalid type
section [33] '.rela.debug_line': relocation 1048: invalid type
section [33] '.rela.debug_line': relocation 1049: invalid type
section [33] '.rela.debug_line': relocation 1050: invalid type
section [33] '.rela.debug_line': relocation 1051: invalid type
section [33] '.rela.debug_line': relocation 1052: invalid type
section [33] '.rela.debug_line': relocation 1053: invalid type
section [33] '.rela.debug_line': relocation 1054: invalid type
section [33] '.rela.debug_line': relocation 1055: invalid type
section [33] '.rela.debug_line': relocation 1056: invalid type
section [33] '.rela.debug_line': relocation 1057: invalid type
section [33] '.rela.debug_line': relocation 1058: invalid type
section [33] '.rela.debug_line': relocation 1059: invalid type
section [33] '.rela.debug_line': relocation 1060: invalid type
section [33] '.rela.debug_line': relocation 1061: invalid type
section [33] '.rela.debug_line': relocation 1062: invalid type
section [33] '.rela.debug_line': relocation 1063: invalid type
section [33] '.rela.debug_line': relocation 1064: invalid type
section [33] '.rela.debug_line': relocation 1065: invalid type
section [33] '.rela.debug_line': relocation 1066: invalid type
section [33] '.rela.debug_line': relocation 1067: invalid type
section [33] '.rela.debug_line': relocation 1068: invalid type
section [33] '.rela.debug_line': relocation 1069: invalid type
section [33] '.rela.debug_line': relocation 1070: invalid type
section [33] '.rela.debug_line': relocation 1071: invalid type
section [33] '.rela.debug_line': relocation 1072: invalid type
section [33] '.rela.debug_line': relocation 1073: invalid type
section [33] '.rela.debug_line': relocation 1074: invalid type
section [33] '.rela.debug_line': relocation 1075: invalid type
section [33] '.rela.debug_line': relocation 1076: invalid type
section [33] '.rela.debug_line': relocation 1077: invalid type
section [33] '.rela.debug_line': relocation 1078: invalid type
section [33] '.rela.debug_line': relocation 1079: invalid type
section [33] '.rela.debug_line': relocation 1080: invalid type
section [33] '.rela.debug_line': relocation 1081: invalid type
section [33] '.rela.debug_line': relocation 1082: invalid type
section [33] '.rela.debug_line': relocation 1083: invalid type
section [33] '.rela.debug_line': relocation 1084: invalid type
section [33] '.rela.debug_line': relocation 1085: invalid type
section [33] '.rela.debug_line': relocation 1086: invalid type
section [33] '.rela.debug_line': relocation 1087: invalid type
section [33] '.rela.debug_line': relocation 1088: invalid type
section [33] '.rela.debug_line': relocation 1089: invalid type
section [33] '.rela.debug_line': relocation 1090: invalid type
section [33] '.rela.debug_line': relocation 1091: invalid type
section [33] '.rela.debug_line': relocation 1092: invalid type
section [33] '.rela.debug_line': relocation 1093: invalid type
section [33] '.rela.debug_line': relocation 1094: invalid type
section [33] '.rela.debug_line': relocation 1095: invalid type
section [33] '.rela.debug_line': relocation 1096: invalid type
section [33] '.rela.debug_line': relocation 1097: invalid type
section [33] '.rela.debug_line': relocation 1098: invalid type
section [33] '.rela.debug_line': relocation 1099: invalid type
section [33] '.rela.debug_line': relocation 1100: invalid type
section [33] '.rela.debug_line': relocation 1101: invalid type
section [33] '.rela.debug_line': relocation 1102: invalid type
section [33] '.rela.debug_line': relocation 1103: invalid type
section [33] '.rela.debug_line': relocation 1104: invalid type
section [33] '.rela.debug_line': relocation 1105: invalid type
section [33] '.rela.debug_line': relocation 1106: invalid type
section [33] '.rela.debug_line': relocation 1107: invalid type
section [33] '.rela.debug_line': relocation 1108: invalid type
section [33] '.rela.debug_line': relocation 1109: invalid type
section [33] '.rela.debug_line': relocation 1110: invalid type
section [33] '.rela.debug_line': relocation 1111: invalid type
section [33] '.rela.debug_line': relocation 1112: invalid type
section [33] '.rela.debug_line': relocation 1113: invalid type
section [33] '.rela.debug_line': relocation 1114: invalid type
section [33] '.rela.debug_line': relocation 1115: invalid type
section [33] '.rela.debug_line': relocation 1116: invalid type
section [33] '.rela.debug_line': relocation 1117: invalid type
section [33] '.rela.debug_line': relocation 1118: invalid type
section [33] '.rela.debug_line': relocation 1119: invalid type
section [33] '.rela.debug_line': relocation 1120: invalid type
section [33] '.rela.debug_line': relocation 1121: invalid type
section [33] '.rela.debug_line': relocation 1122: invalid type
section [33] '.rela.debug_line': relocation 1123: invalid type
section [33] '.rela.debug_line': relocation 1124: invalid type
section [33] '.rela.debug_line': relocation 1125: invalid type
section [33] '.rela.debug_line': relocation 1126: invalid type
section [33] '.rela.debug_line': relocation 1127: invalid type
section [33] '.rela.debug_line': relocation 1128: invalid type
section [33] '.rela.debug_line': relocation 1129: invalid type
section [33] '.rela.debug_line': relocation 1130: invalid type
section [33] '.rela.debug_line': relocation 1131: invalid type
section [33] '.rela.debug_line': relocation 1132: invalid type
section [33] '.rela.debug_line': relocation 1133: invalid type
section [33] '.rela.debug_line': relocation 1134: invalid type
section [33] '.rela.debug_line': relocation 1135: invalid type
section [33] '.rela.debug_line': relocation 1136: invalid type
section [33] '.rela.debug_line': relocation 1137: invalid type
section [33] '.rela.debug_line': relocation 1138: invalid type
section [33] '.rela.debug_line': relocation 1139: invalid type
section [33] '.rela.debug_line': relocation 1140: invalid type
section [33] '.rela.debug_line': relocation 1141: invalid type
section [33] '.rela.debug_line': relocation 1142: invalid type
section [33] '.rela.debug_line': relocation 1143: invalid type
section [33] '.rela.debug_line': relocation 1144: invalid type
section [33] '.rela.debug_line': relocation 1145: invalid type
section [33] '.rela.debug_line': relocation 1146: invalid type
section [33] '.rela.debug_line': relocation 1147: invalid type
section [33] '.rela.debug_line': relocation 1148: invalid type
section [33] '.rela.debug_line': relocation 1149: invalid type
section [33] '.rela.debug_line': relocation 1150: invalid type
section [33] '.rela.debug_line': relocation 1151: invalid type
section [33] '.rela.debug_line': relocation 1152: invalid type
section [33] '.rela.debug_line': relocation 1153: invalid type
section [33] '.rela.debug_line': relocation 1154: invalid type
section [33] '.rela.debug_line': relocation 1155: invalid type
section [33] '.rela.debug_line': relocation 1156: invalid type
section [33] '.rela.debug_line': relocation 1157: invalid type
section [33] '.rela.debug_line': relocation 1158: invalid type
section [33] '.rela.debug_line': relocation 1159: invalid type
section [33] '.rela.debug_line': relocation 1160: invalid type
section [33] '.rela.debug_line': relocation 1161: invalid type
section [33] '.rela.debug_line': relocation 1162: invalid type
section [33] '.rela.debug_line': relocation 1163: invalid type
section [33] '.rela.debug_line': relocation 1164: invalid type
section [33] '.rela.debug_line': relocation 1165: invalid type
section [33] '.rela.debug_line': relocation 1166: invalid type
section [33] '.rela.debug_line': relocation 1167: invalid type
section [33] '.rela.debug_line': relocation 1168: invalid type
section [33] '.rela.debug_line': relocation 1169: invalid type
section [33] '.rela.debug_line': relocation 1170: invalid type
section [33] '.rela.debug_line': relocation 1171: invalid type
section [33] '.rela.debug_line': relocation 1172: invalid type
section [33] '.rela.debug_line': relocation 1173: invalid type
section [33] '.rela.debug_line': relocation 1174: invalid type
section [33] '.rela.debug_line': relocation 1175: invalid type
section [33] '.rela.debug_line': relocation 1176: invalid type
section [33] '.rela.debug_line': relocation 1177: invalid type
section [33] '.rela.debug_line': relocation 1178: invalid type
section [33] '.rela.debug_line': relocation 1179: invalid type
section [33] '.rela.debug_line': relocation 1180: invalid type
section [33] '.rela.debug_line': relocation 1181: invalid type
section [33] '.rela.debug_line': relocation 1182: invalid type
section [33] '.rela.debug_line': relocation 1183: invalid type
section [33] '.rela.debug_line': relocation 1184: invalid type
section [33] '.rela.debug_line': relocation 1185: invalid type
section [33] '.rela.debug_line': relocation 1186: invalid type
section [33] '.rela.debug_line': relocation 1187: invalid type
section [33] '.rela.debug_line': relocation 1188: invalid type
section [33] '.rela.debug_line': relocation 1189: invalid type
section [33] '.rela.debug_line': relocation 1190: invalid type
section [33] '.rela.debug_line': relocation 1191: invalid type
section [33] '.rela.debug_line': relocation 1192: invalid type
section [33] '.rela.debug_line': relocation 1193: invalid type
section [33] '.rela.debug_line': relocation 1194: invalid type
section [33] '.rela.debug_line': relocation 1195: invalid type
section [33] '.rela.debug_line': relocation 1196: invalid type
section [33] '.rela.debug_line': relocation 1197: invalid type
section [33] '.rela.debug_line': relocation 1198: invalid type
section [33] '.rela.debug_line': relocation 1199: invalid type
section [33] '.rela.debug_line': relocation 1200: invalid type
section [33] '.rela.debug_line': relocation 1201: invalid type
section [33] '.rela.debug_line': relocation 1202: invalid type
section [33] '.rela.debug_line': relocation 1203: invalid type
section [33] '.rela.debug_line': relocation 1204: invalid type
section [33] '.rela.debug_line': relocation 1205: invalid type
section [33] '.rela.debug_line': relocation 1206: invalid type
section [33] '.rela.debug_line': relocation 1207: invalid type
section [33] '.rela.debug_line': relocation 1208: invalid type
section [33] '.rela.debug_line': relocation 1209: invalid type
section [33] '.rela.debug_line': relocation 1210: invalid type
section [33] '.rela.debug_line': relocation 1211: invalid type
section [33] '.rela.debug_line': relocation 1212: invalid type
section [33] '.rela.debug_line': relocation 1213: invalid type
section [33] '.rela.debug_line': relocation 1214: invalid type
section [33] '.rela.debug_line': relocation 1215: invalid type
section [33] '.rela.debug_line': relocation 1216: invalid type
section [33] '.rela.debug_line': relocation 1217: invalid type
section [33] '.rela.debug_line': relocation 1218: invalid type
section [33] '.rela.debug_line': relocation 1219: invalid type
section [33] '.rela.debug_line': relocation 1220: invalid type
section [33] '.rela.debug_line': relocation 1221: invalid type
section [33] '.rela.debug_line': relocation 1222: invalid type
section [33] '.rela.debug_line': relocation 1223: invalid type
section [33] '.rela.debug_line': relocation 1224: invalid type
section [33] '.rela.debug_line': relocation 1225: invalid type
section [33] '.rela.debug_line': relocation 1226: invalid type
section [33] '.rela.debug_line': relocation 1227: invalid type
section [33] '.rela.debug_line': relocation 1228: invalid type
section [33] '.rela.debug_line': relocation 1229: invalid type
section [33] '.rela.debug_line': relocation 1230: invalid type
section [33] '.rela.debug_line': relocation 1231: invalid type
section [33] '.rela.debug_line': relocation 1232: invalid type
section [33] '.rela.debug_line': relocation 1233: invalid type
section [33] '.rela.debug_line': relocation 1234: invalid type
section [33] '.rela.debug_line': relocation 1235: invalid type
section [33] '.rela.debug_line': relocation 1236: invalid type
section [33] '.rela.debug_line': relocation 1237: invalid type
section [33] '.rela.debug_line': relocation 1238: invalid type
section [33] '.rela.debug_line': relocation 1239: invalid type
section [33] '.rela.debug_line': relocation 1240: invalid type
section [33] '.rela.debug_line': relocation 1241: invalid type
section [33] '.rela.debug_line': relocation 1242: invalid type
section [33] '.rela.debug_line': relocation 1243: invalid type
section [33] '.rela.debug_line': relocation 1244: invalid type
section [33] '.rela.debug_line': relocation 1245: invalid type
section [33] '.rela.debug_line': relocation 1246: invalid type
section [33] '.rela.debug_line': relocation 1247: invalid type
section [33] '.rela.debug_line': relocation 1248: invalid type
section [33] '.rela.debug_line': relocation 1249: invalid type
section [33] '.rela.debug_line': relocation 1250: invalid type
section [33] '.rela.debug_line': relocation 1251: invalid type
section [33] '.rela.debug_line': relocation 1252: invalid type
section [33] '.rela.debug_line': relocation 1253: invalid type
section [33] '.rela.debug_line': relocation 1254: invalid type
section [33] '.rela.debug_line': relocation 1255: invalid type
section [33] '.rela.debug_line': relocation 1256: invalid type
section [33] '.rela.debug_line': relocation 1257: invalid type
section [33] '.rela.debug_line': relocation 1258: invalid type
section [33] '.rela.debug_line': relocation 1259: invalid type
section [33] '.rela.debug_line': relocation 1260: invalid type
section [33] '.rela.debug_line': relocation 1261: invalid type
section [33] '.rela.debug_line': relocation 1262: invalid type
section [33] '.rela.debug_line': relocation 1263: invalid type
section [33] '.rela.debug_line': relocation 1264: invalid type
section [33] '.rela.debug_line': relocation 1265: invalid type
section [33] '.rela.debug_line': relocation 1266: invalid type
section [33] '.rela.debug_line': relocation 1267: invalid type
section [33] '.rela.debug_line': relocation 1268: invalid type
section [33] '.rela.debug_line': relocation 1269: invalid type
section [33] '.rela.debug_line': relocation 1270: invalid type
section [33] '.rela.debug_line': relocation 1271: invalid type
section [33] '.rela.debug_line': relocation 1272: invalid type
section [33] '.rela.debug_line': relocation 1273: invalid type
section [33] '.rela.debug_line': relocation 1274: invalid type
section [33] '.rela.debug_line': relocation 1275: invalid type
section [33] '.rela.debug_line': relocation 1276: invalid type
section [33] '.rela.debug_line': relocation 1277: invalid type
section [33] '.rela.debug_line': relocation 1278: invalid type
section [33] '.rela.debug_line': relocation 1279: invalid type
section [33] '.rela.debug_line': relocation 1280: invalid type
section [33] '.rela.debug_line': relocation 1281: invalid type
section [33] '.rela.debug_line': relocation 1282: invalid type
section [33] '.rela.debug_line': relocation 1283: invalid type
section [33] '.rela.debug_line': relocation 1284: invalid type
section [33] '.rela.debug_line': relocation 1285: invalid type
section [33] '.rela.debug_line': relocation 1286: invalid type
section [33] '.rela.debug_line': relocation 1287: invalid type
section [33] '.rela.debug_line': relocation 1288: invalid type
section [33] '.rela.debug_line': relocation 1289: invalid type
section [33] '.rela.debug_line': relocation 1290: invalid type
section [33] '.rela.debug_line': relocation 1291: invalid type
section [33] '.rela.debug_line': relocation 1292: invalid type
section [33] '.rela.debug_line': relocation 1293: invalid type
section [33] '.rela.debug_line': relocation 1294: invalid type
section [33] '.rela.debug_line': relocation 1295: invalid type
section [33] '.rela.debug_line': relocation 1296: invalid type
section [33] '.rela.debug_line': relocation 1297: invalid type
section [33] '.rela.debug_line': relocation 1298: invalid type
section [33] '.rela.debug_line': relocation 1299: invalid type
section [33] '.rela.debug_line': relocation 1300: invalid type
section [33] '.rela.debug_line': relocation 1301: invalid type
section [33] '.rela.debug_line': relocation 1302: invalid type
section [33] '.rela.debug_line': relocation 1303: invalid type
section [33] '.rela.debug_line': relocation 1304: invalid type
section [33] '.rela.debug_line': relocation 1305: invalid type
section [33] '.rela.debug_line': relocation 1306: invalid type
section [33] '.rela.debug_line': relocation 1307: invalid type
section [33] '.rela.debug_line': relocation 1308: invalid type
section [33] '.rela.debug_line': relocation 1309: invalid type
section [33] '.rela.debug_line': relocation 1310: invalid type
section [33] '.rela.debug_line': relocation 1311: invalid type
section [33] '.rela.debug_line': relocation 1312: invalid type
section [33] '.rela.debug_line': relocation 1313: invalid type
section [33] '.rela.debug_line': relocation 1314: invalid type
section [33] '.rela.debug_line': relocation 1315: invalid type
section [33] '.rela.debug_line': relocation 1316: invalid type
section [33] '.rela.debug_line': relocation 1317: invalid type
section [33] '.rela.debug_line': relocation 1318: invalid type
section [33] '.rela.debug_line': relocation 1319: invalid type
section [33] '.rela.debug_line': relocation 1320: invalid type
section [33] '.rela.debug_line': relocation 1321: invalid type
section [33] '.rela.debug_line': relocation 1322: invalid type
section [33] '.rela.debug_line': relocation 1323: invalid type
section [33] '.rela.debug_line': relocation 1324: invalid type
section [33] '.rela.debug_line': relocation 1325: invalid type
section [33] '.rela.debug_line': relocation 1326: invalid type
section [33] '.rela.debug_line': relocation 1327: invalid type
section [33] '.rela.debug_line': relocation 1328: invalid type
section [33] '.rela.debug_line': relocation 1329: invalid type
section [33] '.rela.debug_line': relocation 1330: invalid type
section [33] '.rela.debug_line': relocation 1331: invalid type
section [33] '.rela.debug_line': relocation 1332: invalid type
section [33] '.rela.debug_line': relocation 1333: invalid type
section [33] '.rela.debug_line': relocation 1334: invalid type
section [33] '.rela.debug_line': relocation 1335: invalid type
section [33] '.rela.debug_line': relocation 1336: invalid type
section [33] '.rela.debug_line': relocation 1337: invalid type
section [33] '.rela.debug_line': relocation 1338: invalid type
section [33] '.rela.debug_line': relocation 1339: invalid type
section [33] '.rela.debug_line': relocation 1340: invalid type
section [33] '.rela.debug_line': relocation 1341: invalid type
section [33] '.rela.debug_line': relocation 1342: invalid type
section [33] '.rela.debug_line': relocation 1343: invalid type
section [33] '.rela.debug_line': relocation 1344: invalid type
section [33] '.rela.debug_line': relocation 1345: invalid type
section [33] '.rela.debug_line': relocation 1346: invalid type
section [33] '.rela.debug_line': relocation 1347: invalid type
section [33] '.rela.debug_line': relocation 1348: invalid type
section [33] '.rela.debug_line': relocation 1349: invalid type
section [33] '.rela.debug_line': relocation 1350: invalid type
section [33] '.rela.debug_line': relocation 1351: invalid type
section [33] '.rela.debug_line': relocation 1352: invalid type
section [33] '.rela.debug_line': relocation 1353: invalid type
section [33] '.rela.debug_line': relocation 1354: invalid type
section [33] '.rela.debug_line': relocation 1355: invalid type
section [33] '.rela.debug_line': relocation 1356: invalid type
section [33] '.rela.debug_line': relocation 1357: invalid type
section [33] '.rela.debug_line': relocation 1358: invalid type
section [33] '.rela.debug_line': relocation 1359: invalid type
section [33] '.rela.debug_line': relocation 1360: invalid type
section [33] '.rela.debug_line': relocation 1361: invalid type
section [33] '.rela.debug_line': relocation 1362: invalid type
section [33] '.rela.debug_line': relocation 1363: invalid type
section [33] '.rela.debug_line': relocation 1364: invalid type
section [33] '.rela.debug_line': relocation 1365: invalid type
section [33] '.rela.debug_line': relocation 1366: invalid type
section [33] '.rela.debug_line': relocation 1367: invalid type
section [33] '.rela.debug_line': relocation 1368: invalid type
section [33] '.rela.debug_line': relocation 1369: invalid type
section [33] '.rela.debug_line': relocation 1370: invalid type
section [33] '.rela.debug_line': relocation 1371: invalid type
section [33] '.rela.debug_line': relocation 1372: invalid type
section [33] '.rela.debug_line': relocation 1373: invalid type
section [33] '.rela.debug_line': relocation 1374: invalid type
section [33] '.rela.debug_line': relocation 1375: invalid type
section [33] '.rela.debug_line': relocation 1376: invalid type
section [33] '.rela.debug_line': relocation 1377: invalid type
section [33] '.rela.debug_line': relocation 1378: invalid type
section [33] '.rela.debug_line': relocation 1379: invalid type
section [33] '.rela.debug_line': relocation 1380: invalid type
section [33] '.rela.debug_line': relocation 1381: invalid type
section [33] '.rela.debug_line': relocation 1382: invalid type
section [33] '.rela.debug_line': relocation 1383: invalid type
section [33] '.rela.debug_line': relocation 1384: invalid type
section [33] '.rela.debug_line': relocation 1385: invalid type
section [33] '.rela.debug_line': relocation 1386: invalid type
section [33] '.rela.debug_line': relocation 1387: invalid type
section [33] '.rela.debug_line': relocation 1388: invalid type
section [33] '.rela.debug_line': relocation 1389: invalid type
section [33] '.rela.debug_line': relocation 1390: invalid type
section [33] '.rela.debug_line': relocation 1391: invalid type
section [33] '.rela.debug_line': relocation 1392: invalid type
section [33] '.rela.debug_line': relocation 1393: invalid type
section [33] '.rela.debug_line': relocation 1394: invalid type
section [33] '.rela.debug_line': relocation 1395: invalid type
section [33] '.rela.debug_line': relocation 1396: invalid type
section [33] '.rela.debug_line': relocation 1397: invalid type
section [33] '.rela.debug_line': relocation 1398: invalid type
section [33] '.rela.debug_line': relocation 1399: invalid type
section [33] '.rela.debug_line': relocation 1400: invalid type
section [33] '.rela.debug_line': relocation 1401: invalid type
section [33] '.rela.debug_line': relocation 1402: invalid type
section [33] '.rela.debug_line': relocation 1403: invalid type
section [33] '.rela.debug_line': relocation 1404: invalid type
section [33] '.rela.debug_line': relocation 1405: invalid type
section [33] '.rela.debug_line': relocation 1406: invalid type
section [33] '.rela.debug_line': relocation 1407: invalid type
section [33] '.rela.debug_line': relocation 1408: invalid type
section [33] '.rela.debug_line': relocation 1409: invalid type
section [33] '.rela.debug_line': relocation 1410: invalid type
section [33] '.rela.debug_line': relocation 1411: invalid type
section [33] '.rela.debug_line': relocation 1412: invalid type
section [33] '.rela.debug_line': relocation 1413: invalid type
section [33] '.rela.debug_line': relocation 1414: invalid type
section [33] '.rela.debug_line': relocation 1415: invalid type
section [33] '.rela.debug_line': relocation 1416: invalid type
section [33] '.rela.debug_line': relocation 1417: invalid type
section [33] '.rela.debug_line': relocation 1418: invalid type
section [33] '.rela.debug_line': relocation 1419: invalid type
section [33] '.rela.debug_line': relocation 1420: invalid type
section [33] '.rela.debug_line': relocation 1421: invalid type
section [33] '.rela.debug_line': relocation 1422: invalid type
section [33] '.rela.debug_line': relocation 1423: invalid type
section [33] '.rela.debug_line': relocation 1424: invalid type
section [33] '.rela.debug_line': relocation 1425: invalid type
section [33] '.rela.debug_line': relocation 1426: invalid type
section [33] '.rela.debug_line': relocation 1427: invalid type
section [33] '.rela.debug_line': relocation 1428: invalid type
section [33] '.rela.debug_line': relocation 1429: invalid type
section [33] '.rela.debug_line': relocation 1430: invalid type
section [33] '.rela.debug_line': relocation 1431: invalid type
section [33] '.rela.debug_line': relocation 1432: invalid type
section [33] '.rela.debug_line': relocation 1433: invalid type
section [33] '.rela.debug_line': relocation 1434: invalid type
section [33] '.rela.debug_line': relocation 1435: invalid type
section [33] '.rela.debug_line': relocation 1436: invalid type
section [33] '.rela.debug_line': relocation 1437: invalid type
section [33] '.rela.debug_line': relocation 1438: invalid type
section [33] '.rela.debug_line': relocation 1439: invalid type
section [33] '.rela.debug_line': relocation 1440: invalid type
section [33] '.rela.debug_line': relocation 1441: invalid type
section [33] '.rela.debug_line': relocation 1442: invalid type
section [33] '.rela.debug_line': relocation 1443: invalid type
section [33] '.rela.debug_line': relocation 1444: invalid type
section [33] '.rela.debug_line': relocation 1445: invalid type
section [33] '.rela.debug_line': relocation 1446: invalid type
section [33] '.rela.debug_line': relocation 1447: invalid type
section [33] '.rela.debug_line': relocation 1448: invalid type
section [33] '.rela.debug_line': relocation 1449: invalid type
section [33] '.rela.debug_line': relocation 1450: invalid type
section [33] '.rela.debug_line': relocation 1451: invalid type
section [33] '.rela.debug_line': relocation 1452: invalid type
section [33] '.rela.debug_line': relocation 1453: invalid type
section [33] '.rela.debug_line': relocation 1454: invalid type
section [33] '.rela.debug_line': relocation 1455: invalid type
section [33] '.rela.debug_line': relocation 1456: invalid type
section [33] '.rela.debug_line': relocation 1457: invalid type
section [33] '.rela.debug_line': relocation 1458: invalid type
section [33] '.rela.debug_line': relocation 1459: invalid type
section [33] '.rela.debug_line': relocation 1460: invalid type
section [33] '.rela.debug_line': relocation 1461: invalid type
section [33] '.rela.debug_line': relocation 1462: invalid type
section [33] '.rela.debug_line': relocation 1463: invalid type
section [33] '.rela.debug_line': relocation 1464: invalid type
section [33] '.rela.debug_line': relocation 1465: invalid type
section [33] '.rela.debug_line': relocation 1466: invalid type
section [33] '.rela.debug_line': relocation 1467: invalid type
section [38] '.rela.xt.lit': relocation 0: invalid type
section [38] '.rela.xt.lit': relocation 1: invalid type
section [38] '.rela.xt.lit': relocation 2: invalid type
section [40] '.rela.xt.prop': relocation 0: invalid type
section [40] '.rela.xt.prop': relocation 1: invalid type
section [40] '.rela.xt.prop': relocation 2: invalid type
section [40] '.rela.xt.prop': relocation 3: invalid type
section [40] '.rela.xt.prop': relocation 4: invalid type
section [40] '.rela.xt.prop': relocation 5: invalid type
section [40] '.rela.xt.prop': relocation 6: invalid type
section [40] '.rela.xt.prop': relocation 7: invalid type
section [40] '.rela.xt.prop': relocation 8: invalid type
section [40] '.rela.xt.prop': relocation 9: invalid type
section [40] '.rela.xt.prop': relocation 10: invalid type
section [40] '.rela.xt.prop': relocation 11: invalid type
section [40] '.rela.xt.prop': relocation 12: invalid type
section [40] '.rela.xt.prop': relocation 13: invalid type
section [40] '.rela.xt.prop': relocation 14: invalid type
section [40] '.rela.xt.prop': relocation 15: invalid type
section [40] '.rela.xt.prop': relocation 16: invalid type
section [40] '.rela.xt.prop': relocation 17: invalid type
section [40] '.rela.xt.prop': relocation 18: invalid type
section [40] '.rela.xt.prop': relocation 19: invalid type
section [40] '.rela.xt.prop': relocation 20: invalid type
section [40] '.rela.xt.prop': relocation 21: invalid type
section [40] '.rela.xt.prop': relocation 22: invalid type
section [40] '.rela.xt.prop': relocation 23: invalid type
section [40] '.rela.xt.prop': relocation 24: invalid type
section [40] '.rela.xt.prop': relocation 25: invalid type
section [40] '.rela.xt.prop': relocation 26: invalid type
section [40] '.rela.xt.prop': relocation 27: invalid type
section [40] '.rela.xt.prop': relocation 28: invalid type
section [40] '.rela.xt.prop': relocation 29: invalid type
section [40] '.rela.xt.prop': relocation 30: invalid type
section [40] '.rela.xt.prop': relocation 31: invalid type
section [40] '.rela.xt.prop': relocation 32: invalid type
section [40] '.rela.xt.prop': relocation 33: invalid type
section [40] '.rela.xt.prop': relocation 34: invalid type
section [40] '.rela.xt.prop': relocation 35: invalid type
section [40] '.rela.xt.prop': relocation 36: invalid type
section [40] '.rela.xt.prop': relocation 37: invalid type
section [40] '.rela.xt.prop': relocation 38: invalid type
section [40] '.rela.xt.prop': relocation 39: invalid type
section [40] '.rela.xt.prop': relocation 40: invalid type
section [40] '.rela.xt.prop': relocation 41: invalid type
section [40] '.rela.xt.prop': relocation 42: invalid type
section [40] '.rela.xt.prop': relocation 43: invalid type
section [40] '.rela.xt.prop': relocation 44: invalid type
section [40] '.rela.xt.prop': relocation 45: invalid type
section [40] '.rela.xt.prop': relocation 46: invalid type
section [40] '.rela.xt.prop': relocation 47: invalid type
section [40] '.rela.xt.prop': relocation 48: invalid type
section [40] '.rela.xt.prop': relocation 49: invalid type
section [40] '.rela.xt.prop': relocation 50: invalid type
section [40] '.rela.xt.prop': relocation 51: invalid type
section [40] '.rela.xt.prop': relocation 52: invalid type
section [40] '.rela.xt.prop': relocation 53: invalid type
section [40] '.rela.xt.prop': relocation 54: invalid type
section [40] '.rela.xt.prop': relocation 55: invalid type
section [40] '.rela.xt.prop': relocation 56: invalid type
section [40] '.rela.xt.prop': relocation 57: invalid type
section [40] '.rela.xt.prop': relocation 58: invalid type
section [40] '.rela.xt.prop': relocation 59: invalid type
section [40] '.rela.xt.prop': relocation 60: invalid type
section [40] '.rela.xt.prop': relocation 61: invalid type
section [40] '.rela.xt.prop': relocation 62: invalid type
section [40] '.rela.xt.prop': relocation 63: invalid type
section [40] '.rela.xt.prop': relocation 64: invalid type
section [40] '.rela.xt.prop': relocation 65: invalid type
section [40] '.rela.xt.prop': relocation 66: invalid type
section [40] '.rela.xt.prop': relocation 67: invalid type
section [40] '.rela.xt.prop': relocation 68: invalid type
section [40] '.rela.xt.prop': relocation 69: invalid type
section [40] '.rela.xt.prop': relocation 70: invalid type
section [40] '.rela.xt.prop': relocation 71: invalid type
section [40] '.rela.xt.prop': relocation 72: invalid type
section [40] '.rela.xt.prop': relocation 73: invalid type
section [40] '.rela.xt.prop': relocation 74: invalid type
section [40] '.rela.xt.prop': relocation 75: invalid type
section [40] '.rela.xt.prop': relocation 76: invalid type
section [40] '.rela.xt.prop': relocation 77: invalid type
section [40] '.rela.xt.prop': relocation 78: invalid type
section [40] '.rela.xt.prop': relocation 79: invalid type
section [40] '.rela.xt.prop': relocation 80: invalid type
section [40] '.rela.xt.prop': relocation 81: invalid type
section [40] '.rela.xt.prop': relocation 82: invalid type
section [40] '.rela.xt.prop': relocation 83: invalid type
section [40] '.rela.xt.prop': relocation 84: invalid type
section [40] '.rela.xt.prop': relocation 85: invalid type
section [40] '.rela.xt.prop': relocation 86: invalid type
section [40] '.rela.xt.prop': relocation 87: invalid type
section [40] '.rela.xt.prop': relocation 88: invalid type
section [40] '.rela.xt.prop': relocation 89: invalid type
section [40] '.rela.xt.prop': relocation 90: invalid type
section [40] '.rela.xt.prop': relocation 91: invalid type
section [40] '.rela.xt.prop': relocation 92: invalid type
section [40] '.rela.xt.prop': relocation 93: invalid type
section [40] '.rela.xt.prop': relocation 94: invalid type
section [40] '.rela.xt.prop': relocation 95: invalid type
section [40] '.rela.xt.prop': relocation 96: invalid type
section [40] '.rela.xt.prop': relocation 97: invalid type
section [40] '.rela.xt.prop': relocation 98: invalid type
section [40] '.rela.xt.prop': relocation 99: invalid type
section [40] '.rela.xt.prop': relocation 100: invalid type
section [40] '.rela.xt.prop': relocation 101: invalid type
section [40] '.rela.xt.prop': relocation 102: invalid type
section [40] '.rela.xt.prop': relocation 103: invalid type
section [40] '.rela.xt.prop': relocation 104: invalid type
section [40] '.rela.xt.prop': relocation 105: invalid type
section [40] '.rela.xt.prop': relocation 106: invalid type
section [40] '.rela.xt.prop': relocation 107: invalid type
section [40] '.rela.xt.prop': relocation 108: invalid type
section [40] '.rela.xt.prop': relocation 109: invalid type
section [40] '.rela.xt.prop': relocation 110: invalid type
section [40] '.rela.xt.prop': relocation 111: invalid type
section [40] '.rela.xt.prop': relocation 112: invalid type
section [40] '.rela.xt.prop': relocation 113: invalid type
section [40] '.rela.xt.prop': relocation 114: invalid type
section [40] '.rela.xt.prop': relocation 115: invalid type
section [40] '.rela.xt.prop': relocation 116: invalid type
section [40] '.rela.xt.prop': relocation 117: invalid type
section [40] '.rela.xt.prop': relocation 118: invalid type
section [40] '.rela.xt.prop': relocation 119: invalid type
section [40] '.rela.xt.prop': relocation 120: invalid type
section [40] '.rela.xt.prop': relocation 121: invalid type
section [40] '.rela.xt.prop': relocation 122: invalid type
section [40] '.rela.xt.prop': relocation 123: invalid type
section [40] '.rela.xt.prop': relocation 124: invalid type
section [40] '.rela.xt.prop': relocation 125: invalid type
section [40] '.rela.xt.prop': relocation 126: invalid type
section [40] '.rela.xt.prop': relocation 127: invalid type
section [40] '.rela.xt.prop': relocation 128: invalid type
section [40] '.rela.xt.prop': relocation 129: invalid type
section [40] '.rela.xt.prop': relocation 130: invalid type
section [40] '.rela.xt.prop': relocation 131: invalid type
section [40] '.rela.xt.prop': relocation 132: invalid type
section [40] '.rela.xt.prop': relocation 133: invalid type
section [40] '.rela.xt.prop': relocation 134: invalid type
section [40] '.rela.xt.prop': relocation 135: invalid type
section [40] '.rela.xt.prop': relocation 136: invalid type
section [40] '.rela.xt.prop': relocation 137: invalid type
section [40] '.rela.xt.prop': relocation 138: invalid type
section [40] '.rela.xt.prop': relocation 139: invalid type
section [40] '.rela.xt.prop': relocation 140: invalid type
section [40] '.rela.xt.prop': relocation 141: invalid type
section [40] '.rela.xt.prop': relocation 142: invalid type
section [40] '.rela.xt.prop': relocation 143: invalid type
section [40] '.rela.xt.prop': relocation 144: invalid type
section [40] '.rela.xt.prop': relocation 145: invalid type
section [40] '.rela.xt.prop': relocation 146: invalid type
section [40] '.rela.xt.prop': relocation 147: invalid type
section [40] '.rela.xt.prop': relocation 148: invalid type
section [40] '.rela.xt.prop': relocation 149: invalid type
section [40] '.rela.xt.prop': relocation 150: invalid type
section [40] '.rela.xt.prop': relocation 151: invalid type
section [40] '.rela.xt.prop': relocation 152: invalid type
section [40] '.rela.xt.prop': relocation 153: invalid type
section [40] '.rela.xt.prop': relocation 154: invalid type
section [40] '.rela.xt.prop': relocation 155: invalid type
section [40] '.rela.xt.prop': relocation 156: invalid type
section [40] '.rela.xt.prop': relocation 157: invalid type
section [40] '.rela.xt.prop': relocation 158: invalid type
section [40] '.rela.xt.prop': relocation 159: invalid type
section [40] '.rela.xt.prop': relocation 160: invalid type
section [40] '.rela.xt.prop': relocation 161: invalid type
section [40] '.rela.xt.prop': relocation 162: invalid type
section [40] '.rela.xt.prop': relocation 163: invalid type
section [40] '.rela.xt.prop': relocation 164: invalid type
section [40] '.rela.xt.prop': relocation 165: invalid type
section [40] '.rela.xt.prop': relocation 166: invalid type
section [40] '.rela.xt.prop': relocation 167: invalid type
section [40] '.rela.xt.prop': relocation 168: invalid type
section [40] '.rela.xt.prop': relocation 169: invalid type
section [40] '.rela.xt.prop': relocation 170: invalid type
section [40] '.rela.xt.prop': relocation 171: invalid type
section [40] '.rela.xt.prop': relocation 172: invalid type
section [40] '.rela.xt.prop': relocation 173: invalid type
section [40] '.rela.xt.prop': relocation 174: invalid type
section [40] '.rela.xt.prop': relocation 175: invalid type
section [40] '.rela.xt.prop': relocation 176: invalid type
section [40] '.rela.xt.prop': relocation 177: invalid type
section [40] '.rela.xt.prop': relocation 178: invalid type
section [40] '.rela.xt.prop': relocation 179: invalid type
section [40] '.rela.xt.prop': relocation 180: invalid type
section [40] '.rela.xt.prop': relocation 181: invalid type
section [40] '.rela.xt.prop': relocation 182: invalid type
section [40] '.rela.xt.prop': relocation 183: invalid type
section [40] '.rela.xt.prop': relocation 184: invalid type
section [40] '.rela.xt.prop': relocation 185: invalid type
section [40] '.rela.xt.prop': relocation 186: invalid type
section [40] '.rela.xt.prop': relocation 187: invalid type
section [40] '.rela.xt.prop': relocation 188: invalid type
section [40] '.rela.xt.prop': relocation 189: invalid type
section [40] '.rela.xt.prop': relocation 190: invalid type
section [40] '.rela.xt.prop': relocation 191: invalid type
section [40] '.rela.xt.prop': relocation 192: invalid type
section [40] '.rela.xt.prop': relocation 193: invalid type
section [40] '.rela.xt.prop': relocation 194: invalid type
section [40] '.rela.xt.prop': relocation 195: invalid type
section [40] '.rela.xt.prop': relocation 196: invalid type
section [40] '.rela.xt.prop': relocation 197: invalid type
section [40] '.rela.xt.prop': relocation 198: invalid type
section [40] '.rela.xt.prop': relocation 199: invalid type
section [40] '.rela.xt.prop': relocation 200: invalid type
section [40] '.rela.xt.prop': relocation 201: invalid type
section [40] '.rela.xt.prop': relocation 202: invalid type
section [40] '.rela.xt.prop': relocation 203: invalid type
section [40] '.rela.xt.prop': relocation 204: invalid type
section [40] '.rela.xt.prop': relocation 205: invalid type
section [40] '.rela.xt.prop': relocation 206: invalid type
section [40] '.rela.xt.prop': relocation 207: invalid type
section [40] '.rela.xt.prop': relocation 208: invalid type
section [40] '.rela.xt.prop': relocation 209: invalid type
section [40] '.rela.xt.prop': relocation 210: invalid type
section [40] '.rela.xt.prop': relocation 211: invalid type
section [40] '.rela.xt.prop': relocation 212: invalid type
section [40] '.rela.xt.prop': relocation 213: invalid type
section [40] '.rela.xt.prop': relocation 214: invalid type
section [40] '.rela.xt.prop': relocation 215: invalid type
section [40] '.rela.xt.prop': relocation 216: invalid type
section [40] '.rela.xt.prop': relocation 217: invalid type
section [40] '.rela.xt.prop': relocation 218: invalid type
section [40] '.rela.xt.prop': relocation 219: invalid type
section [40] '.rela.xt.prop': relocation 220: invalid type
section [40] '.rela.xt.prop': relocation 221: invalid type
section [40] '.rela.xt.prop': relocation 222: invalid type
section [40] '.rela.xt.prop': relocation 223: invalid type
section [40] '.rela.xt.prop': relocation 224: invalid type
section [40] '.rela.xt.prop': relocation 225: invalid type
section [40] '.rela.xt.prop': relocation 226: invalid type
section [40] '.rela.xt.prop': relocation 227: invalid type
section [40] '.rela.xt.prop': relocation 228: invalid type
section [40] '.rela.xt.prop': relocation 229: invalid type
section [40] '.rela.xt.prop': relocation 230: invalid type
section [40] '.rela.xt.prop': relocation 231: invalid type
section [40] '.rela.xt.prop': relocation 232: invalid type
section [40] '.rela.xt.prop': relocation 233: invalid type
section [40] '.rela.xt.prop': relocation 234: invalid type
section [40] '.rela.xt.prop': relocation 235: invalid type
section [40] '.rela.xt.prop': relocation 236: invalid type
section [40] '.rela.xt.prop': relocation 237: invalid type
section [40] '.rela.xt.prop': relocation 238: invalid type
section [40] '.rela.xt.prop': relocation 239: invalid type
section [40] '.rela.xt.prop': relocation 240: invalid type
section [40] '.rela.xt.prop': relocation 241: invalid type
section [40] '.rela.xt.prop': relocation 242: invalid type
section [40] '.rela.xt.prop': relocation 243: invalid type
section [40] '.rela.xt.prop': relocation 244: invalid type
section [40] '.rela.xt.prop': relocation 245: invalid type
section [40] '.rela.xt.prop': relocation 246: invalid type
section [40] '.rela.xt.prop': relocation 247: invalid type
section [40] '.rela.xt.prop': relocation 248: invalid type
section [40] '.rela.xt.prop': relocation 249: invalid type
section [40] '.rela.xt.prop': relocation 250: invalid type
section [40] '.rela.xt.prop': relocation 251: invalid type
section [40] '.rela.xt.prop': relocation 252: invalid type
section [40] '.rela.xt.prop': relocation 253: invalid type
section [40] '.rela.xt.prop': relocation 254: invalid type
section [40] '.rela.xt.prop': relocation 255: invalid type
section [40] '.rela.xt.prop': relocation 256: invalid type
section [40] '.rela.xt.prop': relocation 257: invalid type
section [40] '.rela.xt.prop': relocation 258: invalid type
section [40] '.rela.xt.prop': relocation 259: invalid type
section [40] '.rela.xt.prop': relocation 260: invalid type
section [40] '.rela.xt.prop': relocation 261: invalid type
section [40] '.rela.xt.prop': relocation 262: invalid type
section [40] '.rela.xt.prop': relocation 263: invalid type
section [40] '.rela.xt.prop': relocation 264: invalid type
section [40] '.rela.xt.prop': relocation 265: invalid type
section [40] '.rela.xt.prop': relocation 266: invalid type
section [40] '.rela.xt.prop': relocation 267: invalid type
section [40] '.rela.xt.prop': relocation 268: invalid type
section [40] '.rela.xt.prop': relocation 269: invalid type
section [40] '.rela.xt.prop': relocation 270: invalid type
section [40] '.rela.xt.prop': relocation 271: invalid type
section [40] '.rela.xt.prop': relocation 272: invalid type
section [40] '.rela.xt.prop': relocation 273: invalid type
section [40] '.rela.xt.prop': relocation 274: invalid type
section [40] '.rela.xt.prop': relocation 275: invalid type
section [40] '.rela.xt.prop': relocation 276: invalid type
section [40] '.rela.xt.prop': relocation 277: invalid type
section [40] '.rela.xt.prop': relocation 278: invalid type
section [40] '.rela.xt.prop': relocation 279: invalid type
section [40] '.rela.xt.prop': relocation 280: invalid type
section [40] '.rela.xt.prop': relocation 281: invalid type
section [40] '.rela.xt.prop': relocation 282: invalid type
section [40] '.rela.xt.prop': relocation 283: invalid type
section [40] '.rela.xt.prop': relocation 284: invalid type
section [40] '.rela.xt.prop': relocation 285: invalid type
section [40] '.rela.xt.prop': relocation 286: invalid type
section [40] '.rela.xt.prop': relocation 287: invalid type
section [40] '.rela.xt.prop': relocation 288: invalid type
section [40] '.rela.xt.prop': relocation 289: invalid type
section [40] '.rela.xt.prop': relocation 290: invalid type
section [40] '.rela.xt.prop': relocation 291: invalid type
section [40] '.rela.xt.prop': relocation 292: invalid type
section [40] '.rela.xt.prop': relocation 293: invalid type
section [40] '.rela.xt.prop': relocation 294: invalid type
section [40] '.rela.xt.prop': relocation 295: invalid type
section [40] '.rela.xt.prop': relocation 296: invalid type
section [40] '.rela.xt.prop': relocation 297: invalid type
section [40] '.rela.xt.prop': relocation 298: invalid type
section [40] '.rela.xt.prop': relocation 299: invalid type
section [40] '.rela.xt.prop': relocation 300: invalid type
section [40] '.rela.xt.prop': relocation 301: invalid type
section [40] '.rela.xt.prop': relocation 302: invalid type
section [40] '.rela.xt.prop': relocation 303: invalid type
section [40] '.rela.xt.prop': relocation 304: invalid type
section [40] '.rela.xt.prop': relocation 305: invalid type
section [40] '.rela.xt.prop': relocation 306: invalid type
section [40] '.rela.xt.prop': relocation 307: invalid type
section [40] '.rela.xt.prop': relocation 308: invalid type
section [40] '.rela.xt.prop': relocation 309: invalid type
section [40] '.rela.xt.prop': relocation 310: invalid type
section [40] '.rela.xt.prop': relocation 311: invalid type
section [40] '.rela.xt.prop': relocation 312: invalid type
section [40] '.rela.xt.prop': relocation 313: invalid type
section [40] '.rela.xt.prop': relocation 314: invalid type
section [40] '.rela.xt.prop': relocation 315: invalid type
section [40] '.rela.xt.prop': relocation 316: invalid type
section [40] '.rela.xt.prop': relocation 317: invalid type
section [40] '.rela.xt.prop': relocation 318: invalid type
section [40] '.rela.xt.prop': relocation 319: invalid type
section [40] '.rela.xt.prop': relocation 320: invalid type
section [40] '.rela.xt.prop': relocation 321: invalid type
section [40] '.rela.xt.prop': relocation 322: invalid type
section [40] '.rela.xt.prop': relocation 323: invalid type
section [40] '.rela.xt.prop': relocation 324: invalid type
section [40] '.rela.xt.prop': relocation 325: invalid type
section [40] '.rela.xt.prop': relocation 326: invalid type
section [40] '.rela.xt.prop': relocation 327: invalid type
section [40] '.rela.xt.prop': relocation 328: invalid type
section [40] '.rela.xt.prop': relocation 329: invalid type
section [40] '.rela.xt.prop': relocation 330: invalid type
section [40] '.rela.xt.prop': relocation 331: invalid type
section [40] '.rela.xt.prop': relocation 332: invalid type
section [40] '.rela.xt.prop': relocation 333: invalid type
section [40] '.rela.xt.prop': relocation 334: invalid type
section [40] '.rela.xt.prop': relocation 335: invalid type
section [40] '.rela.xt.prop': relocation 336: invalid type
section [40] '.rela.xt.prop': relocation 337: invalid type
section [40] '.rela.xt.prop': relocation 338: invalid type
section [40] '.rela.xt.prop': relocation 339: invalid type
section [40] '.rela.xt.prop': relocation 340: invalid type
section [40] '.rela.xt.prop': relocation 341: invalid type
section [40] '.rela.xt.prop': relocation 342: invalid type
section [40] '.rela.xt.prop': relocation 343: invalid type
section [40] '.rela.xt.prop': relocation 344: invalid type
section [40] '.rela.xt.prop': relocation 345: invalid type
section [40] '.rela.xt.prop': relocation 346: invalid type
section [40] '.rela.xt.prop': relocation 347: invalid type
section [40] '.rela.xt.prop': relocation 348: invalid type
section [40] '.rela.xt.prop': relocation 349: invalid type
section [40] '.rela.xt.prop': relocation 350: invalid type
section [40] '.rela.xt.prop': relocation 351: invalid type
section [40] '.rela.xt.prop': relocation 352: invalid type
section [40] '.rela.xt.prop': relocation 353: invalid type
section [40] '.rela.xt.prop': relocation 354: invalid type
section [40] '.rela.xt.prop': relocation 355: invalid type
section [40] '.rela.xt.prop': relocation 356: invalid type
section [40] '.rela.xt.prop': relocation 357: invalid type
section [40] '.rela.xt.prop': relocation 358: invalid type
section [40] '.rela.xt.prop': relocation 359: invalid type
section [40] '.rela.xt.prop': relocation 360: invalid type
section [40] '.rela.xt.prop': relocation 361: invalid type
section [40] '.rela.xt.prop': relocation 362: invalid type
section [40] '.rela.xt.prop': relocation 363: invalid type
section [40] '.rela.xt.prop': relocation 364: invalid type
section [40] '.rela.xt.prop': relocation 365: invalid type
section [40] '.rela.xt.prop': relocation 366: invalid type
section [40] '.rela.xt.prop': relocation 367: invalid type
section [40] '.rela.xt.prop': relocation 368: invalid type
section [40] '.rela.xt.prop': relocation 369: invalid type
section [40] '.rela.xt.prop': relocation 370: invalid type
section [40] '.rela.xt.prop': relocation 371: invalid type
section [40] '.rela.xt.prop': relocation 372: invalid type
section [40] '.rela.xt.prop': relocation 373: invalid type
section [40] '.rela.xt.prop': relocation 374: invalid type
section [40] '.rela.xt.prop': relocation 375: invalid type
section [40] '.rela.xt.prop': relocation 376: invalid type
section [40] '.rela.xt.prop': relocation 377: invalid type
section [40] '.rela.xt.prop': relocation 378: invalid type
section [40] '.rela.xt.prop': relocation 379: invalid type
section [40] '.rela.xt.prop': relocation 380: invalid type
section [40] '.rela.xt.prop': relocation 381: invalid type
section [40] '.rela.xt.prop': relocation 382: invalid type
section [40] '.rela.xt.prop': relocation 383: invalid type
section [40] '.rela.xt.prop': relocation 384: invalid type
section [40] '.rela.xt.prop': relocation 385: invalid type
section [40] '.rela.xt.prop': relocation 386: invalid type
section [40] '.rela.xt.prop': relocation 387: invalid type
section [40] '.rela.xt.prop': relocation 388: invalid type
section [40] '.rela.xt.prop': relocation 389: invalid type
section [40] '.rela.xt.prop': relocation 390: invalid type
section [40] '.rela.xt.prop': relocation 391: invalid type
section [40] '.rela.xt.prop': relocation 392: invalid type
section [40] '.rela.xt.prop': relocation 393: invalid type
section [40] '.rela.xt.prop': relocation 394: invalid type
section [40] '.rela.xt.prop': relocation 395: invalid type
section [40] '.rela.xt.prop': relocation 396: invalid type
section [40] '.rela.xt.prop': relocation 397: invalid type
section [40] '.rela.xt.prop': relocation 398: invalid type
section [40] '.rela.xt.prop': relocation 399: invalid type
section [40] '.rela.xt.prop': relocation 400: invalid type
section [40] '.rela.xt.prop': relocation 401: invalid type
section [40] '.rela.xt.prop': relocation 402: invalid type
section [40] '.rela.xt.prop': relocation 403: invalid type
section [40] '.rela.xt.prop': relocation 404: invalid type
section [40] '.rela.xt.prop': relocation 405: invalid type
section [40] '.rela.xt.prop': relocation 406: invalid type
section [40] '.rela.xt.prop': relocation 407: invalid type
section [40] '.rela.xt.prop': relocation 408: invalid type
section [40] '.rela.xt.prop': relocation 409: invalid type
section [40] '.rela.xt.prop': relocation 410: invalid type
section [40] '.rela.xt.prop': relocation 411: invalid type
section [40] '.rela.xt.prop': relocation 412: invalid type
section [40] '.rela.xt.prop': relocation 413: invalid type
section [40] '.rela.xt.prop': relocation 414: invalid type
section [40] '.rela.xt.prop': relocation 415: invalid type
section [40] '.rela.xt.prop': relocation 416: invalid type
section [40] '.rela.xt.prop': relocation 417: invalid type
section [40] '.rela.xt.prop': relocation 418: invalid type
section [40] '.rela.xt.prop': relocation 419: invalid type
section [40] '.rela.xt.prop': relocation 420: invalid type
section [40] '.rela.xt.prop': relocation 421: invalid type
section [40] '.rela.xt.prop': relocation 422: invalid type
section [40] '.rela.xt.prop': relocation 423: invalid type
section [40] '.rela.xt.prop': relocation 424: invalid type
section [40] '.rela.xt.prop': relocation 425: invalid type
section [40] '.rela.xt.prop': relocation 426: invalid type
section [40] '.rela.xt.prop': relocation 427: invalid type
section [40] '.rela.xt.prop': relocation 428: invalid type
section [40] '.rela.xt.prop': relocation 429: invalid type
section [40] '.rela.xt.prop': relocation 430: invalid type
section [40] '.rela.xt.prop': relocation 431: invalid type
section [40] '.rela.xt.prop': relocation 432: invalid type
section [40] '.rela.xt.prop': relocation 433: invalid type
section [40] '.rela.xt.prop': relocation 434: invalid type
section [40] '.rela.xt.prop': relocation 435: invalid type
section [40] '.rela.xt.prop': relocation 436: invalid type
section [40] '.rela.xt.prop': relocation 437: invalid type
section [40] '.rela.xt.prop': relocation 438: invalid type
section [40] '.rela.xt.prop': relocation 439: invalid type
section [40] '.rela.xt.prop': relocation 440: invalid type
section [40] '.rela.xt.prop': relocation 441: invalid type
section [40] '.rela.xt.prop': relocation 442: invalid type
section [40] '.rela.xt.prop': relocation 443: invalid type
section [40] '.rela.xt.prop': relocation 444: invalid type
section [40] '.rela.xt.prop': relocation 445: invalid type
section [40] '.rela.xt.prop': relocation 446: invalid type
section [40] '.rela.xt.prop': relocation 447: invalid type
section [40] '.rela.xt.prop': relocation 448: invalid type
section [40] '.rela.xt.prop': relocation 449: invalid type
section [40] '.rela.xt.prop': relocation 450: invalid type
section [40] '.rela.xt.prop': relocation 451: invalid type
section [40] '.rela.xt.prop': relocation 452: invalid type
section [40] '.rela.xt.prop': relocation 453: invalid type
section [40] '.rela.xt.prop': relocation 454: invalid type
section [40] '.rela.xt.prop': relocation 455: invalid type
section [40] '.rela.xt.prop': relocation 456: invalid type
section [40] '.rela.xt.prop': relocation 457: invalid type
section [40] '.rela.xt.prop': relocation 458: invalid type
section [40] '.rela.xt.prop': relocation 459: invalid type
section [40] '.rela.xt.prop': relocation 460: invalid type
section [40] '.rela.xt.prop': relocation 461: invalid type
section [40] '.rela.xt.prop': relocation 462: invalid type
section [40] '.rela.xt.prop': relocation 463: invalid type
section [40] '.rela.xt.prop': relocation 464: invalid type
section [40] '.rela.xt.prop': relocation 465: invalid type
section [40] '.rela.xt.prop': relocation 466: invalid type
section [40] '.rela.xt.prop': relocation 467: invalid type
section [40] '.rela.xt.prop': relocation 468: invalid type
section [40] '.rela.xt.prop': relocation 469: invalid type
section [40] '.rela.xt.prop': relocation 470: invalid type
section [40] '.rela.xt.prop': relocation 471: invalid type
section [40] '.rela.xt.prop': relocation 472: invalid type
section [40] '.rela.xt.prop': relocation 473: invalid type
section [40] '.rela.xt.prop': relocation 474: invalid type
section [40] '.rela.xt.prop': relocation 475: invalid type
section [40] '.rela.xt.prop': relocation 476: invalid type
section [40] '.rela.xt.prop': relocation 477: invalid type
section [40] '.rela.xt.prop': relocation 478: invalid type
section [40] '.rela.xt.prop': relocation 479: invalid type
section [40] '.rela.xt.prop': relocation 480: invalid type
section [40] '.rela.xt.prop': relocation 481: invalid type
section [40] '.rela.xt.prop': relocation 482: invalid type
section [40] '.rela.xt.prop': relocation 483: invalid type
section [40] '.rela.xt.prop': relocation 484: invalid type
section [40] '.rela.xt.prop': relocation 485: invalid type
section [40] '.rela.xt.prop': relocation 486: invalid type
*** failure in /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/strip.o
invalid machine flags: 0x300
section [ 6] '.rela.dyn': relocation 0: invalid type
section [ 6] '.rela.dyn': relocation 0: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 1: invalid type
section [ 6] '.rela.dyn': relocation 1: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 2: invalid type
section [ 6] '.rela.dyn': relocation 2: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 3: invalid type
section [ 6] '.rela.dyn': relocation 3: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 4: invalid type
section [ 6] '.rela.dyn': relocation 4: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 5: invalid type
section [ 6] '.rela.dyn': relocation 5: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 6: invalid type
section [ 6] '.rela.dyn': relocation 6: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 7: invalid type
section [ 6] '.rela.dyn': relocation 7: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 8: invalid type
section [ 6] '.rela.dyn': relocation 8: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 9: invalid type
section [ 6] '.rela.dyn': relocation 9: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 10: invalid type
section [ 6] '.rela.dyn': relocation 10: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 11: invalid type
section [ 6] '.rela.dyn': relocation 11: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 12: invalid type
section [ 6] '.rela.dyn': relocation 12: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 13: invalid type
section [ 6] '.rela.dyn': relocation 13: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 14: invalid type
section [ 6] '.rela.dyn': relocation 14: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 15: invalid type
section [ 6] '.rela.dyn': relocation 15: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 16: invalid type
section [ 6] '.rela.dyn': relocation 16: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 17: invalid type
section [ 6] '.rela.dyn': relocation 17: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 18: invalid type
section [ 6] '.rela.dyn': relocation 18: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 19: invalid type
section [ 6] '.rela.dyn': relocation 19: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 20: invalid type
section [ 6] '.rela.dyn': relocation 20: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 21: invalid type
section [ 6] '.rela.dyn': relocation 21: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 22: invalid type
section [ 6] '.rela.dyn': relocation 22: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 23: invalid type
section [ 6] '.rela.dyn': relocation 23: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 24: invalid type
section [ 6] '.rela.dyn': relocation 24: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 25: invalid type
section [ 6] '.rela.dyn': relocation 25: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 26: invalid type
section [ 6] '.rela.dyn': relocation 26: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 27: invalid type
section [ 6] '.rela.dyn': relocation 27: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 28: invalid type
section [ 6] '.rela.dyn': relocation 28: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 29: invalid type
section [ 6] '.rela.dyn': relocation 29: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 30: invalid type
section [ 6] '.rela.dyn': relocation 30: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 31: invalid type
section [ 6] '.rela.dyn': relocation 31: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 32: invalid type
section [ 6] '.rela.dyn': relocation 32: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 33: invalid type
section [ 6] '.rela.dyn': relocation 33: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 34: invalid type
section [ 6] '.rela.dyn': relocation 34: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 35: invalid type
section [ 6] '.rela.dyn': relocation 35: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 36: invalid type
section [ 6] '.rela.dyn': relocation 36: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 37: invalid type
section [ 6] '.rela.dyn': relocation 37: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 38: invalid type
section [ 6] '.rela.dyn': relocation 38: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 39: invalid type
section [ 6] '.rela.dyn': relocation 39: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 40: invalid type
section [ 6] '.rela.dyn': relocation 40: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 41: invalid type
section [ 6] '.rela.dyn': relocation 41: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 42: invalid type
section [ 6] '.rela.dyn': relocation 42: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 43: invalid type
section [ 6] '.rela.dyn': relocation 43: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 44: invalid type
section [ 6] '.rela.dyn': relocation 44: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 45: invalid type
section [ 6] '.rela.dyn': relocation 45: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 46: invalid type
section [ 6] '.rela.dyn': relocation 46: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 47: invalid type
section [ 6] '.rela.dyn': relocation 47: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 48: invalid type
section [ 6] '.rela.dyn': relocation 48: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 49: invalid type
section [ 6] '.rela.dyn': relocation 49: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 50: invalid type
section [ 6] '.rela.dyn': relocation 50: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 51: invalid type
section [ 6] '.rela.dyn': relocation 51: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 52: invalid type
section [ 6] '.rela.dyn': relocation 52: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 53: invalid type
section [ 6] '.rela.dyn': relocation 53: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 54: invalid type
section [ 6] '.rela.dyn': relocation 54: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 55: invalid type
section [ 6] '.rela.dyn': relocation 55: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 56: invalid type
section [ 6] '.rela.dyn': relocation 56: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 57: invalid type
section [ 6] '.rela.dyn': relocation 57: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 58: invalid type
section [ 6] '.rela.dyn': relocation 58: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 59: invalid type
section [ 6] '.rela.dyn': relocation 59: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 60: invalid type
section [ 6] '.rela.dyn': relocation 60: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 61: invalid type
section [ 6] '.rela.dyn': relocation 61: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 62: invalid type
section [ 6] '.rela.dyn': relocation 62: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 63: invalid type
section [ 6] '.rela.dyn': relocation 63: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 64: invalid type
section [ 6] '.rela.dyn': relocation 64: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 65: invalid type
section [ 6] '.rela.dyn': relocation 65: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 66: invalid type
section [ 6] '.rela.dyn': relocation 66: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 67: invalid type
section [ 6] '.rela.dyn': relocation 67: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 68: invalid type
section [ 6] '.rela.dyn': relocation 68: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 69: invalid type
section [ 6] '.rela.dyn': relocation 69: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 70: invalid type
section [ 6] '.rela.dyn': relocation 70: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 71: invalid type
section [ 6] '.rela.dyn': relocation 71: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 72: invalid type
section [ 6] '.rela.dyn': relocation 72: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 73: invalid type
section [ 6] '.rela.dyn': relocation 73: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 74: invalid type
section [ 6] '.rela.dyn': relocation 74: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 75: invalid type
section [ 6] '.rela.dyn': relocation 75: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 76: invalid type
section [ 6] '.rela.dyn': relocation 76: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 77: invalid type
section [ 6] '.rela.dyn': relocation 77: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 78: invalid type
section [ 6] '.rela.dyn': relocation 78: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 79: invalid type
section [ 6] '.rela.dyn': relocation 79: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 80: invalid type
section [ 6] '.rela.dyn': relocation 80: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 81: invalid type
section [ 6] '.rela.dyn': relocation 81: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 82: invalid type
section [ 6] '.rela.dyn': relocation 82: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 83: invalid type
section [ 6] '.rela.dyn': relocation 83: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 84: invalid type
section [ 6] '.rela.dyn': relocation 84: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 85: invalid type
section [ 6] '.rela.dyn': relocation 85: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 86: invalid type
section [ 6] '.rela.dyn': relocation 86: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 87: invalid type
section [ 6] '.rela.dyn': relocation 87: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 88: invalid type
section [ 6] '.rela.dyn': relocation 88: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 89: invalid type
section [ 6] '.rela.dyn': relocation 89: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 90: invalid type
section [ 6] '.rela.dyn': relocation 90: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 91: invalid type
section [ 6] '.rela.dyn': relocation 91: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 92: invalid type
section [ 6] '.rela.dyn': relocation 92: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 93: invalid type
section [ 6] '.rela.dyn': relocation 93: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 94: invalid type
section [ 6] '.rela.dyn': relocation 94: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 95: invalid type
section [ 6] '.rela.dyn': relocation 95: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 96: invalid type
section [ 6] '.rela.dyn': relocation 96: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 97: invalid type
section [ 6] '.rela.dyn': relocation 97: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 98: invalid type
section [ 6] '.rela.dyn': relocation 98: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 99: invalid type
section [ 6] '.rela.dyn': relocation 99: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 100: invalid type
section [ 6] '.rela.dyn': relocation 100: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 101: invalid type
section [ 6] '.rela.dyn': relocation 101: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 102: invalid type
section [ 6] '.rela.dyn': relocation 102: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 103: invalid type
section [ 6] '.rela.dyn': relocation 103: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 104: invalid type
section [ 6] '.rela.dyn': relocation 104: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 105: invalid type
section [ 6] '.rela.dyn': relocation 105: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 106: invalid type
section [ 6] '.rela.dyn': relocation 106: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 107: invalid type
section [ 6] '.rela.dyn': relocation 107: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 108: invalid type
section [ 6] '.rela.dyn': relocation 108: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 109: invalid type
section [ 6] '.rela.dyn': relocation 109: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 110: invalid type
section [ 6] '.rela.dyn': relocation 110: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 111: invalid type
section [ 6] '.rela.dyn': relocation 111: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 112: invalid type
section [ 6] '.rela.dyn': relocation 112: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 113: invalid type
section [ 6] '.rela.dyn': relocation 113: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 114: invalid type
section [ 6] '.rela.dyn': relocation 114: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 115: invalid type
section [ 6] '.rela.dyn': relocation 115: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 116: invalid type
section [ 6] '.rela.dyn': relocation 116: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 117: invalid type
section [ 6] '.rela.dyn': relocation 117: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 118: invalid type
section [ 6] '.rela.dyn': relocation 118: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 119: invalid type
section [ 6] '.rela.dyn': relocation 119: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 120: invalid type
section [ 6] '.rela.dyn': relocation 120: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 121: invalid type
section [ 6] '.rela.dyn': relocation 121: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 122: invalid type
section [ 6] '.rela.dyn': relocation 122: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 123: invalid type
section [ 6] '.rela.dyn': relocation 123: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 124: invalid type
section [ 6] '.rela.dyn': relocation 124: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 125: invalid type
section [ 6] '.rela.dyn': relocation 125: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 126: invalid type
section [ 6] '.rela.dyn': relocation 126: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 127: invalid type
section [ 6] '.rela.dyn': relocation 127: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 128: invalid type
section [ 6] '.rela.dyn': relocation 128: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 129: invalid type
section [ 6] '.rela.dyn': relocation 129: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 130: invalid type
section [ 6] '.rela.dyn': relocation 130: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 131: invalid type
section [ 6] '.rela.dyn': relocation 131: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 132: invalid type
section [ 6] '.rela.dyn': relocation 132: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 133: invalid type
section [ 6] '.rela.dyn': relocation 133: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 134: invalid type
section [ 6] '.rela.dyn': relocation 134: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 135: invalid type
section [ 6] '.rela.dyn': relocation 135: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 136: invalid type
section [ 6] '.rela.dyn': relocation 136: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 137: invalid type
section [ 6] '.rela.dyn': relocation 137: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 138: invalid type
section [ 6] '.rela.dyn': relocation 138: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 139: invalid type
section [ 6] '.rela.dyn': relocation 139: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 140: invalid type
section [ 6] '.rela.dyn': relocation 140: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 141: invalid type
section [ 6] '.rela.dyn': relocation 141: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 142: invalid type
section [ 6] '.rela.dyn': relocation 142: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 143: invalid type
section [ 6] '.rela.dyn': relocation 143: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 144: invalid type
section [ 6] '.rela.dyn': relocation 144: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 145: invalid type
section [ 6] '.rela.dyn': relocation 145: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 146: invalid type
section [ 6] '.rela.dyn': relocation 146: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 147: invalid type
section [ 6] '.rela.dyn': relocation 147: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 148: invalid type
section [ 6] '.rela.dyn': relocation 148: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 149: invalid type
section [ 6] '.rela.dyn': relocation 149: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 150: invalid type
section [ 6] '.rela.dyn': relocation 150: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 151: invalid type
section [ 6] '.rela.dyn': relocation 151: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 152: invalid type
section [ 6] '.rela.dyn': relocation 152: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 153: invalid type
section [ 6] '.rela.dyn': relocation 153: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 154: invalid type
section [ 6] '.rela.dyn': relocation 154: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 155: invalid type
section [ 6] '.rela.dyn': relocation 155: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 156: invalid type
section [ 6] '.rela.dyn': relocation 156: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 157: invalid type
section [ 6] '.rela.dyn': relocation 157: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 158: invalid type
section [ 6] '.rela.dyn': relocation 158: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 159: invalid type
section [ 6] '.rela.dyn': relocation 159: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 160: invalid type
section [ 6] '.rela.dyn': relocation 160: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 161: invalid type
section [ 6] '.rela.dyn': relocation 161: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 162: invalid type
section [ 6] '.rela.dyn': relocation 162: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 163: invalid type
section [ 6] '.rela.dyn': relocation 163: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 164: invalid type
section [ 6] '.rela.dyn': relocation 164: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 165: invalid type
section [ 6] '.rela.dyn': relocation 165: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 166: invalid type
section [ 6] '.rela.dyn': relocation 166: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 167: invalid type
section [ 6] '.rela.dyn': relocation 167: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 168: invalid type
section [ 6] '.rela.dyn': relocation 168: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 169: invalid type
section [ 6] '.rela.dyn': relocation 169: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 170: invalid type
section [ 6] '.rela.dyn': relocation 170: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 171: invalid type
section [ 6] '.rela.dyn': relocation 171: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 172: invalid type
section [ 6] '.rela.dyn': relocation 172: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 173: invalid type
section [ 6] '.rela.dyn': relocation 173: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 174: invalid type
section [ 6] '.rela.dyn': relocation 174: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 175: invalid type
section [ 6] '.rela.dyn': relocation 175: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 176: invalid type
section [ 6] '.rela.dyn': relocation 176: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 177: invalid type
section [ 6] '.rela.dyn': relocation 177: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 178: invalid type
section [ 6] '.rela.dyn': relocation 178: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 179: invalid type
section [ 6] '.rela.dyn': relocation 179: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 180: invalid type
section [ 6] '.rela.dyn': relocation 180: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 181: invalid type
section [ 6] '.rela.dyn': relocation 181: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 182: invalid type
section [ 6] '.rela.dyn': relocation 182: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 183: invalid type
section [ 6] '.rela.dyn': relocation 183: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 184: invalid type
section [ 6] '.rela.dyn': relocation 184: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 185: invalid type
section [ 6] '.rela.dyn': relocation 185: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 186: invalid type
section [ 6] '.rela.dyn': relocation 186: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 187: invalid type
section [ 6] '.rela.dyn': relocation 187: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 188: invalid type
section [ 6] '.rela.dyn': relocation 188: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 189: invalid type
section [ 6] '.rela.dyn': relocation 189: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 190: invalid type
section [ 6] '.rela.dyn': relocation 191: invalid type
section [ 6] '.rela.dyn': relocation 192: invalid type
section [ 6] '.rela.dyn': relocation 193: invalid type
section [ 6] '.rela.dyn': relocation 194: invalid type
section [ 6] '.rela.dyn': relocation 195: invalid type
section [ 6] '.rela.dyn': relocation 196: invalid type
section [ 6] '.rela.dyn': relocation 197: invalid type
section [ 6] '.rela.dyn': relocation 198: invalid type
section [ 6] '.rela.dyn': relocation 199: invalid type
section [ 6] '.rela.dyn': relocation 200: invalid type
section [ 6] '.rela.dyn': relocation 201: invalid type
section [ 6] '.rela.dyn': relocation 202: invalid type
section [ 6] '.rela.dyn': relocation 203: invalid type
section [ 6] '.rela.dyn': relocation 204: invalid type
section [ 6] '.rela.dyn': relocation 205: invalid type
section [ 6] '.rela.dyn': relocation 206: invalid type
section [ 6] '.rela.dyn': relocation 207: invalid type
section [ 6] '.rela.dyn': relocation 208: invalid type
section [ 6] '.rela.dyn': relocation 209: invalid type
section [ 6] '.rela.dyn': relocation 210: invalid type
section [ 6] '.rela.dyn': relocation 211: invalid type
section [ 6] '.rela.dyn': relocation 212: invalid type
section [ 6] '.rela.dyn': relocation 213: invalid type
section [ 6] '.rela.dyn': relocation 214: invalid type
section [ 6] '.rela.dyn': relocation 215: invalid type
section [ 6] '.rela.dyn': relocation 216: invalid type
section [ 6] '.rela.dyn': relocation 217: invalid type
section [ 6] '.rela.dyn': relocation 218: invalid type
section [ 6] '.rela.dyn': relocation 219: invalid type
section [ 6] '.rela.dyn': relocation 220: invalid type
section [ 6] '.rela.dyn': relocation 221: invalid type
section [ 6] '.rela.dyn': relocation 222: invalid type
section [ 6] '.rela.dyn': relocation 223: invalid type
section [ 6] '.rela.dyn': relocation 224: invalid type
section [ 6] '.rela.dyn': relocation 225: invalid type
section [ 6] '.rela.dyn': relocation 226: invalid type
section [ 6] '.rela.dyn': relocation 227: invalid type
section [ 6] '.rela.dyn': relocation 228: invalid type
section [ 6] '.rela.dyn': relocation 229: invalid type
section [ 6] '.rela.dyn': relocation 230: invalid type
section [ 6] '.rela.dyn': relocation 231: invalid type
section [ 6] '.rela.dyn': relocation 232: invalid type
section [ 6] '.rela.dyn': relocation 233: invalid type
section [ 6] '.rela.dyn': relocation 234: invalid type
section [ 6] '.rela.dyn': relocation 235: invalid type
section [ 6] '.rela.dyn': relocation 236: invalid type
section [ 6] '.rela.dyn': relocation 237: invalid type
section [ 6] '.rela.dyn': relocation 238: invalid type
section [ 6] '.rela.dyn': relocation 239: invalid type
section [ 6] '.rela.dyn': relocation 240: invalid type
section [ 6] '.rela.dyn': relocation 241: invalid type
section [ 6] '.rela.dyn': relocation 241: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 242: invalid type
section [ 6] '.rela.dyn': relocation 242: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 243: invalid type
section [ 6] '.rela.dyn': relocation 243: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 244: invalid type
section [ 6] '.rela.dyn': relocation 244: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 245: invalid type
section [ 6] '.rela.dyn': relocation 245: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 246: invalid type
section [ 6] '.rela.dyn': relocation 246: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 247: invalid type
section [ 6] '.rela.dyn': relocation 247: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 248: invalid type
section [ 6] '.rela.dyn': relocation 248: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 249: invalid type
section [ 6] '.rela.dyn': relocation 249: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 250: invalid type
section [ 6] '.rela.dyn': relocation 250: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 251: invalid type
section [ 6] '.rela.dyn': relocation 251: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 252: invalid type
section [ 6] '.rela.dyn': relocation 252: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 253: invalid type
section [ 6] '.rela.dyn': relocation 253: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 254: invalid type
section [ 6] '.rela.dyn': relocation 254: read-only section modified but text relocation flag not set
section [ 6] '.rela.dyn': relocation 255: invalid type
section [ 6] '.rela.dyn': relocation 255: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 0: invalid type
section [ 7] '.rela.plt': relocation 0: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 1: invalid type
section [ 7] '.rela.plt': relocation 1: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 2: invalid type
section [ 7] '.rela.plt': relocation 2: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 3: invalid type
section [ 7] '.rela.plt': relocation 3: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 4: invalid type
section [ 7] '.rela.plt': relocation 4: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 5: invalid type
section [ 7] '.rela.plt': relocation 5: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 6: invalid type
section [ 7] '.rela.plt': relocation 6: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 7: invalid type
section [ 7] '.rela.plt': relocation 7: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 8: invalid type
section [ 7] '.rela.plt': relocation 8: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 9: invalid type
section [ 7] '.rela.plt': relocation 9: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 10: invalid type
section [ 7] '.rela.plt': relocation 10: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 11: invalid type
section [ 7] '.rela.plt': relocation 11: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 12: invalid type
section [ 7] '.rela.plt': relocation 12: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 13: invalid type
section [ 7] '.rela.plt': relocation 13: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 14: invalid type
section [ 7] '.rela.plt': relocation 14: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 15: invalid type
section [ 7] '.rela.plt': relocation 15: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 16: invalid type
section [ 7] '.rela.plt': relocation 16: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 17: invalid type
section [ 7] '.rela.plt': relocation 17: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 18: invalid type
section [ 7] '.rela.plt': relocation 18: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 19: invalid type
section [ 7] '.rela.plt': relocation 19: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 20: invalid type
section [ 7] '.rela.plt': relocation 20: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 21: invalid type
section [ 7] '.rela.plt': relocation 21: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 22: invalid type
section [ 7] '.rela.plt': relocation 22: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 23: invalid type
section [ 7] '.rela.plt': relocation 23: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 24: invalid type
section [ 7] '.rela.plt': relocation 24: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 25: invalid type
section [ 7] '.rela.plt': relocation 25: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 26: invalid type
section [ 7] '.rela.plt': relocation 26: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 27: invalid type
section [ 7] '.rela.plt': relocation 27: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 28: invalid type
section [ 7] '.rela.plt': relocation 28: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 29: invalid type
section [ 7] '.rela.plt': relocation 29: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 30: invalid type
section [ 7] '.rela.plt': relocation 30: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 31: invalid type
section [ 7] '.rela.plt': relocation 31: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 32: invalid type
section [ 7] '.rela.plt': relocation 32: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 33: invalid type
section [ 7] '.rela.plt': relocation 33: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 34: invalid type
section [ 7] '.rela.plt': relocation 34: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 35: invalid type
section [ 7] '.rela.plt': relocation 35: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 36: invalid type
section [ 7] '.rela.plt': relocation 36: read-only section modified but text relocation flag not set
section [ 7] '.rela.plt': relocation 37: invalid type
section [ 7] '.rela.plt': relocation 37: read-only section modified but text relocation flag not set
section [18] '.dynamic': entry 17: unknown tag
section [18] '.dynamic': entry 18: unknown tag
section [35] '.symtab': _GLOBAL_OFFSET_TABLE_ symbol value 0x2724 does not match .got section address 0x14108
*** failure in /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/libelf/libelf.so
invalid machine flags: 0x300
section [ 7] '.rela.dyn': relocation 0: invalid type
section [ 7] '.rela.dyn': relocation 0: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1: invalid type
section [ 7] '.rela.dyn': relocation 1: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 2: invalid type
section [ 7] '.rela.dyn': relocation 2: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 3: invalid type
section [ 7] '.rela.dyn': relocation 3: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 4: invalid type
section [ 7] '.rela.dyn': relocation 4: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 5: invalid type
section [ 7] '.rela.dyn': relocation 5: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 6: invalid type
section [ 7] '.rela.dyn': relocation 6: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 7: invalid type
section [ 7] '.rela.dyn': relocation 7: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 8: invalid type
section [ 7] '.rela.dyn': relocation 8: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 9: invalid type
section [ 7] '.rela.dyn': relocation 9: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 10: invalid type
section [ 7] '.rela.dyn': relocation 10: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 11: invalid type
section [ 7] '.rela.dyn': relocation 11: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 12: invalid type
section [ 7] '.rela.dyn': relocation 12: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 13: invalid type
section [ 7] '.rela.dyn': relocation 13: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 14: invalid type
section [ 7] '.rela.dyn': relocation 14: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 15: invalid type
section [ 7] '.rela.dyn': relocation 15: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 16: invalid type
section [ 7] '.rela.dyn': relocation 16: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 17: invalid type
section [ 7] '.rela.dyn': relocation 17: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 18: invalid type
section [ 7] '.rela.dyn': relocation 18: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 19: invalid type
section [ 7] '.rela.dyn': relocation 19: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 20: invalid type
section [ 7] '.rela.dyn': relocation 20: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 21: invalid type
section [ 7] '.rela.dyn': relocation 21: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 22: invalid type
section [ 7] '.rela.dyn': relocation 22: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 23: invalid type
section [ 7] '.rela.dyn': relocation 23: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 24: invalid type
section [ 7] '.rela.dyn': relocation 24: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 25: invalid type
section [ 7] '.rela.dyn': relocation 25: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 26: invalid type
section [ 7] '.rela.dyn': relocation 26: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 27: invalid type
section [ 7] '.rela.dyn': relocation 27: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 28: invalid type
section [ 7] '.rela.dyn': relocation 28: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 29: invalid type
section [ 7] '.rela.dyn': relocation 29: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 30: invalid type
section [ 7] '.rela.dyn': relocation 30: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 31: invalid type
section [ 7] '.rela.dyn': relocation 31: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 32: invalid type
section [ 7] '.rela.dyn': relocation 32: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 33: invalid type
section [ 7] '.rela.dyn': relocation 33: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 34: invalid type
section [ 7] '.rela.dyn': relocation 34: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 35: invalid type
section [ 7] '.rela.dyn': relocation 35: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 36: invalid type
section [ 7] '.rela.dyn': relocation 36: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 37: invalid type
section [ 7] '.rela.dyn': relocation 37: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 38: invalid type
section [ 7] '.rela.dyn': relocation 38: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 39: invalid type
section [ 7] '.rela.dyn': relocation 39: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 40: invalid type
section [ 7] '.rela.dyn': relocation 40: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 41: invalid type
section [ 7] '.rela.dyn': relocation 41: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 42: invalid type
section [ 7] '.rela.dyn': relocation 42: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 43: invalid type
section [ 7] '.rela.dyn': relocation 43: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 44: invalid type
section [ 7] '.rela.dyn': relocation 44: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 45: invalid type
section [ 7] '.rela.dyn': relocation 45: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 46: invalid type
section [ 7] '.rela.dyn': relocation 46: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 47: invalid type
section [ 7] '.rela.dyn': relocation 47: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 48: invalid type
section [ 7] '.rela.dyn': relocation 48: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 49: invalid type
section [ 7] '.rela.dyn': relocation 49: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 50: invalid type
section [ 7] '.rela.dyn': relocation 50: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 51: invalid type
section [ 7] '.rela.dyn': relocation 51: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 52: invalid type
section [ 7] '.rela.dyn': relocation 52: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 53: invalid type
section [ 7] '.rela.dyn': relocation 53: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 54: invalid type
section [ 7] '.rela.dyn': relocation 54: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 55: invalid type
section [ 7] '.rela.dyn': relocation 55: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 56: invalid type
section [ 7] '.rela.dyn': relocation 56: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 57: invalid type
section [ 7] '.rela.dyn': relocation 57: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 58: invalid type
section [ 7] '.rela.dyn': relocation 58: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 59: invalid type
section [ 7] '.rela.dyn': relocation 59: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 60: invalid type
section [ 7] '.rela.dyn': relocation 60: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 61: invalid type
section [ 7] '.rela.dyn': relocation 61: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 62: invalid type
section [ 7] '.rela.dyn': relocation 62: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 63: invalid type
section [ 7] '.rela.dyn': relocation 63: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 64: invalid type
section [ 7] '.rela.dyn': relocation 64: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 65: invalid type
section [ 7] '.rela.dyn': relocation 65: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 66: invalid type
section [ 7] '.rela.dyn': relocation 66: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 67: invalid type
section [ 7] '.rela.dyn': relocation 67: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 68: invalid type
section [ 7] '.rela.dyn': relocation 68: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 69: invalid type
section [ 7] '.rela.dyn': relocation 69: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 70: invalid type
section [ 7] '.rela.dyn': relocation 70: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 71: invalid type
section [ 7] '.rela.dyn': relocation 71: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 72: invalid type
section [ 7] '.rela.dyn': relocation 72: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 73: invalid type
section [ 7] '.rela.dyn': relocation 73: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 74: invalid type
section [ 7] '.rela.dyn': relocation 74: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 75: invalid type
section [ 7] '.rela.dyn': relocation 75: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 76: invalid type
section [ 7] '.rela.dyn': relocation 76: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 77: invalid type
section [ 7] '.rela.dyn': relocation 77: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 78: invalid type
section [ 7] '.rela.dyn': relocation 78: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 79: invalid type
section [ 7] '.rela.dyn': relocation 79: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 80: invalid type
section [ 7] '.rela.dyn': relocation 80: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 81: invalid type
section [ 7] '.rela.dyn': relocation 81: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 82: invalid type
section [ 7] '.rela.dyn': relocation 82: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 83: invalid type
section [ 7] '.rela.dyn': relocation 83: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 84: invalid type
section [ 7] '.rela.dyn': relocation 84: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 85: invalid type
section [ 7] '.rela.dyn': relocation 85: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 86: invalid type
section [ 7] '.rela.dyn': relocation 86: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 87: invalid type
section [ 7] '.rela.dyn': relocation 87: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 88: invalid type
section [ 7] '.rela.dyn': relocation 88: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 89: invalid type
section [ 7] '.rela.dyn': relocation 89: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 90: invalid type
section [ 7] '.rela.dyn': relocation 90: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 91: invalid type
section [ 7] '.rela.dyn': relocation 91: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 92: invalid type
section [ 7] '.rela.dyn': relocation 92: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 93: invalid type
section [ 7] '.rela.dyn': relocation 93: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 94: invalid type
section [ 7] '.rela.dyn': relocation 94: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 95: invalid type
section [ 7] '.rela.dyn': relocation 95: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 96: invalid type
section [ 7] '.rela.dyn': relocation 96: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 97: invalid type
section [ 7] '.rela.dyn': relocation 97: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 98: invalid type
section [ 7] '.rela.dyn': relocation 98: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 99: invalid type
section [ 7] '.rela.dyn': relocation 99: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 100: invalid type
section [ 7] '.rela.dyn': relocation 100: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 101: invalid type
section [ 7] '.rela.dyn': relocation 101: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 102: invalid type
section [ 7] '.rela.dyn': relocation 102: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 103: invalid type
section [ 7] '.rela.dyn': relocation 103: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 104: invalid type
section [ 7] '.rela.dyn': relocation 104: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 105: invalid type
section [ 7] '.rela.dyn': relocation 105: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 106: invalid type
section [ 7] '.rela.dyn': relocation 106: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 107: invalid type
section [ 7] '.rela.dyn': relocation 107: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 108: invalid type
section [ 7] '.rela.dyn': relocation 108: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 109: invalid type
section [ 7] '.rela.dyn': relocation 109: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 110: invalid type
section [ 7] '.rela.dyn': relocation 110: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 111: invalid type
section [ 7] '.rela.dyn': relocation 111: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 112: invalid type
section [ 7] '.rela.dyn': relocation 112: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 113: invalid type
section [ 7] '.rela.dyn': relocation 113: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 114: invalid type
section [ 7] '.rela.dyn': relocation 114: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 115: invalid type
section [ 7] '.rela.dyn': relocation 115: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 116: invalid type
section [ 7] '.rela.dyn': relocation 116: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 117: invalid type
section [ 7] '.rela.dyn': relocation 117: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 118: invalid type
section [ 7] '.rela.dyn': relocation 118: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 119: invalid type
section [ 7] '.rela.dyn': relocation 119: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 120: invalid type
section [ 7] '.rela.dyn': relocation 120: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 121: invalid type
section [ 7] '.rela.dyn': relocation 121: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 122: invalid type
section [ 7] '.rela.dyn': relocation 122: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 123: invalid type
section [ 7] '.rela.dyn': relocation 123: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 124: invalid type
section [ 7] '.rela.dyn': relocation 124: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 125: invalid type
section [ 7] '.rela.dyn': relocation 125: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 126: invalid type
section [ 7] '.rela.dyn': relocation 126: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 127: invalid type
section [ 7] '.rela.dyn': relocation 127: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 128: invalid type
section [ 7] '.rela.dyn': relocation 128: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 129: invalid type
section [ 7] '.rela.dyn': relocation 129: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 130: invalid type
section [ 7] '.rela.dyn': relocation 130: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 131: invalid type
section [ 7] '.rela.dyn': relocation 131: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 132: invalid type
section [ 7] '.rela.dyn': relocation 132: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 133: invalid type
section [ 7] '.rela.dyn': relocation 133: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 134: invalid type
section [ 7] '.rela.dyn': relocation 134: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 135: invalid type
section [ 7] '.rela.dyn': relocation 135: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 136: invalid type
section [ 7] '.rela.dyn': relocation 136: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 137: invalid type
section [ 7] '.rela.dyn': relocation 137: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 138: invalid type
section [ 7] '.rela.dyn': relocation 138: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 139: invalid type
section [ 7] '.rela.dyn': relocation 139: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 140: invalid type
section [ 7] '.rela.dyn': relocation 140: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 141: invalid type
section [ 7] '.rela.dyn': relocation 141: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 142: invalid type
section [ 7] '.rela.dyn': relocation 142: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 143: invalid type
section [ 7] '.rela.dyn': relocation 143: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 144: invalid type
section [ 7] '.rela.dyn': relocation 144: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 145: invalid type
section [ 7] '.rela.dyn': relocation 145: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 146: invalid type
section [ 7] '.rela.dyn': relocation 146: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 147: invalid type
section [ 7] '.rela.dyn': relocation 147: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 148: invalid type
section [ 7] '.rela.dyn': relocation 148: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 149: invalid type
section [ 7] '.rela.dyn': relocation 149: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 150: invalid type
section [ 7] '.rela.dyn': relocation 150: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 151: invalid type
section [ 7] '.rela.dyn': relocation 151: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 152: invalid type
section [ 7] '.rela.dyn': relocation 152: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 153: invalid type
section [ 7] '.rela.dyn': relocation 153: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 154: invalid type
section [ 7] '.rela.dyn': relocation 154: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 155: invalid type
section [ 7] '.rela.dyn': relocation 155: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 156: invalid type
section [ 7] '.rela.dyn': relocation 156: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 157: invalid type
section [ 7] '.rela.dyn': relocation 157: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 158: invalid type
section [ 7] '.rela.dyn': relocation 158: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 159: invalid type
section [ 7] '.rela.dyn': relocation 159: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 160: invalid type
section [ 7] '.rela.dyn': relocation 160: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 161: invalid type
section [ 7] '.rela.dyn': relocation 161: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 162: invalid type
section [ 7] '.rela.dyn': relocation 162: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 163: invalid type
section [ 7] '.rela.dyn': relocation 163: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 164: invalid type
section [ 7] '.rela.dyn': relocation 164: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 165: invalid type
section [ 7] '.rela.dyn': relocation 165: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 166: invalid type
section [ 7] '.rela.dyn': relocation 166: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 167: invalid type
section [ 7] '.rela.dyn': relocation 167: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 168: invalid type
section [ 7] '.rela.dyn': relocation 168: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 169: invalid type
section [ 7] '.rela.dyn': relocation 169: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 170: invalid type
section [ 7] '.rela.dyn': relocation 170: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 171: invalid type
section [ 7] '.rela.dyn': relocation 171: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 172: invalid type
section [ 7] '.rela.dyn': relocation 172: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 173: invalid type
section [ 7] '.rela.dyn': relocation 173: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 174: invalid type
section [ 7] '.rela.dyn': relocation 174: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 175: invalid type
section [ 7] '.rela.dyn': relocation 175: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 176: invalid type
section [ 7] '.rela.dyn': relocation 176: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 177: invalid type
section [ 7] '.rela.dyn': relocation 177: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 178: invalid type
section [ 7] '.rela.dyn': relocation 178: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 179: invalid type
section [ 7] '.rela.dyn': relocation 179: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 180: invalid type
section [ 7] '.rela.dyn': relocation 180: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 181: invalid type
section [ 7] '.rela.dyn': relocation 181: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 182: invalid type
section [ 7] '.rela.dyn': relocation 182: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 183: invalid type
section [ 7] '.rela.dyn': relocation 183: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 184: invalid type
section [ 7] '.rela.dyn': relocation 184: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 185: invalid type
section [ 7] '.rela.dyn': relocation 185: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 186: invalid type
section [ 7] '.rela.dyn': relocation 186: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 187: invalid type
section [ 7] '.rela.dyn': relocation 187: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 188: invalid type
section [ 7] '.rela.dyn': relocation 188: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 189: invalid type
section [ 7] '.rela.dyn': relocation 189: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 190: invalid type
section [ 7] '.rela.dyn': relocation 190: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 191: invalid type
section [ 7] '.rela.dyn': relocation 191: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 192: invalid type
section [ 7] '.rela.dyn': relocation 192: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 193: invalid type
section [ 7] '.rela.dyn': relocation 193: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 194: invalid type
section [ 7] '.rela.dyn': relocation 194: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 195: invalid type
section [ 7] '.rela.dyn': relocation 195: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 196: invalid type
section [ 7] '.rela.dyn': relocation 196: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 197: invalid type
section [ 7] '.rela.dyn': relocation 197: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 198: invalid type
section [ 7] '.rela.dyn': relocation 198: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 199: invalid type
section [ 7] '.rela.dyn': relocation 199: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 200: invalid type
section [ 7] '.rela.dyn': relocation 200: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 201: invalid type
section [ 7] '.rela.dyn': relocation 201: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 202: invalid type
section [ 7] '.rela.dyn': relocation 202: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 203: invalid type
section [ 7] '.rela.dyn': relocation 203: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 204: invalid type
section [ 7] '.rela.dyn': relocation 204: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 205: invalid type
section [ 7] '.rela.dyn': relocation 205: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 206: invalid type
section [ 7] '.rela.dyn': relocation 206: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 207: invalid type
section [ 7] '.rela.dyn': relocation 207: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 208: invalid type
section [ 7] '.rela.dyn': relocation 208: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 209: invalid type
section [ 7] '.rela.dyn': relocation 209: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 210: invalid type
section [ 7] '.rela.dyn': relocation 210: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 211: invalid type
section [ 7] '.rela.dyn': relocation 211: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 212: invalid type
section [ 7] '.rela.dyn': relocation 212: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 213: invalid type
section [ 7] '.rela.dyn': relocation 213: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 214: invalid type
section [ 7] '.rela.dyn': relocation 214: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 215: invalid type
section [ 7] '.rela.dyn': relocation 215: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 216: invalid type
section [ 7] '.rela.dyn': relocation 216: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 217: invalid type
section [ 7] '.rela.dyn': relocation 217: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 218: invalid type
section [ 7] '.rela.dyn': relocation 218: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 219: invalid type
section [ 7] '.rela.dyn': relocation 219: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 220: invalid type
section [ 7] '.rela.dyn': relocation 220: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 221: invalid type
section [ 7] '.rela.dyn': relocation 221: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 222: invalid type
section [ 7] '.rela.dyn': relocation 222: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 223: invalid type
section [ 7] '.rela.dyn': relocation 223: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 224: invalid type
section [ 7] '.rela.dyn': relocation 224: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 225: invalid type
section [ 7] '.rela.dyn': relocation 225: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 226: invalid type
section [ 7] '.rela.dyn': relocation 226: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 227: invalid type
section [ 7] '.rela.dyn': relocation 227: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 228: invalid type
section [ 7] '.rela.dyn': relocation 228: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 229: invalid type
section [ 7] '.rela.dyn': relocation 229: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 230: invalid type
section [ 7] '.rela.dyn': relocation 230: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 231: invalid type
section [ 7] '.rela.dyn': relocation 231: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 232: invalid type
section [ 7] '.rela.dyn': relocation 232: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 233: invalid type
section [ 7] '.rela.dyn': relocation 233: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 234: invalid type
section [ 7] '.rela.dyn': relocation 234: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 235: invalid type
section [ 7] '.rela.dyn': relocation 235: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 236: invalid type
section [ 7] '.rela.dyn': relocation 236: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 237: invalid type
section [ 7] '.rela.dyn': relocation 237: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 238: invalid type
section [ 7] '.rela.dyn': relocation 238: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 239: invalid type
section [ 7] '.rela.dyn': relocation 239: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 240: invalid type
section [ 7] '.rela.dyn': relocation 240: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 241: invalid type
section [ 7] '.rela.dyn': relocation 241: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 242: invalid type
section [ 7] '.rela.dyn': relocation 242: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 243: invalid type
section [ 7] '.rela.dyn': relocation 243: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 244: invalid type
section [ 7] '.rela.dyn': relocation 244: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 245: invalid type
section [ 7] '.rela.dyn': relocation 245: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 246: invalid type
section [ 7] '.rela.dyn': relocation 246: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 247: invalid type
section [ 7] '.rela.dyn': relocation 247: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 248: invalid type
section [ 7] '.rela.dyn': relocation 248: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 249: invalid type
section [ 7] '.rela.dyn': relocation 249: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 250: invalid type
section [ 7] '.rela.dyn': relocation 250: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 251: invalid type
section [ 7] '.rela.dyn': relocation 251: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 252: invalid type
section [ 7] '.rela.dyn': relocation 252: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 253: invalid type
section [ 7] '.rela.dyn': relocation 253: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 254: invalid type
section [ 7] '.rela.dyn': relocation 254: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 255: invalid type
section [ 7] '.rela.dyn': relocation 255: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 256: invalid type
section [ 7] '.rela.dyn': relocation 256: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 257: invalid type
section [ 7] '.rela.dyn': relocation 257: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 258: invalid type
section [ 7] '.rela.dyn': relocation 258: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 259: invalid type
section [ 7] '.rela.dyn': relocation 259: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 260: invalid type
section [ 7] '.rela.dyn': relocation 260: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 261: invalid type
section [ 7] '.rela.dyn': relocation 261: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 262: invalid type
section [ 7] '.rela.dyn': relocation 262: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 263: invalid type
section [ 7] '.rela.dyn': relocation 263: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 264: invalid type
section [ 7] '.rela.dyn': relocation 264: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 265: invalid type
section [ 7] '.rela.dyn': relocation 265: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 266: invalid type
section [ 7] '.rela.dyn': relocation 266: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 267: invalid type
section [ 7] '.rela.dyn': relocation 267: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 268: invalid type
section [ 7] '.rela.dyn': relocation 268: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 269: invalid type
section [ 7] '.rela.dyn': relocation 269: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 270: invalid type
section [ 7] '.rela.dyn': relocation 270: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 271: invalid type
section [ 7] '.rela.dyn': relocation 271: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 272: invalid type
section [ 7] '.rela.dyn': relocation 272: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 273: invalid type
section [ 7] '.rela.dyn': relocation 273: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 274: invalid type
section [ 7] '.rela.dyn': relocation 274: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 275: invalid type
section [ 7] '.rela.dyn': relocation 275: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 276: invalid type
section [ 7] '.rela.dyn': relocation 276: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 277: invalid type
section [ 7] '.rela.dyn': relocation 277: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 278: invalid type
section [ 7] '.rela.dyn': relocation 278: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 279: invalid type
section [ 7] '.rela.dyn': relocation 279: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 280: invalid type
section [ 7] '.rela.dyn': relocation 280: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 281: invalid type
section [ 7] '.rela.dyn': relocation 281: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 282: invalid type
section [ 7] '.rela.dyn': relocation 282: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 283: invalid type
section [ 7] '.rela.dyn': relocation 283: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 284: invalid type
section [ 7] '.rela.dyn': relocation 284: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 285: invalid type
section [ 7] '.rela.dyn': relocation 285: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 286: invalid type
section [ 7] '.rela.dyn': relocation 286: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 287: invalid type
section [ 7] '.rela.dyn': relocation 287: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 288: invalid type
section [ 7] '.rela.dyn': relocation 288: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 289: invalid type
section [ 7] '.rela.dyn': relocation 289: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 290: invalid type
section [ 7] '.rela.dyn': relocation 290: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 291: invalid type
section [ 7] '.rela.dyn': relocation 291: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 292: invalid type
section [ 7] '.rela.dyn': relocation 292: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 293: invalid type
section [ 7] '.rela.dyn': relocation 293: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 294: invalid type
section [ 7] '.rela.dyn': relocation 294: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 295: invalid type
section [ 7] '.rela.dyn': relocation 295: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 296: invalid type
section [ 7] '.rela.dyn': relocation 296: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 297: invalid type
section [ 7] '.rela.dyn': relocation 297: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 298: invalid type
section [ 7] '.rela.dyn': relocation 298: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 299: invalid type
section [ 7] '.rela.dyn': relocation 299: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 300: invalid type
section [ 7] '.rela.dyn': relocation 300: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 301: invalid type
section [ 7] '.rela.dyn': relocation 301: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 302: invalid type
section [ 7] '.rela.dyn': relocation 302: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 303: invalid type
section [ 7] '.rela.dyn': relocation 303: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 304: invalid type
section [ 7] '.rela.dyn': relocation 304: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 305: invalid type
section [ 7] '.rela.dyn': relocation 305: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 306: invalid type
section [ 7] '.rela.dyn': relocation 306: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 307: invalid type
section [ 7] '.rela.dyn': relocation 307: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 308: invalid type
section [ 7] '.rela.dyn': relocation 308: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 309: invalid type
section [ 7] '.rela.dyn': relocation 309: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 310: invalid type
section [ 7] '.rela.dyn': relocation 310: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 311: invalid type
section [ 7] '.rela.dyn': relocation 311: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 312: invalid type
section [ 7] '.rela.dyn': relocation 312: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 313: invalid type
section [ 7] '.rela.dyn': relocation 313: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 314: invalid type
section [ 7] '.rela.dyn': relocation 314: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 315: invalid type
section [ 7] '.rela.dyn': relocation 315: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 316: invalid type
section [ 7] '.rela.dyn': relocation 316: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 317: invalid type
section [ 7] '.rela.dyn': relocation 317: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 318: invalid type
section [ 7] '.rela.dyn': relocation 318: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 319: invalid type
section [ 7] '.rela.dyn': relocation 319: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 320: invalid type
section [ 7] '.rela.dyn': relocation 320: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 321: invalid type
section [ 7] '.rela.dyn': relocation 321: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 322: invalid type
section [ 7] '.rela.dyn': relocation 322: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 323: invalid type
section [ 7] '.rela.dyn': relocation 323: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 324: invalid type
section [ 7] '.rela.dyn': relocation 324: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 325: invalid type
section [ 7] '.rela.dyn': relocation 325: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 326: invalid type
section [ 7] '.rela.dyn': relocation 326: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 327: invalid type
section [ 7] '.rela.dyn': relocation 327: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 328: invalid type
section [ 7] '.rela.dyn': relocation 328: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 329: invalid type
section [ 7] '.rela.dyn': relocation 329: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 330: invalid type
section [ 7] '.rela.dyn': relocation 330: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 331: invalid type
section [ 7] '.rela.dyn': relocation 331: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 332: invalid type
section [ 7] '.rela.dyn': relocation 332: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 333: invalid type
section [ 7] '.rela.dyn': relocation 333: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 334: invalid type
section [ 7] '.rela.dyn': relocation 334: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 335: invalid type
section [ 7] '.rela.dyn': relocation 335: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 336: invalid type
section [ 7] '.rela.dyn': relocation 336: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 337: invalid type
section [ 7] '.rela.dyn': relocation 337: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 338: invalid type
section [ 7] '.rela.dyn': relocation 338: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 339: invalid type
section [ 7] '.rela.dyn': relocation 339: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 340: invalid type
section [ 7] '.rela.dyn': relocation 340: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 341: invalid type
section [ 7] '.rela.dyn': relocation 341: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 342: invalid type
section [ 7] '.rela.dyn': relocation 342: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 343: invalid type
section [ 7] '.rela.dyn': relocation 343: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 344: invalid type
section [ 7] '.rela.dyn': relocation 344: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 345: invalid type
section [ 7] '.rela.dyn': relocation 345: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 346: invalid type
section [ 7] '.rela.dyn': relocation 346: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 347: invalid type
section [ 7] '.rela.dyn': relocation 347: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 348: invalid type
section [ 7] '.rela.dyn': relocation 348: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 349: invalid type
section [ 7] '.rela.dyn': relocation 349: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 350: invalid type
section [ 7] '.rela.dyn': relocation 350: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 351: invalid type
section [ 7] '.rela.dyn': relocation 351: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 352: invalid type
section [ 7] '.rela.dyn': relocation 352: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 353: invalid type
section [ 7] '.rela.dyn': relocation 353: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 354: invalid type
section [ 7] '.rela.dyn': relocation 354: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 355: invalid type
section [ 7] '.rela.dyn': relocation 355: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 356: invalid type
section [ 7] '.rela.dyn': relocation 356: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 357: invalid type
section [ 7] '.rela.dyn': relocation 357: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 358: invalid type
section [ 7] '.rela.dyn': relocation 358: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 359: invalid type
section [ 7] '.rela.dyn': relocation 359: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 360: invalid type
section [ 7] '.rela.dyn': relocation 360: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 361: invalid type
section [ 7] '.rela.dyn': relocation 361: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 362: invalid type
section [ 7] '.rela.dyn': relocation 362: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 363: invalid type
section [ 7] '.rela.dyn': relocation 363: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 364: invalid type
section [ 7] '.rela.dyn': relocation 364: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 365: invalid type
section [ 7] '.rela.dyn': relocation 365: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 366: invalid type
section [ 7] '.rela.dyn': relocation 366: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 367: invalid type
section [ 7] '.rela.dyn': relocation 367: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 368: invalid type
section [ 7] '.rela.dyn': relocation 368: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 369: invalid type
section [ 7] '.rela.dyn': relocation 369: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 370: invalid type
section [ 7] '.rela.dyn': relocation 370: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 371: invalid type
section [ 7] '.rela.dyn': relocation 371: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 372: invalid type
section [ 7] '.rela.dyn': relocation 372: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 373: invalid type
section [ 7] '.rela.dyn': relocation 373: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 374: invalid type
section [ 7] '.rela.dyn': relocation 374: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 375: invalid type
section [ 7] '.rela.dyn': relocation 375: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 376: invalid type
section [ 7] '.rela.dyn': relocation 376: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 377: invalid type
section [ 7] '.rela.dyn': relocation 377: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 378: invalid type
section [ 7] '.rela.dyn': relocation 378: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 379: invalid type
section [ 7] '.rela.dyn': relocation 379: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 380: invalid type
section [ 7] '.rela.dyn': relocation 380: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 381: invalid type
section [ 7] '.rela.dyn': relocation 381: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 382: invalid type
section [ 7] '.rela.dyn': relocation 382: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 383: invalid type
section [ 7] '.rela.dyn': relocation 383: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 384: invalid type
section [ 7] '.rela.dyn': relocation 384: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 385: invalid type
section [ 7] '.rela.dyn': relocation 385: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 386: invalid type
section [ 7] '.rela.dyn': relocation 386: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 387: invalid type
section [ 7] '.rela.dyn': relocation 387: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 388: invalid type
section [ 7] '.rela.dyn': relocation 388: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 389: invalid type
section [ 7] '.rela.dyn': relocation 389: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 390: invalid type
section [ 7] '.rela.dyn': relocation 390: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 391: invalid type
section [ 7] '.rela.dyn': relocation 391: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 392: invalid type
section [ 7] '.rela.dyn': relocation 392: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 393: invalid type
section [ 7] '.rela.dyn': relocation 393: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 394: invalid type
section [ 7] '.rela.dyn': relocation 394: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 395: invalid type
section [ 7] '.rela.dyn': relocation 395: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 396: invalid type
section [ 7] '.rela.dyn': relocation 396: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 397: invalid type
section [ 7] '.rela.dyn': relocation 397: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 398: invalid type
section [ 7] '.rela.dyn': relocation 398: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 399: invalid type
section [ 7] '.rela.dyn': relocation 399: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 400: invalid type
section [ 7] '.rela.dyn': relocation 400: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 401: invalid type
section [ 7] '.rela.dyn': relocation 401: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 402: invalid type
section [ 7] '.rela.dyn': relocation 402: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 403: invalid type
section [ 7] '.rela.dyn': relocation 403: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 404: invalid type
section [ 7] '.rela.dyn': relocation 404: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 405: invalid type
section [ 7] '.rela.dyn': relocation 405: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 406: invalid type
section [ 7] '.rela.dyn': relocation 406: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 407: invalid type
section [ 7] '.rela.dyn': relocation 407: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 408: invalid type
section [ 7] '.rela.dyn': relocation 408: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 409: invalid type
section [ 7] '.rela.dyn': relocation 409: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 410: invalid type
section [ 7] '.rela.dyn': relocation 410: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 411: invalid type
section [ 7] '.rela.dyn': relocation 411: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 412: invalid type
section [ 7] '.rela.dyn': relocation 412: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 413: invalid type
section [ 7] '.rela.dyn': relocation 413: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 414: invalid type
section [ 7] '.rela.dyn': relocation 414: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 415: invalid type
section [ 7] '.rela.dyn': relocation 415: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 416: invalid type
section [ 7] '.rela.dyn': relocation 416: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 417: invalid type
section [ 7] '.rela.dyn': relocation 417: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 418: invalid type
section [ 7] '.rela.dyn': relocation 418: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 419: invalid type
section [ 7] '.rela.dyn': relocation 419: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 420: invalid type
section [ 7] '.rela.dyn': relocation 420: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 421: invalid type
section [ 7] '.rela.dyn': relocation 421: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 422: invalid type
section [ 7] '.rela.dyn': relocation 422: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 423: invalid type
section [ 7] '.rela.dyn': relocation 423: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 424: invalid type
section [ 7] '.rela.dyn': relocation 424: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 425: invalid type
section [ 7] '.rela.dyn': relocation 425: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 426: invalid type
section [ 7] '.rela.dyn': relocation 426: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 427: invalid type
section [ 7] '.rela.dyn': relocation 427: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 428: invalid type
section [ 7] '.rela.dyn': relocation 428: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 429: invalid type
section [ 7] '.rela.dyn': relocation 429: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 430: invalid type
section [ 7] '.rela.dyn': relocation 430: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 431: invalid type
section [ 7] '.rela.dyn': relocation 431: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 432: invalid type
section [ 7] '.rela.dyn': relocation 432: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 433: invalid type
section [ 7] '.rela.dyn': relocation 433: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 434: invalid type
section [ 7] '.rela.dyn': relocation 434: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 435: invalid type
section [ 7] '.rela.dyn': relocation 435: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 436: invalid type
section [ 7] '.rela.dyn': relocation 436: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 437: invalid type
section [ 7] '.rela.dyn': relocation 437: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 438: invalid type
section [ 7] '.rela.dyn': relocation 438: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 439: invalid type
section [ 7] '.rela.dyn': relocation 439: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 440: invalid type
section [ 7] '.rela.dyn': relocation 440: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 441: invalid type
section [ 7] '.rela.dyn': relocation 441: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 442: invalid type
section [ 7] '.rela.dyn': relocation 442: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 443: invalid type
section [ 7] '.rela.dyn': relocation 443: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 444: invalid type
section [ 7] '.rela.dyn': relocation 444: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 445: invalid type
section [ 7] '.rela.dyn': relocation 445: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 446: invalid type
section [ 7] '.rela.dyn': relocation 446: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 447: invalid type
section [ 7] '.rela.dyn': relocation 447: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 448: invalid type
section [ 7] '.rela.dyn': relocation 448: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 449: invalid type
section [ 7] '.rela.dyn': relocation 449: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 450: invalid type
section [ 7] '.rela.dyn': relocation 450: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 451: invalid type
section [ 7] '.rela.dyn': relocation 451: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 452: invalid type
section [ 7] '.rela.dyn': relocation 452: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 453: invalid type
section [ 7] '.rela.dyn': relocation 453: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 454: invalid type
section [ 7] '.rela.dyn': relocation 454: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 455: invalid type
section [ 7] '.rela.dyn': relocation 455: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 456: invalid type
section [ 7] '.rela.dyn': relocation 456: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 457: invalid type
section [ 7] '.rela.dyn': relocation 457: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 458: invalid type
section [ 7] '.rela.dyn': relocation 458: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 459: invalid type
section [ 7] '.rela.dyn': relocation 459: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 460: invalid type
section [ 7] '.rela.dyn': relocation 460: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 461: invalid type
section [ 7] '.rela.dyn': relocation 461: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 462: invalid type
section [ 7] '.rela.dyn': relocation 462: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 463: invalid type
section [ 7] '.rela.dyn': relocation 463: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 464: invalid type
section [ 7] '.rela.dyn': relocation 464: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 465: invalid type
section [ 7] '.rela.dyn': relocation 465: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 466: invalid type
section [ 7] '.rela.dyn': relocation 466: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 467: invalid type
section [ 7] '.rela.dyn': relocation 467: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 468: invalid type
section [ 7] '.rela.dyn': relocation 468: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 469: invalid type
section [ 7] '.rela.dyn': relocation 469: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 470: invalid type
section [ 7] '.rela.dyn': relocation 470: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 471: invalid type
section [ 7] '.rela.dyn': relocation 471: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 472: invalid type
section [ 7] '.rela.dyn': relocation 472: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 473: invalid type
section [ 7] '.rela.dyn': relocation 473: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 474: invalid type
section [ 7] '.rela.dyn': relocation 474: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 475: invalid type
section [ 7] '.rela.dyn': relocation 475: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 476: invalid type
section [ 7] '.rela.dyn': relocation 476: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 477: invalid type
section [ 7] '.rela.dyn': relocation 477: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 478: invalid type
section [ 7] '.rela.dyn': relocation 478: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 479: invalid type
section [ 7] '.rela.dyn': relocation 479: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 480: invalid type
section [ 7] '.rela.dyn': relocation 480: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 481: invalid type
section [ 7] '.rela.dyn': relocation 481: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 482: invalid type
section [ 7] '.rela.dyn': relocation 482: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 483: invalid type
section [ 7] '.rela.dyn': relocation 483: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 484: invalid type
section [ 7] '.rela.dyn': relocation 484: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 485: invalid type
section [ 7] '.rela.dyn': relocation 485: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 486: invalid type
section [ 7] '.rela.dyn': relocation 486: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 487: invalid type
section [ 7] '.rela.dyn': relocation 487: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 488: invalid type
section [ 7] '.rela.dyn': relocation 488: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 489: invalid type
section [ 7] '.rela.dyn': relocation 489: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 490: invalid type
section [ 7] '.rela.dyn': relocation 490: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 491: invalid type
section [ 7] '.rela.dyn': relocation 491: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 492: invalid type
section [ 7] '.rela.dyn': relocation 492: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 493: invalid type
section [ 7] '.rela.dyn': relocation 493: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 494: invalid type
section [ 7] '.rela.dyn': relocation 494: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 495: invalid type
section [ 7] '.rela.dyn': relocation 495: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 496: invalid type
section [ 7] '.rela.dyn': relocation 496: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 497: invalid type
section [ 7] '.rela.dyn': relocation 497: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 498: invalid type
section [ 7] '.rela.dyn': relocation 498: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 499: invalid type
section [ 7] '.rela.dyn': relocation 499: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 500: invalid type
section [ 7] '.rela.dyn': relocation 500: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 501: invalid type
section [ 7] '.rela.dyn': relocation 501: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 502: invalid type
section [ 7] '.rela.dyn': relocation 502: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 503: invalid type
section [ 7] '.rela.dyn': relocation 503: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 504: invalid type
section [ 7] '.rela.dyn': relocation 504: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 505: invalid type
section [ 7] '.rela.dyn': relocation 505: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 506: invalid type
section [ 7] '.rela.dyn': relocation 506: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 507: invalid type
section [ 7] '.rela.dyn': relocation 507: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 508: invalid type
section [ 7] '.rela.dyn': relocation 508: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 509: invalid type
section [ 7] '.rela.dyn': relocation 509: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 510: invalid type
section [ 7] '.rela.dyn': relocation 510: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 511: invalid type
section [ 7] '.rela.dyn': relocation 511: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 512: invalid type
section [ 7] '.rela.dyn': relocation 512: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 513: invalid type
section [ 7] '.rela.dyn': relocation 513: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 514: invalid type
section [ 7] '.rela.dyn': relocation 514: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 515: invalid type
section [ 7] '.rela.dyn': relocation 515: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 516: invalid type
section [ 7] '.rela.dyn': relocation 516: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 517: invalid type
section [ 7] '.rela.dyn': relocation 517: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 518: invalid type
section [ 7] '.rela.dyn': relocation 518: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 519: invalid type
section [ 7] '.rela.dyn': relocation 519: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 520: invalid type
section [ 7] '.rela.dyn': relocation 520: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 521: invalid type
section [ 7] '.rela.dyn': relocation 521: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 522: invalid type
section [ 7] '.rela.dyn': relocation 522: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 523: invalid type
section [ 7] '.rela.dyn': relocation 523: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 524: invalid type
section [ 7] '.rela.dyn': relocation 524: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 525: invalid type
section [ 7] '.rela.dyn': relocation 525: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 526: invalid type
section [ 7] '.rela.dyn': relocation 526: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 527: invalid type
section [ 7] '.rela.dyn': relocation 527: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 528: invalid type
section [ 7] '.rela.dyn': relocation 528: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 529: invalid type
section [ 7] '.rela.dyn': relocation 529: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 530: invalid type
section [ 7] '.rela.dyn': relocation 530: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 531: invalid type
section [ 7] '.rela.dyn': relocation 531: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 532: invalid type
section [ 7] '.rela.dyn': relocation 532: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 533: invalid type
section [ 7] '.rela.dyn': relocation 533: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 534: invalid type
section [ 7] '.rela.dyn': relocation 534: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 535: invalid type
section [ 7] '.rela.dyn': relocation 535: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 536: invalid type
section [ 7] '.rela.dyn': relocation 536: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 537: invalid type
section [ 7] '.rela.dyn': relocation 537: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 538: invalid type
section [ 7] '.rela.dyn': relocation 538: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 539: invalid type
section [ 7] '.rela.dyn': relocation 539: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 540: invalid type
section [ 7] '.rela.dyn': relocation 540: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 541: invalid type
section [ 7] '.rela.dyn': relocation 541: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 542: invalid type
section [ 7] '.rela.dyn': relocation 542: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 543: invalid type
section [ 7] '.rela.dyn': relocation 543: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 544: invalid type
section [ 7] '.rela.dyn': relocation 544: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 545: invalid type
section [ 7] '.rela.dyn': relocation 545: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 546: invalid type
section [ 7] '.rela.dyn': relocation 546: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 547: invalid type
section [ 7] '.rela.dyn': relocation 547: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 548: invalid type
section [ 7] '.rela.dyn': relocation 548: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 549: invalid type
section [ 7] '.rela.dyn': relocation 549: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 550: invalid type
section [ 7] '.rela.dyn': relocation 550: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 551: invalid type
section [ 7] '.rela.dyn': relocation 551: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 552: invalid type
section [ 7] '.rela.dyn': relocation 552: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 553: invalid type
section [ 7] '.rela.dyn': relocation 553: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 554: invalid type
section [ 7] '.rela.dyn': relocation 554: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 555: invalid type
section [ 7] '.rela.dyn': relocation 555: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 556: invalid type
section [ 7] '.rela.dyn': relocation 556: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 557: invalid type
section [ 7] '.rela.dyn': relocation 557: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 558: invalid type
section [ 7] '.rela.dyn': relocation 558: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 559: invalid type
section [ 7] '.rela.dyn': relocation 559: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 560: invalid type
section [ 7] '.rela.dyn': relocation 560: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 561: invalid type
section [ 7] '.rela.dyn': relocation 561: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 562: invalid type
section [ 7] '.rela.dyn': relocation 562: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 563: invalid type
section [ 7] '.rela.dyn': relocation 563: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 564: invalid type
section [ 7] '.rela.dyn': relocation 564: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 565: invalid type
section [ 7] '.rela.dyn': relocation 565: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 566: invalid type
section [ 7] '.rela.dyn': relocation 566: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 567: invalid type
section [ 7] '.rela.dyn': relocation 567: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 568: invalid type
section [ 7] '.rela.dyn': relocation 568: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 569: invalid type
section [ 7] '.rela.dyn': relocation 569: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 570: invalid type
section [ 7] '.rela.dyn': relocation 570: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 571: invalid type
section [ 7] '.rela.dyn': relocation 571: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 572: invalid type
section [ 7] '.rela.dyn': relocation 572: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 573: invalid type
section [ 7] '.rela.dyn': relocation 573: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 574: invalid type
section [ 7] '.rela.dyn': relocation 574: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 575: invalid type
section [ 7] '.rela.dyn': relocation 575: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 576: invalid type
section [ 7] '.rela.dyn': relocation 576: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 577: invalid type
section [ 7] '.rela.dyn': relocation 577: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 578: invalid type
section [ 7] '.rela.dyn': relocation 578: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 579: invalid type
section [ 7] '.rela.dyn': relocation 579: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 580: invalid type
section [ 7] '.rela.dyn': relocation 580: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 581: invalid type
section [ 7] '.rela.dyn': relocation 581: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 582: invalid type
section [ 7] '.rela.dyn': relocation 582: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 583: invalid type
section [ 7] '.rela.dyn': relocation 583: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 584: invalid type
section [ 7] '.rela.dyn': relocation 584: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 585: invalid type
section [ 7] '.rela.dyn': relocation 585: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 586: invalid type
section [ 7] '.rela.dyn': relocation 586: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 587: invalid type
section [ 7] '.rela.dyn': relocation 587: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 588: invalid type
section [ 7] '.rela.dyn': relocation 588: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 589: invalid type
section [ 7] '.rela.dyn': relocation 589: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 590: invalid type
section [ 7] '.rela.dyn': relocation 590: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 591: invalid type
section [ 7] '.rela.dyn': relocation 591: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 592: invalid type
section [ 7] '.rela.dyn': relocation 592: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 593: invalid type
section [ 7] '.rela.dyn': relocation 593: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 594: invalid type
section [ 7] '.rela.dyn': relocation 594: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 595: invalid type
section [ 7] '.rela.dyn': relocation 595: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 596: invalid type
section [ 7] '.rela.dyn': relocation 596: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 597: invalid type
section [ 7] '.rela.dyn': relocation 597: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 598: invalid type
section [ 7] '.rela.dyn': relocation 598: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 599: invalid type
section [ 7] '.rela.dyn': relocation 599: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 600: invalid type
section [ 7] '.rela.dyn': relocation 600: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 601: invalid type
section [ 7] '.rela.dyn': relocation 601: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 602: invalid type
section [ 7] '.rela.dyn': relocation 602: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 603: invalid type
section [ 7] '.rela.dyn': relocation 603: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 604: invalid type
section [ 7] '.rela.dyn': relocation 604: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 605: invalid type
section [ 7] '.rela.dyn': relocation 605: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 606: invalid type
section [ 7] '.rela.dyn': relocation 606: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 607: invalid type
section [ 7] '.rela.dyn': relocation 607: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 608: invalid type
section [ 7] '.rela.dyn': relocation 608: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 609: invalid type
section [ 7] '.rela.dyn': relocation 609: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 610: invalid type
section [ 7] '.rela.dyn': relocation 610: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 611: invalid type
section [ 7] '.rela.dyn': relocation 611: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 612: invalid type
section [ 7] '.rela.dyn': relocation 612: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 613: invalid type
section [ 7] '.rela.dyn': relocation 613: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 614: invalid type
section [ 7] '.rela.dyn': relocation 614: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 615: invalid type
section [ 7] '.rela.dyn': relocation 615: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 616: invalid type
section [ 7] '.rela.dyn': relocation 616: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 617: invalid type
section [ 7] '.rela.dyn': relocation 617: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 618: invalid type
section [ 7] '.rela.dyn': relocation 618: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 619: invalid type
section [ 7] '.rela.dyn': relocation 619: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 620: invalid type
section [ 7] '.rela.dyn': relocation 620: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 621: invalid type
section [ 7] '.rela.dyn': relocation 621: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 622: invalid type
section [ 7] '.rela.dyn': relocation 622: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 623: invalid type
section [ 7] '.rela.dyn': relocation 623: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 624: invalid type
section [ 7] '.rela.dyn': relocation 624: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 625: invalid type
section [ 7] '.rela.dyn': relocation 625: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 626: invalid type
section [ 7] '.rela.dyn': relocation 626: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 627: invalid type
section [ 7] '.rela.dyn': relocation 627: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 628: invalid type
section [ 7] '.rela.dyn': relocation 628: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 629: invalid type
section [ 7] '.rela.dyn': relocation 629: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 630: invalid type
section [ 7] '.rela.dyn': relocation 630: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 631: invalid type
section [ 7] '.rela.dyn': relocation 631: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 632: invalid type
section [ 7] '.rela.dyn': relocation 632: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 633: invalid type
section [ 7] '.rela.dyn': relocation 633: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 634: invalid type
section [ 7] '.rela.dyn': relocation 634: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 635: invalid type
section [ 7] '.rela.dyn': relocation 635: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 636: invalid type
section [ 7] '.rela.dyn': relocation 636: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 637: invalid type
section [ 7] '.rela.dyn': relocation 637: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 638: invalid type
section [ 7] '.rela.dyn': relocation 638: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 639: invalid type
section [ 7] '.rela.dyn': relocation 639: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 640: invalid type
section [ 7] '.rela.dyn': relocation 640: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 641: invalid type
section [ 7] '.rela.dyn': relocation 641: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 642: invalid type
section [ 7] '.rela.dyn': relocation 642: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 643: invalid type
section [ 7] '.rela.dyn': relocation 643: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 644: invalid type
section [ 7] '.rela.dyn': relocation 644: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 645: invalid type
section [ 7] '.rela.dyn': relocation 645: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 646: invalid type
section [ 7] '.rela.dyn': relocation 646: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 647: invalid type
section [ 7] '.rela.dyn': relocation 647: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 648: invalid type
section [ 7] '.rela.dyn': relocation 648: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 649: invalid type
section [ 7] '.rela.dyn': relocation 649: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 650: invalid type
section [ 7] '.rela.dyn': relocation 650: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 651: invalid type
section [ 7] '.rela.dyn': relocation 651: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 652: invalid type
section [ 7] '.rela.dyn': relocation 652: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 653: invalid type
section [ 7] '.rela.dyn': relocation 653: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 654: invalid type
section [ 7] '.rela.dyn': relocation 654: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 655: invalid type
section [ 7] '.rela.dyn': relocation 655: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 656: invalid type
section [ 7] '.rela.dyn': relocation 656: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 657: invalid type
section [ 7] '.rela.dyn': relocation 657: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 658: invalid type
section [ 7] '.rela.dyn': relocation 658: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 659: invalid type
section [ 7] '.rela.dyn': relocation 659: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 660: invalid type
section [ 7] '.rela.dyn': relocation 660: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 661: invalid type
section [ 7] '.rela.dyn': relocation 661: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 662: invalid type
section [ 7] '.rela.dyn': relocation 662: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 663: invalid type
section [ 7] '.rela.dyn': relocation 663: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 664: invalid type
section [ 7] '.rela.dyn': relocation 664: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 665: invalid type
section [ 7] '.rela.dyn': relocation 665: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 666: invalid type
section [ 7] '.rela.dyn': relocation 666: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 667: invalid type
section [ 7] '.rela.dyn': relocation 667: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 668: invalid type
section [ 7] '.rela.dyn': relocation 668: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 669: invalid type
section [ 7] '.rela.dyn': relocation 669: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 670: invalid type
section [ 7] '.rela.dyn': relocation 670: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 671: invalid type
section [ 7] '.rela.dyn': relocation 671: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 672: invalid type
section [ 7] '.rela.dyn': relocation 672: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 673: invalid type
section [ 7] '.rela.dyn': relocation 673: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 674: invalid type
section [ 7] '.rela.dyn': relocation 674: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 675: invalid type
section [ 7] '.rela.dyn': relocation 675: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 676: invalid type
section [ 7] '.rela.dyn': relocation 676: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 677: invalid type
section [ 7] '.rela.dyn': relocation 677: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 678: invalid type
section [ 7] '.rela.dyn': relocation 678: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 679: invalid type
section [ 7] '.rela.dyn': relocation 679: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 680: invalid type
section [ 7] '.rela.dyn': relocation 680: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 681: invalid type
section [ 7] '.rela.dyn': relocation 681: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 682: invalid type
section [ 7] '.rela.dyn': relocation 682: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 683: invalid type
section [ 7] '.rela.dyn': relocation 683: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 684: invalid type
section [ 7] '.rela.dyn': relocation 684: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 685: invalid type
section [ 7] '.rela.dyn': relocation 685: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 686: invalid type
section [ 7] '.rela.dyn': relocation 686: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 687: invalid type
section [ 7] '.rela.dyn': relocation 687: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 688: invalid type
section [ 7] '.rela.dyn': relocation 688: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 689: invalid type
section [ 7] '.rela.dyn': relocation 689: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 690: invalid type
section [ 7] '.rela.dyn': relocation 690: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 691: invalid type
section [ 7] '.rela.dyn': relocation 691: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 692: invalid type
section [ 7] '.rela.dyn': relocation 692: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 693: invalid type
section [ 7] '.rela.dyn': relocation 693: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 694: invalid type
section [ 7] '.rela.dyn': relocation 694: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 695: invalid type
section [ 7] '.rela.dyn': relocation 695: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 696: invalid type
section [ 7] '.rela.dyn': relocation 696: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 697: invalid type
section [ 7] '.rela.dyn': relocation 697: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 698: invalid type
section [ 7] '.rela.dyn': relocation 698: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 699: invalid type
section [ 7] '.rela.dyn': relocation 699: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 700: invalid type
section [ 7] '.rela.dyn': relocation 700: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 701: invalid type
section [ 7] '.rela.dyn': relocation 701: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 702: invalid type
section [ 7] '.rela.dyn': relocation 702: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 703: invalid type
section [ 7] '.rela.dyn': relocation 703: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 704: invalid type
section [ 7] '.rela.dyn': relocation 704: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 705: invalid type
section [ 7] '.rela.dyn': relocation 705: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 706: invalid type
section [ 7] '.rela.dyn': relocation 706: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 707: invalid type
section [ 7] '.rela.dyn': relocation 707: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 708: invalid type
section [ 7] '.rela.dyn': relocation 708: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 709: invalid type
section [ 7] '.rela.dyn': relocation 709: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 710: invalid type
section [ 7] '.rela.dyn': relocation 710: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 711: invalid type
section [ 7] '.rela.dyn': relocation 711: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 712: invalid type
section [ 7] '.rela.dyn': relocation 712: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 713: invalid type
section [ 7] '.rela.dyn': relocation 713: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 714: invalid type
section [ 7] '.rela.dyn': relocation 714: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 715: invalid type
section [ 7] '.rela.dyn': relocation 715: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 716: invalid type
section [ 7] '.rela.dyn': relocation 716: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 717: invalid type
section [ 7] '.rela.dyn': relocation 717: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 718: invalid type
section [ 7] '.rela.dyn': relocation 718: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 719: invalid type
section [ 7] '.rela.dyn': relocation 719: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 720: invalid type
section [ 7] '.rela.dyn': relocation 720: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 721: invalid type
section [ 7] '.rela.dyn': relocation 721: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 722: invalid type
section [ 7] '.rela.dyn': relocation 722: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 723: invalid type
section [ 7] '.rela.dyn': relocation 723: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 724: invalid type
section [ 7] '.rela.dyn': relocation 724: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 725: invalid type
section [ 7] '.rela.dyn': relocation 725: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 726: invalid type
section [ 7] '.rela.dyn': relocation 726: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 727: invalid type
section [ 7] '.rela.dyn': relocation 727: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 728: invalid type
section [ 7] '.rela.dyn': relocation 728: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 729: invalid type
section [ 7] '.rela.dyn': relocation 729: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 730: invalid type
section [ 7] '.rela.dyn': relocation 730: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 731: invalid type
section [ 7] '.rela.dyn': relocation 731: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 732: invalid type
section [ 7] '.rela.dyn': relocation 732: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 733: invalid type
section [ 7] '.rela.dyn': relocation 733: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 734: invalid type
section [ 7] '.rela.dyn': relocation 734: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 735: invalid type
section [ 7] '.rela.dyn': relocation 735: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 736: invalid type
section [ 7] '.rela.dyn': relocation 736: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 737: invalid type
section [ 7] '.rela.dyn': relocation 737: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 738: invalid type
section [ 7] '.rela.dyn': relocation 738: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 739: invalid type
section [ 7] '.rela.dyn': relocation 739: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 740: invalid type
section [ 7] '.rela.dyn': relocation 740: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 741: invalid type
section [ 7] '.rela.dyn': relocation 741: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 742: invalid type
section [ 7] '.rela.dyn': relocation 742: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 743: invalid type
section [ 7] '.rela.dyn': relocation 743: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 744: invalid type
section [ 7] '.rela.dyn': relocation 744: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 745: invalid type
section [ 7] '.rela.dyn': relocation 745: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 746: invalid type
section [ 7] '.rela.dyn': relocation 746: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 747: invalid type
section [ 7] '.rela.dyn': relocation 747: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 748: invalid type
section [ 7] '.rela.dyn': relocation 748: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 749: invalid type
section [ 7] '.rela.dyn': relocation 749: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 750: invalid type
section [ 7] '.rela.dyn': relocation 750: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 751: invalid type
section [ 7] '.rela.dyn': relocation 751: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 752: invalid type
section [ 7] '.rela.dyn': relocation 752: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 753: invalid type
section [ 7] '.rela.dyn': relocation 753: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 754: invalid type
section [ 7] '.rela.dyn': relocation 754: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 755: invalid type
section [ 7] '.rela.dyn': relocation 755: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 756: invalid type
section [ 7] '.rela.dyn': relocation 756: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 757: invalid type
section [ 7] '.rela.dyn': relocation 757: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 758: invalid type
section [ 7] '.rela.dyn': relocation 758: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 759: invalid type
section [ 7] '.rela.dyn': relocation 759: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 760: invalid type
section [ 7] '.rela.dyn': relocation 760: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 761: invalid type
section [ 7] '.rela.dyn': relocation 761: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 762: invalid type
section [ 7] '.rela.dyn': relocation 762: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 763: invalid type
section [ 7] '.rela.dyn': relocation 763: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 764: invalid type
section [ 7] '.rela.dyn': relocation 764: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 765: invalid type
section [ 7] '.rela.dyn': relocation 765: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 766: invalid type
section [ 7] '.rela.dyn': relocation 766: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 767: invalid type
section [ 7] '.rela.dyn': relocation 767: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 768: invalid type
section [ 7] '.rela.dyn': relocation 768: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 769: invalid type
section [ 7] '.rela.dyn': relocation 769: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 770: invalid type
section [ 7] '.rela.dyn': relocation 770: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 771: invalid type
section [ 7] '.rela.dyn': relocation 771: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 772: invalid type
section [ 7] '.rela.dyn': relocation 772: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 773: invalid type
section [ 7] '.rela.dyn': relocation 773: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 774: invalid type
section [ 7] '.rela.dyn': relocation 774: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 775: invalid type
section [ 7] '.rela.dyn': relocation 775: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 776: invalid type
section [ 7] '.rela.dyn': relocation 776: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 777: invalid type
section [ 7] '.rela.dyn': relocation 777: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 778: invalid type
section [ 7] '.rela.dyn': relocation 778: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 779: invalid type
section [ 7] '.rela.dyn': relocation 779: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 780: invalid type
section [ 7] '.rela.dyn': relocation 780: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 781: invalid type
section [ 7] '.rela.dyn': relocation 781: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 782: invalid type
section [ 7] '.rela.dyn': relocation 782: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 783: invalid type
section [ 7] '.rela.dyn': relocation 783: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 784: invalid type
section [ 7] '.rela.dyn': relocation 784: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 785: invalid type
section [ 7] '.rela.dyn': relocation 785: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 786: invalid type
section [ 7] '.rela.dyn': relocation 786: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 787: invalid type
section [ 7] '.rela.dyn': relocation 787: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 788: invalid type
section [ 7] '.rela.dyn': relocation 788: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 789: invalid type
section [ 7] '.rela.dyn': relocation 789: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 790: invalid type
section [ 7] '.rela.dyn': relocation 790: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 791: invalid type
section [ 7] '.rela.dyn': relocation 791: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 792: invalid type
section [ 7] '.rela.dyn': relocation 792: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 793: invalid type
section [ 7] '.rela.dyn': relocation 793: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 794: invalid type
section [ 7] '.rela.dyn': relocation 794: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 795: invalid type
section [ 7] '.rela.dyn': relocation 795: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 796: invalid type
section [ 7] '.rela.dyn': relocation 796: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 797: invalid type
section [ 7] '.rela.dyn': relocation 797: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 798: invalid type
section [ 7] '.rela.dyn': relocation 798: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 799: invalid type
section [ 7] '.rela.dyn': relocation 799: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 800: invalid type
section [ 7] '.rela.dyn': relocation 800: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 801: invalid type
section [ 7] '.rela.dyn': relocation 801: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 802: invalid type
section [ 7] '.rela.dyn': relocation 802: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 803: invalid type
section [ 7] '.rela.dyn': relocation 803: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 804: invalid type
section [ 7] '.rela.dyn': relocation 804: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 805: invalid type
section [ 7] '.rela.dyn': relocation 805: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 806: invalid type
section [ 7] '.rela.dyn': relocation 806: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 807: invalid type
section [ 7] '.rela.dyn': relocation 807: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 808: invalid type
section [ 7] '.rela.dyn': relocation 808: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 809: invalid type
section [ 7] '.rela.dyn': relocation 809: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 810: invalid type
section [ 7] '.rela.dyn': relocation 810: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 811: invalid type
section [ 7] '.rela.dyn': relocation 811: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 812: invalid type
section [ 7] '.rela.dyn': relocation 812: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 813: invalid type
section [ 7] '.rela.dyn': relocation 813: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 814: invalid type
section [ 7] '.rela.dyn': relocation 814: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 815: invalid type
section [ 7] '.rela.dyn': relocation 815: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 816: invalid type
section [ 7] '.rela.dyn': relocation 816: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 817: invalid type
section [ 7] '.rela.dyn': relocation 817: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 818: invalid type
section [ 7] '.rela.dyn': relocation 818: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 819: invalid type
section [ 7] '.rela.dyn': relocation 819: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 820: invalid type
section [ 7] '.rela.dyn': relocation 820: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 821: invalid type
section [ 7] '.rela.dyn': relocation 821: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 822: invalid type
section [ 7] '.rela.dyn': relocation 822: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 823: invalid type
section [ 7] '.rela.dyn': relocation 823: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 824: invalid type
section [ 7] '.rela.dyn': relocation 824: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 825: invalid type
section [ 7] '.rela.dyn': relocation 825: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 826: invalid type
section [ 7] '.rela.dyn': relocation 826: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 827: invalid type
section [ 7] '.rela.dyn': relocation 827: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 828: invalid type
section [ 7] '.rela.dyn': relocation 828: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 829: invalid type
section [ 7] '.rela.dyn': relocation 829: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 830: invalid type
section [ 7] '.rela.dyn': relocation 830: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 831: invalid type
section [ 7] '.rela.dyn': relocation 831: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 832: invalid type
section [ 7] '.rela.dyn': relocation 832: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 833: invalid type
section [ 7] '.rela.dyn': relocation 833: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 834: invalid type
section [ 7] '.rela.dyn': relocation 834: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 835: invalid type
section [ 7] '.rela.dyn': relocation 835: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 836: invalid type
section [ 7] '.rela.dyn': relocation 836: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 837: invalid type
section [ 7] '.rela.dyn': relocation 837: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 838: invalid type
section [ 7] '.rela.dyn': relocation 838: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 839: invalid type
section [ 7] '.rela.dyn': relocation 839: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 840: invalid type
section [ 7] '.rela.dyn': relocation 840: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 841: invalid type
section [ 7] '.rela.dyn': relocation 841: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 842: invalid type
section [ 7] '.rela.dyn': relocation 842: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 843: invalid type
section [ 7] '.rela.dyn': relocation 843: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 844: invalid type
section [ 7] '.rela.dyn': relocation 844: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 845: invalid type
section [ 7] '.rela.dyn': relocation 845: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 846: invalid type
section [ 7] '.rela.dyn': relocation 846: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 847: invalid type
section [ 7] '.rela.dyn': relocation 847: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 848: invalid type
section [ 7] '.rela.dyn': relocation 848: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 849: invalid type
section [ 7] '.rela.dyn': relocation 849: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 850: invalid type
section [ 7] '.rela.dyn': relocation 850: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 851: invalid type
section [ 7] '.rela.dyn': relocation 851: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 852: invalid type
section [ 7] '.rela.dyn': relocation 852: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 853: invalid type
section [ 7] '.rela.dyn': relocation 853: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 854: invalid type
section [ 7] '.rela.dyn': relocation 854: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 855: invalid type
section [ 7] '.rela.dyn': relocation 855: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 856: invalid type
section [ 7] '.rela.dyn': relocation 856: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 857: invalid type
section [ 7] '.rela.dyn': relocation 857: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 858: invalid type
section [ 7] '.rela.dyn': relocation 858: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 859: invalid type
section [ 7] '.rela.dyn': relocation 859: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 860: invalid type
section [ 7] '.rela.dyn': relocation 860: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 861: invalid type
section [ 7] '.rela.dyn': relocation 861: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 862: invalid type
section [ 7] '.rela.dyn': relocation 862: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 863: invalid type
section [ 7] '.rela.dyn': relocation 863: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 864: invalid type
section [ 7] '.rela.dyn': relocation 864: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 865: invalid type
section [ 7] '.rela.dyn': relocation 865: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 866: invalid type
section [ 7] '.rela.dyn': relocation 866: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 867: invalid type
section [ 7] '.rela.dyn': relocation 867: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 868: invalid type
section [ 7] '.rela.dyn': relocation 868: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 869: invalid type
section [ 7] '.rela.dyn': relocation 869: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 870: invalid type
section [ 7] '.rela.dyn': relocation 870: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 871: invalid type
section [ 7] '.rela.dyn': relocation 871: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 872: invalid type
section [ 7] '.rela.dyn': relocation 872: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 873: invalid type
section [ 7] '.rela.dyn': relocation 873: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 874: invalid type
section [ 7] '.rela.dyn': relocation 874: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 875: invalid type
section [ 7] '.rela.dyn': relocation 876: invalid type
section [ 7] '.rela.dyn': relocation 877: invalid type
section [ 7] '.rela.dyn': relocation 878: invalid type
section [ 7] '.rela.dyn': relocation 879: invalid type
section [ 7] '.rela.dyn': relocation 880: invalid type
section [ 7] '.rela.dyn': relocation 881: invalid type
section [ 7] '.rela.dyn': relocation 882: invalid type
section [ 7] '.rela.dyn': relocation 883: invalid type
section [ 7] '.rela.dyn': relocation 884: invalid type
section [ 7] '.rela.dyn': relocation 885: invalid type
section [ 7] '.rela.dyn': relocation 886: invalid type
section [ 7] '.rela.dyn': relocation 887: invalid type
section [ 7] '.rela.dyn': relocation 888: invalid type
section [ 7] '.rela.dyn': relocation 889: invalid type
section [ 7] '.rela.dyn': relocation 890: invalid type
section [ 7] '.rela.dyn': relocation 891: invalid type
section [ 7] '.rela.dyn': relocation 892: invalid type
section [ 7] '.rela.dyn': relocation 893: invalid type
section [ 7] '.rela.dyn': relocation 894: invalid type
section [ 7] '.rela.dyn': relocation 895: invalid type
section [ 7] '.rela.dyn': relocation 896: invalid type
section [ 7] '.rela.dyn': relocation 897: invalid type
section [ 7] '.rela.dyn': relocation 898: invalid type
section [ 7] '.rela.dyn': relocation 899: invalid type
section [ 7] '.rela.dyn': relocation 900: invalid type
section [ 7] '.rela.dyn': relocation 901: invalid type
section [ 7] '.rela.dyn': relocation 902: invalid type
section [ 7] '.rela.dyn': relocation 903: invalid type
section [ 7] '.rela.dyn': relocation 904: invalid type
section [ 7] '.rela.dyn': relocation 905: invalid type
section [ 7] '.rela.dyn': relocation 906: invalid type
section [ 7] '.rela.dyn': relocation 907: invalid type
section [ 7] '.rela.dyn': relocation 908: invalid type
section [ 7] '.rela.dyn': relocation 909: invalid type
section [ 7] '.rela.dyn': relocation 910: invalid type
section [ 7] '.rela.dyn': relocation 911: invalid type
section [ 7] '.rela.dyn': relocation 912: invalid type
section [ 7] '.rela.dyn': relocation 913: invalid type
section [ 7] '.rela.dyn': relocation 914: invalid type
section [ 7] '.rela.dyn': relocation 915: invalid type
section [ 7] '.rela.dyn': relocation 916: invalid type
section [ 7] '.rela.dyn': relocation 917: invalid type
section [ 7] '.rela.dyn': relocation 918: invalid type
section [ 7] '.rela.dyn': relocation 919: invalid type
section [ 7] '.rela.dyn': relocation 920: invalid type
section [ 7] '.rela.dyn': relocation 921: invalid type
section [ 7] '.rela.dyn': relocation 922: invalid type
section [ 7] '.rela.dyn': relocation 923: invalid type
section [ 7] '.rela.dyn': relocation 924: invalid type
section [ 7] '.rela.dyn': relocation 925: invalid type
section [ 7] '.rela.dyn': relocation 926: invalid type
section [ 7] '.rela.dyn': relocation 927: invalid type
section [ 7] '.rela.dyn': relocation 928: invalid type
section [ 7] '.rela.dyn': relocation 929: invalid type
section [ 7] '.rela.dyn': relocation 930: invalid type
section [ 7] '.rela.dyn': relocation 931: invalid type
section [ 7] '.rela.dyn': relocation 932: invalid type
section [ 7] '.rela.dyn': relocation 933: invalid type
section [ 7] '.rela.dyn': relocation 934: invalid type
section [ 7] '.rela.dyn': relocation 935: invalid type
section [ 7] '.rela.dyn': relocation 936: invalid type
section [ 7] '.rela.dyn': relocation 937: invalid type
section [ 7] '.rela.dyn': relocation 938: invalid type
section [ 7] '.rela.dyn': relocation 939: invalid type
section [ 7] '.rela.dyn': relocation 940: invalid type
section [ 7] '.rela.dyn': relocation 941: invalid type
section [ 7] '.rela.dyn': relocation 942: invalid type
section [ 7] '.rela.dyn': relocation 943: invalid type
section [ 7] '.rela.dyn': relocation 944: invalid type
section [ 7] '.rela.dyn': relocation 945: invalid type
section [ 7] '.rela.dyn': relocation 946: invalid type
section [ 7] '.rela.dyn': relocation 947: invalid type
section [ 7] '.rela.dyn': relocation 948: invalid type
section [ 7] '.rela.dyn': relocation 949: invalid type
section [ 7] '.rela.dyn': relocation 950: invalid type
section [ 7] '.rela.dyn': relocation 951: invalid type
section [ 7] '.rela.dyn': relocation 952: invalid type
section [ 7] '.rela.dyn': relocation 953: invalid type
section [ 7] '.rela.dyn': relocation 954: invalid type
section [ 7] '.rela.dyn': relocation 955: invalid type
section [ 7] '.rela.dyn': relocation 956: invalid type
section [ 7] '.rela.dyn': relocation 957: invalid type
section [ 7] '.rela.dyn': relocation 958: invalid type
section [ 7] '.rela.dyn': relocation 959: invalid type
section [ 7] '.rela.dyn': relocation 960: invalid type
section [ 7] '.rela.dyn': relocation 961: invalid type
section [ 7] '.rela.dyn': relocation 962: invalid type
section [ 7] '.rela.dyn': relocation 963: invalid type
section [ 7] '.rela.dyn': relocation 964: invalid type
section [ 7] '.rela.dyn': relocation 965: invalid type
section [ 7] '.rela.dyn': relocation 966: invalid type
section [ 7] '.rela.dyn': relocation 967: invalid type
section [ 7] '.rela.dyn': relocation 968: invalid type
section [ 7] '.rela.dyn': relocation 969: invalid type
section [ 7] '.rela.dyn': relocation 970: invalid type
section [ 7] '.rela.dyn': relocation 971: invalid type
section [ 7] '.rela.dyn': relocation 972: invalid type
section [ 7] '.rela.dyn': relocation 973: invalid type
section [ 7] '.rela.dyn': relocation 974: invalid type
section [ 7] '.rela.dyn': relocation 975: invalid type
section [ 7] '.rela.dyn': relocation 976: invalid type
section [ 7] '.rela.dyn': relocation 977: invalid type
section [ 7] '.rela.dyn': relocation 978: invalid type
section [ 7] '.rela.dyn': relocation 979: invalid type
section [ 7] '.rela.dyn': relocation 980: invalid type
section [ 7] '.rela.dyn': relocation 981: invalid type
section [ 7] '.rela.dyn': relocation 982: invalid type
section [ 7] '.rela.dyn': relocation 983: invalid type
section [ 7] '.rela.dyn': relocation 984: invalid type
section [ 7] '.rela.dyn': relocation 985: invalid type
section [ 7] '.rela.dyn': relocation 986: invalid type
section [ 7] '.rela.dyn': relocation 987: invalid type
section [ 7] '.rela.dyn': relocation 988: invalid type
section [ 7] '.rela.dyn': relocation 989: invalid type
section [ 7] '.rela.dyn': relocation 990: invalid type
section [ 7] '.rela.dyn': relocation 991: invalid type
section [ 7] '.rela.dyn': relocation 992: invalid type
section [ 7] '.rela.dyn': relocation 993: invalid type
section [ 7] '.rela.dyn': relocation 994: invalid type
section [ 7] '.rela.dyn': relocation 995: invalid type
section [ 7] '.rela.dyn': relocation 996: invalid type
section [ 7] '.rela.dyn': relocation 997: invalid type
section [ 7] '.rela.dyn': relocation 998: invalid type
section [ 7] '.rela.dyn': relocation 999: invalid type
section [ 7] '.rela.dyn': relocation 1000: invalid type
section [ 7] '.rela.dyn': relocation 1001: invalid type
section [ 7] '.rela.dyn': relocation 1002: invalid type
section [ 7] '.rela.dyn': relocation 1003: invalid type
section [ 7] '.rela.dyn': relocation 1004: invalid type
section [ 7] '.rela.dyn': relocation 1005: invalid type
section [ 7] '.rela.dyn': relocation 1006: invalid type
section [ 7] '.rela.dyn': relocation 1007: invalid type
section [ 7] '.rela.dyn': relocation 1008: invalid type
section [ 7] '.rela.dyn': relocation 1009: invalid type
section [ 7] '.rela.dyn': relocation 1010: invalid type
section [ 7] '.rela.dyn': relocation 1011: invalid type
section [ 7] '.rela.dyn': relocation 1012: invalid type
section [ 7] '.rela.dyn': relocation 1013: invalid type
section [ 7] '.rela.dyn': relocation 1014: invalid type
section [ 7] '.rela.dyn': relocation 1015: invalid type
section [ 7] '.rela.dyn': relocation 1016: invalid type
section [ 7] '.rela.dyn': relocation 1017: invalid type
section [ 7] '.rela.dyn': relocation 1018: invalid type
section [ 7] '.rela.dyn': relocation 1019: invalid type
section [ 7] '.rela.dyn': relocation 1020: invalid type
section [ 7] '.rela.dyn': relocation 1021: invalid type
section [ 7] '.rela.dyn': relocation 1022: invalid type
section [ 7] '.rela.dyn': relocation 1023: invalid type
section [ 7] '.rela.dyn': relocation 1024: invalid type
section [ 7] '.rela.dyn': relocation 1025: invalid type
section [ 7] '.rela.dyn': relocation 1026: invalid type
section [ 7] '.rela.dyn': relocation 1027: invalid type
section [ 7] '.rela.dyn': relocation 1028: invalid type
section [ 7] '.rela.dyn': relocation 1029: invalid type
section [ 7] '.rela.dyn': relocation 1030: invalid type
section [ 7] '.rela.dyn': relocation 1031: invalid type
section [ 7] '.rela.dyn': relocation 1032: invalid type
section [ 7] '.rela.dyn': relocation 1033: invalid type
section [ 7] '.rela.dyn': relocation 1034: invalid type
section [ 7] '.rela.dyn': relocation 1035: invalid type
section [ 7] '.rela.dyn': relocation 1036: invalid type
section [ 7] '.rela.dyn': relocation 1037: invalid type
section [ 7] '.rela.dyn': relocation 1038: invalid type
section [ 7] '.rela.dyn': relocation 1039: invalid type
section [ 7] '.rela.dyn': relocation 1040: invalid type
section [ 7] '.rela.dyn': relocation 1041: invalid type
section [ 7] '.rela.dyn': relocation 1042: invalid type
section [ 7] '.rela.dyn': relocation 1043: invalid type
section [ 7] '.rela.dyn': relocation 1044: invalid type
section [ 7] '.rela.dyn': relocation 1045: invalid type
section [ 7] '.rela.dyn': relocation 1046: invalid type
section [ 7] '.rela.dyn': relocation 1047: invalid type
section [ 7] '.rela.dyn': relocation 1048: invalid type
section [ 7] '.rela.dyn': relocation 1049: invalid type
section [ 7] '.rela.dyn': relocation 1050: invalid type
section [ 7] '.rela.dyn': relocation 1051: invalid type
section [ 7] '.rela.dyn': relocation 1052: invalid type
section [ 7] '.rela.dyn': relocation 1053: invalid type
section [ 7] '.rela.dyn': relocation 1054: invalid type
section [ 7] '.rela.dyn': relocation 1055: invalid type
section [ 7] '.rela.dyn': relocation 1056: invalid type
section [ 7] '.rela.dyn': relocation 1057: invalid type
section [ 7] '.rela.dyn': relocation 1058: invalid type
section [ 7] '.rela.dyn': relocation 1059: invalid type
section [ 7] '.rela.dyn': relocation 1060: invalid type
section [ 7] '.rela.dyn': relocation 1061: invalid type
section [ 7] '.rela.dyn': relocation 1062: invalid type
section [ 7] '.rela.dyn': relocation 1063: invalid type
section [ 7] '.rela.dyn': relocation 1064: invalid type
section [ 7] '.rela.dyn': relocation 1065: invalid type
section [ 7] '.rela.dyn': relocation 1066: invalid type
section [ 7] '.rela.dyn': relocation 1067: invalid type
section [ 7] '.rela.dyn': relocation 1068: invalid type
section [ 7] '.rela.dyn': relocation 1069: invalid type
section [ 7] '.rela.dyn': relocation 1070: invalid type
section [ 7] '.rela.dyn': relocation 1071: invalid type
section [ 7] '.rela.dyn': relocation 1072: invalid type
section [ 7] '.rela.dyn': relocation 1073: invalid type
section [ 7] '.rela.dyn': relocation 1074: invalid type
section [ 7] '.rela.dyn': relocation 1075: invalid type
section [ 7] '.rela.dyn': relocation 1076: invalid type
section [ 7] '.rela.dyn': relocation 1077: invalid type
section [ 7] '.rela.dyn': relocation 1078: invalid type
section [ 7] '.rela.dyn': relocation 1079: invalid type
section [ 7] '.rela.dyn': relocation 1080: invalid type
section [ 7] '.rela.dyn': relocation 1081: invalid type
section [ 7] '.rela.dyn': relocation 1082: invalid type
section [ 7] '.rela.dyn': relocation 1083: invalid type
section [ 7] '.rela.dyn': relocation 1084: invalid type
section [ 7] '.rela.dyn': relocation 1085: invalid type
section [ 7] '.rela.dyn': relocation 1086: invalid type
section [ 7] '.rela.dyn': relocation 1087: invalid type
section [ 7] '.rela.dyn': relocation 1088: invalid type
section [ 7] '.rela.dyn': relocation 1089: invalid type
section [ 7] '.rela.dyn': relocation 1090: invalid type
section [ 7] '.rela.dyn': relocation 1091: invalid type
section [ 7] '.rela.dyn': relocation 1092: invalid type
section [ 7] '.rela.dyn': relocation 1093: invalid type
section [ 7] '.rela.dyn': relocation 1094: invalid type
section [ 7] '.rela.dyn': relocation 1095: invalid type
section [ 7] '.rela.dyn': relocation 1096: invalid type
section [ 7] '.rela.dyn': relocation 1097: invalid type
section [ 7] '.rela.dyn': relocation 1098: invalid type
section [ 7] '.rela.dyn': relocation 1099: invalid type
section [ 7] '.rela.dyn': relocation 1100: invalid type
section [ 7] '.rela.dyn': relocation 1101: invalid type
section [ 7] '.rela.dyn': relocation 1102: invalid type
section [ 7] '.rela.dyn': relocation 1103: invalid type
section [ 7] '.rela.dyn': relocation 1104: invalid type
section [ 7] '.rela.dyn': relocation 1105: invalid type
section [ 7] '.rela.dyn': relocation 1106: invalid type
section [ 7] '.rela.dyn': relocation 1107: invalid type
section [ 7] '.rela.dyn': relocation 1108: invalid type
section [ 7] '.rela.dyn': relocation 1109: invalid type
section [ 7] '.rela.dyn': relocation 1110: invalid type
section [ 7] '.rela.dyn': relocation 1111: invalid type
section [ 7] '.rela.dyn': relocation 1112: invalid type
section [ 7] '.rela.dyn': relocation 1113: invalid type
section [ 7] '.rela.dyn': relocation 1114: invalid type
section [ 7] '.rela.dyn': relocation 1115: invalid type
section [ 7] '.rela.dyn': relocation 1116: invalid type
section [ 7] '.rela.dyn': relocation 1117: invalid type
section [ 7] '.rela.dyn': relocation 1118: invalid type
section [ 7] '.rela.dyn': relocation 1119: invalid type
section [ 7] '.rela.dyn': relocation 1120: invalid type
section [ 7] '.rela.dyn': relocation 1121: invalid type
section [ 7] '.rela.dyn': relocation 1122: invalid type
section [ 7] '.rela.dyn': relocation 1123: invalid type
section [ 7] '.rela.dyn': relocation 1124: invalid type
section [ 7] '.rela.dyn': relocation 1125: invalid type
section [ 7] '.rela.dyn': relocation 1126: invalid type
section [ 7] '.rela.dyn': relocation 1127: invalid type
section [ 7] '.rela.dyn': relocation 1128: invalid type
section [ 7] '.rela.dyn': relocation 1129: invalid type
section [ 7] '.rela.dyn': relocation 1130: invalid type
section [ 7] '.rela.dyn': relocation 1131: invalid type
section [ 7] '.rela.dyn': relocation 1132: invalid type
section [ 7] '.rela.dyn': relocation 1133: invalid type
section [ 7] '.rela.dyn': relocation 1134: invalid type
section [ 7] '.rela.dyn': relocation 1135: invalid type
section [ 7] '.rela.dyn': relocation 1136: invalid type
section [ 7] '.rela.dyn': relocation 1137: invalid type
section [ 7] '.rela.dyn': relocation 1138: invalid type
section [ 7] '.rela.dyn': relocation 1139: invalid type
section [ 7] '.rela.dyn': relocation 1140: invalid type
section [ 7] '.rela.dyn': relocation 1141: invalid type
section [ 7] '.rela.dyn': relocation 1142: invalid type
section [ 7] '.rela.dyn': relocation 1143: invalid type
section [ 7] '.rela.dyn': relocation 1144: invalid type
section [ 7] '.rela.dyn': relocation 1145: invalid type
section [ 7] '.rela.dyn': relocation 1146: invalid type
section [ 7] '.rela.dyn': relocation 1147: invalid type
section [ 7] '.rela.dyn': relocation 1148: invalid type
section [ 7] '.rela.dyn': relocation 1149: invalid type
section [ 7] '.rela.dyn': relocation 1150: invalid type
section [ 7] '.rela.dyn': relocation 1151: invalid type
section [ 7] '.rela.dyn': relocation 1152: invalid type
section [ 7] '.rela.dyn': relocation 1153: invalid type
section [ 7] '.rela.dyn': relocation 1154: invalid type
section [ 7] '.rela.dyn': relocation 1155: invalid type
section [ 7] '.rela.dyn': relocation 1156: invalid type
section [ 7] '.rela.dyn': relocation 1157: invalid type
section [ 7] '.rela.dyn': relocation 1158: invalid type
section [ 7] '.rela.dyn': relocation 1159: invalid type
section [ 7] '.rela.dyn': relocation 1160: invalid type
section [ 7] '.rela.dyn': relocation 1161: invalid type
section [ 7] '.rela.dyn': relocation 1162: invalid type
section [ 7] '.rela.dyn': relocation 1163: invalid type
section [ 7] '.rela.dyn': relocation 1164: invalid type
section [ 7] '.rela.dyn': relocation 1165: invalid type
section [ 7] '.rela.dyn': relocation 1166: invalid type
section [ 7] '.rela.dyn': relocation 1167: invalid type
section [ 7] '.rela.dyn': relocation 1168: invalid type
section [ 7] '.rela.dyn': relocation 1169: invalid type
section [ 7] '.rela.dyn': relocation 1170: invalid type
section [ 7] '.rela.dyn': relocation 1171: invalid type
section [ 7] '.rela.dyn': relocation 1172: invalid type
section [ 7] '.rela.dyn': relocation 1173: invalid type
section [ 7] '.rela.dyn': relocation 1174: invalid type
section [ 7] '.rela.dyn': relocation 1175: invalid type
section [ 7] '.rela.dyn': relocation 1176: invalid type
section [ 7] '.rela.dyn': relocation 1177: invalid type
section [ 7] '.rela.dyn': relocation 1178: invalid type
section [ 7] '.rela.dyn': relocation 1179: invalid type
section [ 7] '.rela.dyn': relocation 1180: invalid type
section [ 7] '.rela.dyn': relocation 1181: invalid type
section [ 7] '.rela.dyn': relocation 1182: invalid type
section [ 7] '.rela.dyn': relocation 1183: invalid type
section [ 7] '.rela.dyn': relocation 1184: invalid type
section [ 7] '.rela.dyn': relocation 1185: invalid type
section [ 7] '.rela.dyn': relocation 1186: invalid type
section [ 7] '.rela.dyn': relocation 1187: invalid type
section [ 7] '.rela.dyn': relocation 1188: invalid type
section [ 7] '.rela.dyn': relocation 1189: invalid type
section [ 7] '.rela.dyn': relocation 1190: invalid type
section [ 7] '.rela.dyn': relocation 1191: invalid type
section [ 7] '.rela.dyn': relocation 1192: invalid type
section [ 7] '.rela.dyn': relocation 1193: invalid type
section [ 7] '.rela.dyn': relocation 1194: invalid type
section [ 7] '.rela.dyn': relocation 1195: invalid type
section [ 7] '.rela.dyn': relocation 1196: invalid type
section [ 7] '.rela.dyn': relocation 1197: invalid type
section [ 7] '.rela.dyn': relocation 1198: invalid type
section [ 7] '.rela.dyn': relocation 1199: invalid type
section [ 7] '.rela.dyn': relocation 1200: invalid type
section [ 7] '.rela.dyn': relocation 1201: invalid type
section [ 7] '.rela.dyn': relocation 1202: invalid type
section [ 7] '.rela.dyn': relocation 1203: invalid type
section [ 7] '.rela.dyn': relocation 1204: invalid type
section [ 7] '.rela.dyn': relocation 1205: invalid type
section [ 7] '.rela.dyn': relocation 1206: invalid type
section [ 7] '.rela.dyn': relocation 1207: invalid type
section [ 7] '.rela.dyn': relocation 1208: invalid type
section [ 7] '.rela.dyn': relocation 1209: invalid type
section [ 7] '.rela.dyn': relocation 1210: invalid type
section [ 7] '.rela.dyn': relocation 1211: invalid type
section [ 7] '.rela.dyn': relocation 1212: invalid type
section [ 7] '.rela.dyn': relocation 1213: invalid type
section [ 7] '.rela.dyn': relocation 1214: invalid type
section [ 7] '.rela.dyn': relocation 1215: invalid type
section [ 7] '.rela.dyn': relocation 1216: invalid type
section [ 7] '.rela.dyn': relocation 1217: invalid type
section [ 7] '.rela.dyn': relocation 1218: invalid type
section [ 7] '.rela.dyn': relocation 1219: invalid type
section [ 7] '.rela.dyn': relocation 1220: invalid type
section [ 7] '.rela.dyn': relocation 1221: invalid type
section [ 7] '.rela.dyn': relocation 1222: invalid type
section [ 7] '.rela.dyn': relocation 1223: invalid type
section [ 7] '.rela.dyn': relocation 1224: invalid type
section [ 7] '.rela.dyn': relocation 1225: invalid type
section [ 7] '.rela.dyn': relocation 1226: invalid type
section [ 7] '.rela.dyn': relocation 1227: invalid type
section [ 7] '.rela.dyn': relocation 1228: invalid type
section [ 7] '.rela.dyn': relocation 1229: invalid type
section [ 7] '.rela.dyn': relocation 1230: invalid type
section [ 7] '.rela.dyn': relocation 1231: invalid type
section [ 7] '.rela.dyn': relocation 1232: invalid type
section [ 7] '.rela.dyn': relocation 1233: invalid type
section [ 7] '.rela.dyn': relocation 1234: invalid type
section [ 7] '.rela.dyn': relocation 1235: invalid type
section [ 7] '.rela.dyn': relocation 1236: invalid type
section [ 7] '.rela.dyn': relocation 1237: invalid type
section [ 7] '.rela.dyn': relocation 1238: invalid type
section [ 7] '.rela.dyn': relocation 1239: invalid type
section [ 7] '.rela.dyn': relocation 1240: invalid type
section [ 7] '.rela.dyn': relocation 1241: invalid type
section [ 7] '.rela.dyn': relocation 1242: invalid type
section [ 7] '.rela.dyn': relocation 1243: invalid type
section [ 7] '.rela.dyn': relocation 1244: invalid type
section [ 7] '.rela.dyn': relocation 1245: invalid type
section [ 7] '.rela.dyn': relocation 1246: invalid type
section [ 7] '.rela.dyn': relocation 1247: invalid type
section [ 7] '.rela.dyn': relocation 1248: invalid type
section [ 7] '.rela.dyn': relocation 1249: invalid type
section [ 7] '.rela.dyn': relocation 1250: invalid type
section [ 7] '.rela.dyn': relocation 1251: invalid type
section [ 7] '.rela.dyn': relocation 1252: invalid type
section [ 7] '.rela.dyn': relocation 1253: invalid type
section [ 7] '.rela.dyn': relocation 1254: invalid type
section [ 7] '.rela.dyn': relocation 1255: invalid type
section [ 7] '.rela.dyn': relocation 1256: invalid type
section [ 7] '.rela.dyn': relocation 1257: invalid type
section [ 7] '.rela.dyn': relocation 1258: invalid type
section [ 7] '.rela.dyn': relocation 1259: invalid type
section [ 7] '.rela.dyn': relocation 1260: invalid type
section [ 7] '.rela.dyn': relocation 1261: invalid type
section [ 7] '.rela.dyn': relocation 1262: invalid type
section [ 7] '.rela.dyn': relocation 1263: invalid type
section [ 7] '.rela.dyn': relocation 1264: invalid type
section [ 7] '.rela.dyn': relocation 1265: invalid type
section [ 7] '.rela.dyn': relocation 1266: invalid type
section [ 7] '.rela.dyn': relocation 1267: invalid type
section [ 7] '.rela.dyn': relocation 1268: invalid type
section [ 7] '.rela.dyn': relocation 1269: invalid type
section [ 7] '.rela.dyn': relocation 1270: invalid type
section [ 7] '.rela.dyn': relocation 1271: invalid type
section [ 7] '.rela.dyn': relocation 1272: invalid type
section [ 7] '.rela.dyn': relocation 1273: invalid type
section [ 7] '.rela.dyn': relocation 1274: invalid type
section [ 7] '.rela.dyn': relocation 1275: invalid type
section [ 7] '.rela.dyn': relocation 1276: invalid type
section [ 7] '.rela.dyn': relocation 1277: invalid type
section [ 7] '.rela.dyn': relocation 1278: invalid type
section [ 7] '.rela.dyn': relocation 1279: invalid type
section [ 7] '.rela.dyn': relocation 1280: invalid type
section [ 7] '.rela.dyn': relocation 1281: invalid type
section [ 7] '.rela.dyn': relocation 1282: invalid type
section [ 7] '.rela.dyn': relocation 1283: invalid type
section [ 7] '.rela.dyn': relocation 1284: invalid type
section [ 7] '.rela.dyn': relocation 1285: invalid type
section [ 7] '.rela.dyn': relocation 1286: invalid type
section [ 7] '.rela.dyn': relocation 1287: invalid type
section [ 7] '.rela.dyn': relocation 1288: invalid type
section [ 7] '.rela.dyn': relocation 1289: invalid type
section [ 7] '.rela.dyn': relocation 1290: invalid type
section [ 7] '.rela.dyn': relocation 1291: invalid type
section [ 7] '.rela.dyn': relocation 1292: invalid type
section [ 7] '.rela.dyn': relocation 1293: invalid type
section [ 7] '.rela.dyn': relocation 1294: invalid type
section [ 7] '.rela.dyn': relocation 1295: invalid type
section [ 7] '.rela.dyn': relocation 1296: invalid type
section [ 7] '.rela.dyn': relocation 1297: invalid type
section [ 7] '.rela.dyn': relocation 1298: invalid type
section [ 7] '.rela.dyn': relocation 1299: invalid type
section [ 7] '.rela.dyn': relocation 1300: invalid type
section [ 7] '.rela.dyn': relocation 1301: invalid type
section [ 7] '.rela.dyn': relocation 1302: invalid type
section [ 7] '.rela.dyn': relocation 1303: invalid type
section [ 7] '.rela.dyn': relocation 1304: invalid type
section [ 7] '.rela.dyn': relocation 1305: invalid type
section [ 7] '.rela.dyn': relocation 1306: invalid type
section [ 7] '.rela.dyn': relocation 1307: invalid type
section [ 7] '.rela.dyn': relocation 1308: invalid type
section [ 7] '.rela.dyn': relocation 1309: invalid type
section [ 7] '.rela.dyn': relocation 1310: invalid type
section [ 7] '.rela.dyn': relocation 1311: invalid type
section [ 7] '.rela.dyn': relocation 1312: invalid type
section [ 7] '.rela.dyn': relocation 1313: invalid type
section [ 7] '.rela.dyn': relocation 1314: invalid type
section [ 7] '.rela.dyn': relocation 1315: invalid type
section [ 7] '.rela.dyn': relocation 1316: invalid type
section [ 7] '.rela.dyn': relocation 1317: invalid type
section [ 7] '.rela.dyn': relocation 1318: invalid type
section [ 7] '.rela.dyn': relocation 1319: invalid type
section [ 7] '.rela.dyn': relocation 1320: invalid type
section [ 7] '.rela.dyn': relocation 1321: invalid type
section [ 7] '.rela.dyn': relocation 1322: invalid type
section [ 7] '.rela.dyn': relocation 1323: invalid type
section [ 7] '.rela.dyn': relocation 1324: invalid type
section [ 7] '.rela.dyn': relocation 1325: invalid type
section [ 7] '.rela.dyn': relocation 1326: invalid type
section [ 7] '.rela.dyn': relocation 1327: invalid type
section [ 7] '.rela.dyn': relocation 1328: invalid type
section [ 7] '.rela.dyn': relocation 1329: invalid type
section [ 7] '.rela.dyn': relocation 1330: invalid type
section [ 7] '.rela.dyn': relocation 1331: invalid type
section [ 7] '.rela.dyn': relocation 1332: invalid type
section [ 7] '.rela.dyn': relocation 1333: invalid type
section [ 7] '.rela.dyn': relocation 1334: invalid type
section [ 7] '.rela.dyn': relocation 1335: invalid type
section [ 7] '.rela.dyn': relocation 1336: invalid type
section [ 7] '.rela.dyn': relocation 1337: invalid type
section [ 7] '.rela.dyn': relocation 1338: invalid type
section [ 7] '.rela.dyn': relocation 1339: invalid type
section [ 7] '.rela.dyn': relocation 1340: invalid type
section [ 7] '.rela.dyn': relocation 1341: invalid type
section [ 7] '.rela.dyn': relocation 1342: invalid type
section [ 7] '.rela.dyn': relocation 1343: invalid type
section [ 7] '.rela.dyn': relocation 1344: invalid type
section [ 7] '.rela.dyn': relocation 1345: invalid type
section [ 7] '.rela.dyn': relocation 1346: invalid type
section [ 7] '.rela.dyn': relocation 1347: invalid type
section [ 7] '.rela.dyn': relocation 1348: invalid type
section [ 7] '.rela.dyn': relocation 1349: invalid type
section [ 7] '.rela.dyn': relocation 1350: invalid type
section [ 7] '.rela.dyn': relocation 1351: invalid type
section [ 7] '.rela.dyn': relocation 1352: invalid type
section [ 7] '.rela.dyn': relocation 1353: invalid type
section [ 7] '.rela.dyn': relocation 1354: invalid type
section [ 7] '.rela.dyn': relocation 1355: invalid type
section [ 7] '.rela.dyn': relocation 1356: invalid type
section [ 7] '.rela.dyn': relocation 1357: invalid type
section [ 7] '.rela.dyn': relocation 1358: invalid type
section [ 7] '.rela.dyn': relocation 1359: invalid type
section [ 7] '.rela.dyn': relocation 1360: invalid type
section [ 7] '.rela.dyn': relocation 1361: invalid type
section [ 7] '.rela.dyn': relocation 1362: invalid type
section [ 7] '.rela.dyn': relocation 1363: invalid type
section [ 7] '.rela.dyn': relocation 1364: invalid type
section [ 7] '.rela.dyn': relocation 1365: invalid type
section [ 7] '.rela.dyn': relocation 1366: invalid type
section [ 7] '.rela.dyn': relocation 1367: invalid type
section [ 7] '.rela.dyn': relocation 1368: invalid type
section [ 7] '.rela.dyn': relocation 1369: invalid type
section [ 7] '.rela.dyn': relocation 1370: invalid type
section [ 7] '.rela.dyn': relocation 1371: invalid type
section [ 7] '.rela.dyn': relocation 1372: invalid type
section [ 7] '.rela.dyn': relocation 1373: invalid type
section [ 7] '.rela.dyn': relocation 1374: invalid type
section [ 7] '.rela.dyn': relocation 1375: invalid type
section [ 7] '.rela.dyn': relocation 1376: invalid type
section [ 7] '.rela.dyn': relocation 1377: invalid type
section [ 7] '.rela.dyn': relocation 1378: invalid type
section [ 7] '.rela.dyn': relocation 1379: invalid type
section [ 7] '.rela.dyn': relocation 1380: invalid type
section [ 7] '.rela.dyn': relocation 1381: invalid type
section [ 7] '.rela.dyn': relocation 1382: invalid type
section [ 7] '.rela.dyn': relocation 1383: invalid type
section [ 7] '.rela.dyn': relocation 1384: invalid type
section [ 7] '.rela.dyn': relocation 1385: invalid type
section [ 7] '.rela.dyn': relocation 1386: invalid type
section [ 7] '.rela.dyn': relocation 1387: invalid type
section [ 7] '.rela.dyn': relocation 1388: invalid type
section [ 7] '.rela.dyn': relocation 1389: invalid type
section [ 7] '.rela.dyn': relocation 1390: invalid type
section [ 7] '.rela.dyn': relocation 1391: invalid type
section [ 7] '.rela.dyn': relocation 1392: invalid type
section [ 7] '.rela.dyn': relocation 1393: invalid type
section [ 7] '.rela.dyn': relocation 1394: invalid type
section [ 7] '.rela.dyn': relocation 1395: invalid type
section [ 7] '.rela.dyn': relocation 1396: invalid type
section [ 7] '.rela.dyn': relocation 1397: invalid type
section [ 7] '.rela.dyn': relocation 1398: invalid type
section [ 7] '.rela.dyn': relocation 1399: invalid type
section [ 7] '.rela.dyn': relocation 1400: invalid type
section [ 7] '.rela.dyn': relocation 1401: invalid type
section [ 7] '.rela.dyn': relocation 1402: invalid type
section [ 7] '.rela.dyn': relocation 1403: invalid type
section [ 7] '.rela.dyn': relocation 1404: invalid type
section [ 7] '.rela.dyn': relocation 1405: invalid type
section [ 7] '.rela.dyn': relocation 1406: invalid type
section [ 7] '.rela.dyn': relocation 1407: invalid type
section [ 7] '.rela.dyn': relocation 1408: invalid type
section [ 7] '.rela.dyn': relocation 1409: invalid type
section [ 7] '.rela.dyn': relocation 1410: invalid type
section [ 7] '.rela.dyn': relocation 1411: invalid type
section [ 7] '.rela.dyn': relocation 1412: invalid type
section [ 7] '.rela.dyn': relocation 1413: invalid type
section [ 7] '.rela.dyn': relocation 1414: invalid type
section [ 7] '.rela.dyn': relocation 1415: invalid type
section [ 7] '.rela.dyn': relocation 1416: invalid type
section [ 7] '.rela.dyn': relocation 1417: invalid type
section [ 7] '.rela.dyn': relocation 1418: invalid type
section [ 7] '.rela.dyn': relocation 1419: invalid type
section [ 7] '.rela.dyn': relocation 1420: invalid type
section [ 7] '.rela.dyn': relocation 1421: invalid type
section [ 7] '.rela.dyn': relocation 1422: invalid type
section [ 7] '.rela.dyn': relocation 1423: invalid type
section [ 7] '.rela.dyn': relocation 1424: invalid type
section [ 7] '.rela.dyn': relocation 1425: invalid type
section [ 7] '.rela.dyn': relocation 1426: invalid type
section [ 7] '.rela.dyn': relocation 1427: invalid type
section [ 7] '.rela.dyn': relocation 1427: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1428: invalid type
section [ 7] '.rela.dyn': relocation 1428: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1429: invalid type
section [ 7] '.rela.dyn': relocation 1429: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1430: invalid type
section [ 7] '.rela.dyn': relocation 1430: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1431: invalid type
section [ 7] '.rela.dyn': relocation 1431: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1432: invalid type
section [ 7] '.rela.dyn': relocation 1432: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1433: invalid type
section [ 7] '.rela.dyn': relocation 1433: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1434: invalid type
section [ 7] '.rela.dyn': relocation 1434: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1435: invalid type
section [ 7] '.rela.dyn': relocation 1435: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1436: invalid type
section [ 7] '.rela.dyn': relocation 1436: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1437: invalid type
section [ 7] '.rela.dyn': relocation 1437: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1438: invalid type
section [ 7] '.rela.dyn': relocation 1438: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1439: invalid type
section [ 7] '.rela.dyn': relocation 1439: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1440: invalid type
section [ 7] '.rela.dyn': relocation 1440: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1441: invalid type
section [ 7] '.rela.dyn': relocation 1441: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1442: invalid type
section [ 7] '.rela.dyn': relocation 1442: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1443: invalid type
section [ 7] '.rela.dyn': relocation 1443: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1444: invalid type
section [ 7] '.rela.dyn': relocation 1444: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1445: invalid type
section [ 7] '.rela.dyn': relocation 1445: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1446: invalid type
section [ 7] '.rela.dyn': relocation 1446: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1447: invalid type
section [ 7] '.rela.dyn': relocation 1447: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1448: invalid type
section [ 7] '.rela.dyn': relocation 1448: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1449: invalid type
section [ 7] '.rela.dyn': relocation 1449: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1450: invalid type
section [ 7] '.rela.dyn': relocation 1450: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1451: invalid type
section [ 7] '.rela.dyn': relocation 1451: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1452: invalid type
section [ 7] '.rela.dyn': relocation 1452: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1453: invalid type
section [ 7] '.rela.dyn': relocation 1453: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1454: invalid type
section [ 7] '.rela.dyn': relocation 1454: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1455: invalid type
section [ 7] '.rela.dyn': relocation 1455: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 0: invalid type
section [ 8] '.rela.plt': relocation 0: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 1: invalid type
section [ 8] '.rela.plt': relocation 1: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 2: invalid type
section [ 8] '.rela.plt': relocation 2: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 3: invalid type
section [ 8] '.rela.plt': relocation 3: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 4: invalid type
section [ 8] '.rela.plt': relocation 4: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 5: invalid type
section [ 8] '.rela.plt': relocation 5: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 6: invalid type
section [ 8] '.rela.plt': relocation 6: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 7: invalid type
section [ 8] '.rela.plt': relocation 7: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 8: invalid type
section [ 8] '.rela.plt': relocation 8: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 9: invalid type
section [ 8] '.rela.plt': relocation 9: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 10: invalid type
section [ 8] '.rela.plt': relocation 10: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 11: invalid type
section [ 8] '.rela.plt': relocation 11: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 12: invalid type
section [ 8] '.rela.plt': relocation 12: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 13: invalid type
section [ 8] '.rela.plt': relocation 13: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 14: invalid type
section [ 8] '.rela.plt': relocation 14: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 15: invalid type
section [ 8] '.rela.plt': relocation 15: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 16: invalid type
section [ 8] '.rela.plt': relocation 16: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 17: invalid type
section [ 8] '.rela.plt': relocation 17: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 18: invalid type
section [ 8] '.rela.plt': relocation 18: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 19: invalid type
section [ 8] '.rela.plt': relocation 19: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 20: invalid type
section [ 8] '.rela.plt': relocation 20: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 21: invalid type
section [ 8] '.rela.plt': relocation 21: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 22: invalid type
section [ 8] '.rela.plt': relocation 22: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 23: invalid type
section [ 8] '.rela.plt': relocation 23: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 24: invalid type
section [ 8] '.rela.plt': relocation 24: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 25: invalid type
section [ 8] '.rela.plt': relocation 25: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 26: invalid type
section [ 8] '.rela.plt': relocation 26: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 27: invalid type
section [ 8] '.rela.plt': relocation 27: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 28: invalid type
section [ 8] '.rela.plt': relocation 28: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 29: invalid type
section [ 8] '.rela.plt': relocation 29: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 30: invalid type
section [ 8] '.rela.plt': relocation 30: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 31: invalid type
section [ 8] '.rela.plt': relocation 31: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 32: invalid type
section [ 8] '.rela.plt': relocation 32: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 33: invalid type
section [ 8] '.rela.plt': relocation 33: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 34: invalid type
section [ 8] '.rela.plt': relocation 34: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 35: invalid type
section [ 8] '.rela.plt': relocation 35: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 36: invalid type
section [ 8] '.rela.plt': relocation 36: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 37: invalid type
section [ 8] '.rela.plt': relocation 37: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 38: invalid type
section [ 8] '.rela.plt': relocation 38: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 39: invalid type
section [ 8] '.rela.plt': relocation 39: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 40: invalid type
section [ 8] '.rela.plt': relocation 40: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 41: invalid type
section [ 8] '.rela.plt': relocation 41: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 42: invalid type
section [ 8] '.rela.plt': relocation 42: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 43: invalid type
section [ 8] '.rela.plt': relocation 43: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 44: invalid type
section [ 8] '.rela.plt': relocation 44: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 45: invalid type
section [ 8] '.rela.plt': relocation 45: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 46: invalid type
section [ 8] '.rela.plt': relocation 46: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 47: invalid type
section [ 8] '.rela.plt': relocation 47: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 48: invalid type
section [ 8] '.rela.plt': relocation 48: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 49: invalid type
section [ 8] '.rela.plt': relocation 49: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 50: invalid type
section [ 8] '.rela.plt': relocation 50: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 51: invalid type
section [ 8] '.rela.plt': relocation 51: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 52: invalid type
section [ 8] '.rela.plt': relocation 52: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 53: invalid type
section [ 8] '.rela.plt': relocation 53: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 54: invalid type
section [ 8] '.rela.plt': relocation 54: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 55: invalid type
section [ 8] '.rela.plt': relocation 55: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 56: invalid type
section [ 8] '.rela.plt': relocation 56: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 57: invalid type
section [ 8] '.rela.plt': relocation 57: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 58: invalid type
section [ 8] '.rela.plt': relocation 58: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 59: invalid type
section [ 8] '.rela.plt': relocation 59: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 60: invalid type
section [ 8] '.rela.plt': relocation 60: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 61: invalid type
section [ 8] '.rela.plt': relocation 61: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 62: invalid type
section [ 8] '.rela.plt': relocation 62: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 63: invalid type
section [ 8] '.rela.plt': relocation 63: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 64: invalid type
section [ 8] '.rela.plt': relocation 64: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 65: invalid type
section [ 8] '.rela.plt': relocation 65: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 66: invalid type
section [ 8] '.rela.plt': relocation 66: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 67: invalid type
section [ 8] '.rela.plt': relocation 67: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 68: invalid type
section [ 8] '.rela.plt': relocation 68: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 69: invalid type
section [ 8] '.rela.plt': relocation 69: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 70: invalid type
section [ 8] '.rela.plt': relocation 70: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 71: invalid type
section [ 8] '.rela.plt': relocation 71: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 72: invalid type
section [ 8] '.rela.plt': relocation 72: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 73: invalid type
section [ 8] '.rela.plt': relocation 73: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 74: invalid type
section [ 8] '.rela.plt': relocation 74: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 75: invalid type
section [ 8] '.rela.plt': relocation 75: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 76: invalid type
section [ 8] '.rela.plt': relocation 76: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 77: invalid type
section [ 8] '.rela.plt': relocation 77: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 78: invalid type
section [ 8] '.rela.plt': relocation 78: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 79: invalid type
section [ 8] '.rela.plt': relocation 79: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 80: invalid type
section [ 8] '.rela.plt': relocation 80: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 81: invalid type
section [ 8] '.rela.plt': relocation 81: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 82: invalid type
section [ 8] '.rela.plt': relocation 82: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 83: invalid type
section [ 8] '.rela.plt': relocation 83: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 84: invalid type
section [ 8] '.rela.plt': relocation 84: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 85: invalid type
section [ 8] '.rela.plt': relocation 85: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 86: invalid type
section [ 8] '.rela.plt': relocation 86: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 87: invalid type
section [ 8] '.rela.plt': relocation 87: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 88: invalid type
section [ 8] '.rela.plt': relocation 88: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 89: invalid type
section [ 8] '.rela.plt': relocation 89: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 90: invalid type
section [ 8] '.rela.plt': relocation 90: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 91: invalid type
section [ 8] '.rela.plt': relocation 91: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 92: invalid type
section [ 8] '.rela.plt': relocation 92: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 93: invalid type
section [ 8] '.rela.plt': relocation 93: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 94: invalid type
section [ 8] '.rela.plt': relocation 94: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 95: invalid type
section [ 8] '.rela.plt': relocation 95: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 96: invalid type
section [ 8] '.rela.plt': relocation 96: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 97: invalid type
section [ 8] '.rela.plt': relocation 97: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 98: invalid type
section [ 8] '.rela.plt': relocation 98: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 99: invalid type
section [ 8] '.rela.plt': relocation 99: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 100: invalid type
section [ 8] '.rela.plt': relocation 100: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 101: invalid type
section [ 8] '.rela.plt': relocation 101: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 102: invalid type
section [ 8] '.rela.plt': relocation 102: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 103: invalid type
section [ 8] '.rela.plt': relocation 103: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 104: invalid type
section [ 8] '.rela.plt': relocation 104: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 105: invalid type
section [ 8] '.rela.plt': relocation 105: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 106: invalid type
section [ 8] '.rela.plt': relocation 106: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 107: invalid type
section [ 8] '.rela.plt': relocation 107: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 108: invalid type
section [ 8] '.rela.plt': relocation 108: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 109: invalid type
section [ 8] '.rela.plt': relocation 109: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 110: invalid type
section [ 8] '.rela.plt': relocation 110: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 111: invalid type
section [ 8] '.rela.plt': relocation 111: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 112: invalid type
section [ 8] '.rela.plt': relocation 112: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 113: invalid type
section [ 8] '.rela.plt': relocation 113: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 114: invalid type
section [ 8] '.rela.plt': relocation 114: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 115: invalid type
section [ 8] '.rela.plt': relocation 115: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 116: invalid type
section [ 8] '.rela.plt': relocation 116: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 117: invalid type
section [ 8] '.rela.plt': relocation 117: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 118: invalid type
section [ 8] '.rela.plt': relocation 118: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 119: invalid type
section [ 8] '.rela.plt': relocation 119: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 120: invalid type
section [ 8] '.rela.plt': relocation 120: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 121: invalid type
section [ 8] '.rela.plt': relocation 121: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 122: invalid type
section [ 8] '.rela.plt': relocation 122: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 123: invalid type
section [ 8] '.rela.plt': relocation 123: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 124: invalid type
section [ 8] '.rela.plt': relocation 124: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 125: invalid type
section [ 8] '.rela.plt': relocation 125: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 126: invalid type
section [ 8] '.rela.plt': relocation 126: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 127: invalid type
section [ 8] '.rela.plt': relocation 127: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 128: invalid type
section [ 8] '.rela.plt': relocation 128: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 129: invalid type
section [ 8] '.rela.plt': relocation 129: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 130: invalid type
section [ 8] '.rela.plt': relocation 130: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 131: invalid type
section [ 8] '.rela.plt': relocation 131: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 132: invalid type
section [ 8] '.rela.plt': relocation 132: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 133: invalid type
section [ 8] '.rela.plt': relocation 133: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 134: invalid type
section [ 8] '.rela.plt': relocation 134: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 135: invalid type
section [ 8] '.rela.plt': relocation 135: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 136: invalid type
section [ 8] '.rela.plt': relocation 136: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 137: invalid type
section [ 8] '.rela.plt': relocation 137: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 138: invalid type
section [ 8] '.rela.plt': relocation 138: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 139: invalid type
section [ 8] '.rela.plt': relocation 139: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 140: invalid type
section [ 8] '.rela.plt': relocation 140: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 141: invalid type
section [ 8] '.rela.plt': relocation 141: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 142: invalid type
section [ 8] '.rela.plt': relocation 142: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 143: invalid type
section [ 8] '.rela.plt': relocation 143: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 144: invalid type
section [ 8] '.rela.plt': relocation 144: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 145: invalid type
section [ 8] '.rela.plt': relocation 145: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 146: invalid type
section [ 8] '.rela.plt': relocation 146: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 147: invalid type
section [ 8] '.rela.plt': relocation 147: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 148: invalid type
section [ 8] '.rela.plt': relocation 148: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 149: invalid type
section [ 8] '.rela.plt': relocation 149: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 150: invalid type
section [ 8] '.rela.plt': relocation 150: read-only section modified but text relocation flag not set
section [19] '.dynamic': entry 20: unknown tag
section [19] '.dynamic': entry 21: unknown tag
section [37] '.symtab': _GLOBAL_OFFSET_TABLE_ symbol value 0x89f8 does not match .got section address 0x376bc
*** failure in /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/libdw/libdw.so
invalid machine flags: 0x300
section [ 7] '.rela.dyn': relocation 0: invalid type
section [ 7] '.rela.dyn': relocation 0: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1: invalid type
section [ 7] '.rela.dyn': relocation 1: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 2: invalid type
section [ 7] '.rela.dyn': relocation 2: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 3: invalid type
section [ 7] '.rela.dyn': relocation 3: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 4: invalid type
section [ 7] '.rela.dyn': relocation 4: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 5: invalid type
section [ 7] '.rela.dyn': relocation 5: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 6: invalid type
section [ 7] '.rela.dyn': relocation 6: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 7: invalid type
section [ 7] '.rela.dyn': relocation 7: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 8: invalid type
section [ 7] '.rela.dyn': relocation 8: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 9: invalid type
section [ 7] '.rela.dyn': relocation 9: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 10: invalid type
section [ 7] '.rela.dyn': relocation 10: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 11: invalid type
section [ 7] '.rela.dyn': relocation 11: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 12: invalid type
section [ 7] '.rela.dyn': relocation 12: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 13: invalid type
section [ 7] '.rela.dyn': relocation 13: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 14: invalid type
section [ 7] '.rela.dyn': relocation 14: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 15: invalid type
section [ 7] '.rela.dyn': relocation 15: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 16: invalid type
section [ 7] '.rela.dyn': relocation 16: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 17: invalid type
section [ 7] '.rela.dyn': relocation 17: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 18: invalid type
section [ 7] '.rela.dyn': relocation 18: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 19: invalid type
section [ 7] '.rela.dyn': relocation 19: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 20: invalid type
section [ 7] '.rela.dyn': relocation 20: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 21: invalid type
section [ 7] '.rela.dyn': relocation 21: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 22: invalid type
section [ 7] '.rela.dyn': relocation 22: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 23: invalid type
section [ 7] '.rela.dyn': relocation 23: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 24: invalid type
section [ 7] '.rela.dyn': relocation 24: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 25: invalid type
section [ 7] '.rela.dyn': relocation 25: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 26: invalid type
section [ 7] '.rela.dyn': relocation 26: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 27: invalid type
section [ 7] '.rela.dyn': relocation 27: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 28: invalid type
section [ 7] '.rela.dyn': relocation 28: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 29: invalid type
section [ 7] '.rela.dyn': relocation 29: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 30: invalid type
section [ 7] '.rela.dyn': relocation 30: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 31: invalid type
section [ 7] '.rela.dyn': relocation 31: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 32: invalid type
section [ 7] '.rela.dyn': relocation 32: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 33: invalid type
section [ 7] '.rela.dyn': relocation 33: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 34: invalid type
section [ 7] '.rela.dyn': relocation 34: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 35: invalid type
section [ 7] '.rela.dyn': relocation 35: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 36: invalid type
section [ 7] '.rela.dyn': relocation 36: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 37: invalid type
section [ 7] '.rela.dyn': relocation 37: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 38: invalid type
section [ 7] '.rela.dyn': relocation 38: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 39: invalid type
section [ 7] '.rela.dyn': relocation 39: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 40: invalid type
section [ 7] '.rela.dyn': relocation 40: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 41: invalid type
section [ 7] '.rela.dyn': relocation 41: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 42: invalid type
section [ 7] '.rela.dyn': relocation 42: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 43: invalid type
section [ 7] '.rela.dyn': relocation 43: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 44: invalid type
section [ 7] '.rela.dyn': relocation 44: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 45: invalid type
section [ 7] '.rela.dyn': relocation 45: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 46: invalid type
section [ 7] '.rela.dyn': relocation 46: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 47: invalid type
section [ 7] '.rela.dyn': relocation 47: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 48: invalid type
section [ 7] '.rela.dyn': relocation 48: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 49: invalid type
section [ 7] '.rela.dyn': relocation 49: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 50: invalid type
section [ 7] '.rela.dyn': relocation 50: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 51: invalid type
section [ 7] '.rela.dyn': relocation 51: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 52: invalid type
section [ 7] '.rela.dyn': relocation 52: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 53: invalid type
section [ 7] '.rela.dyn': relocation 53: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 54: invalid type
section [ 7] '.rela.dyn': relocation 54: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 55: invalid type
section [ 7] '.rela.dyn': relocation 55: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 56: invalid type
section [ 7] '.rela.dyn': relocation 56: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 57: invalid type
section [ 7] '.rela.dyn': relocation 57: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 58: invalid type
section [ 7] '.rela.dyn': relocation 58: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 59: invalid type
section [ 7] '.rela.dyn': relocation 59: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 60: invalid type
section [ 7] '.rela.dyn': relocation 60: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 61: invalid type
section [ 7] '.rela.dyn': relocation 61: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 62: invalid type
section [ 7] '.rela.dyn': relocation 62: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 63: invalid type
section [ 7] '.rela.dyn': relocation 63: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 64: invalid type
section [ 7] '.rela.dyn': relocation 64: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 65: invalid type
section [ 7] '.rela.dyn': relocation 65: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 66: invalid type
section [ 7] '.rela.dyn': relocation 66: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 67: invalid type
section [ 7] '.rela.dyn': relocation 67: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 68: invalid type
section [ 7] '.rela.dyn': relocation 68: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 69: invalid type
section [ 7] '.rela.dyn': relocation 69: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 70: invalid type
section [ 7] '.rela.dyn': relocation 70: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 71: invalid type
section [ 7] '.rela.dyn': relocation 71: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 72: invalid type
section [ 7] '.rela.dyn': relocation 72: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 73: invalid type
section [ 7] '.rela.dyn': relocation 73: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 74: invalid type
section [ 7] '.rela.dyn': relocation 74: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 75: invalid type
section [ 7] '.rela.dyn': relocation 75: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 76: invalid type
section [ 7] '.rela.dyn': relocation 76: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 77: invalid type
section [ 7] '.rela.dyn': relocation 77: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 78: invalid type
section [ 7] '.rela.dyn': relocation 78: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 79: invalid type
section [ 7] '.rela.dyn': relocation 79: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 80: invalid type
section [ 7] '.rela.dyn': relocation 80: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 81: invalid type
section [ 7] '.rela.dyn': relocation 81: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 82: invalid type
section [ 7] '.rela.dyn': relocation 82: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 83: invalid type
section [ 7] '.rela.dyn': relocation 83: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 84: invalid type
section [ 7] '.rela.dyn': relocation 84: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 85: invalid type
section [ 7] '.rela.dyn': relocation 85: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 86: invalid type
section [ 7] '.rela.dyn': relocation 86: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 87: invalid type
section [ 7] '.rela.dyn': relocation 87: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 88: invalid type
section [ 7] '.rela.dyn': relocation 88: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 89: invalid type
section [ 7] '.rela.dyn': relocation 89: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 90: invalid type
section [ 7] '.rela.dyn': relocation 90: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 91: invalid type
section [ 7] '.rela.dyn': relocation 91: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 92: invalid type
section [ 7] '.rela.dyn': relocation 92: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 93: invalid type
section [ 7] '.rela.dyn': relocation 93: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 94: invalid type
section [ 7] '.rela.dyn': relocation 94: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 95: invalid type
section [ 7] '.rela.dyn': relocation 95: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 96: invalid type
section [ 7] '.rela.dyn': relocation 96: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 97: invalid type
section [ 7] '.rela.dyn': relocation 97: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 98: invalid type
section [ 7] '.rela.dyn': relocation 98: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 99: invalid type
section [ 7] '.rela.dyn': relocation 99: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 100: invalid type
section [ 7] '.rela.dyn': relocation 100: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 101: invalid type
section [ 7] '.rela.dyn': relocation 101: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 102: invalid type
section [ 7] '.rela.dyn': relocation 102: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 103: invalid type
section [ 7] '.rela.dyn': relocation 103: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 104: invalid type
section [ 7] '.rela.dyn': relocation 104: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 105: invalid type
section [ 7] '.rela.dyn': relocation 105: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 106: invalid type
section [ 7] '.rela.dyn': relocation 106: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 107: invalid type
section [ 7] '.rela.dyn': relocation 107: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 108: invalid type
section [ 7] '.rela.dyn': relocation 108: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 109: invalid type
section [ 7] '.rela.dyn': relocation 109: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 110: invalid type
section [ 7] '.rela.dyn': relocation 110: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 111: invalid type
section [ 7] '.rela.dyn': relocation 111: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 112: invalid type
section [ 7] '.rela.dyn': relocation 112: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 113: invalid type
section [ 7] '.rela.dyn': relocation 113: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 114: invalid type
section [ 7] '.rela.dyn': relocation 114: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 115: invalid type
section [ 7] '.rela.dyn': relocation 115: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 116: invalid type
section [ 7] '.rela.dyn': relocation 116: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 117: invalid type
section [ 7] '.rela.dyn': relocation 117: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 118: invalid type
section [ 7] '.rela.dyn': relocation 118: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 119: invalid type
section [ 7] '.rela.dyn': relocation 119: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 120: invalid type
section [ 7] '.rela.dyn': relocation 120: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 121: invalid type
section [ 7] '.rela.dyn': relocation 121: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 122: invalid type
section [ 7] '.rela.dyn': relocation 122: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 123: invalid type
section [ 7] '.rela.dyn': relocation 123: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 124: invalid type
section [ 7] '.rela.dyn': relocation 124: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 125: invalid type
section [ 7] '.rela.dyn': relocation 125: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 126: invalid type
section [ 7] '.rela.dyn': relocation 126: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 127: invalid type
section [ 7] '.rela.dyn': relocation 127: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 128: invalid type
section [ 7] '.rela.dyn': relocation 128: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 129: invalid type
section [ 7] '.rela.dyn': relocation 129: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 130: invalid type
section [ 7] '.rela.dyn': relocation 130: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 131: invalid type
section [ 7] '.rela.dyn': relocation 131: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 132: invalid type
section [ 7] '.rela.dyn': relocation 132: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 133: invalid type
section [ 7] '.rela.dyn': relocation 133: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 134: invalid type
section [ 7] '.rela.dyn': relocation 134: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 135: invalid type
section [ 7] '.rela.dyn': relocation 135: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 136: invalid type
section [ 7] '.rela.dyn': relocation 136: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 137: invalid type
section [ 7] '.rela.dyn': relocation 137: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 138: invalid type
section [ 7] '.rela.dyn': relocation 138: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 139: invalid type
section [ 7] '.rela.dyn': relocation 139: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 140: invalid type
section [ 7] '.rela.dyn': relocation 140: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 141: invalid type
section [ 7] '.rela.dyn': relocation 141: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 142: invalid type
section [ 7] '.rela.dyn': relocation 142: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 143: invalid type
section [ 7] '.rela.dyn': relocation 143: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 144: invalid type
section [ 7] '.rela.dyn': relocation 144: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 145: invalid type
section [ 7] '.rela.dyn': relocation 145: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 146: invalid type
section [ 7] '.rela.dyn': relocation 146: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 147: invalid type
section [ 7] '.rela.dyn': relocation 147: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 148: invalid type
section [ 7] '.rela.dyn': relocation 148: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 149: invalid type
section [ 7] '.rela.dyn': relocation 149: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 150: invalid type
section [ 7] '.rela.dyn': relocation 150: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 151: invalid type
section [ 7] '.rela.dyn': relocation 151: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 152: invalid type
section [ 7] '.rela.dyn': relocation 152: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 153: invalid type
section [ 7] '.rela.dyn': relocation 153: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 154: invalid type
section [ 7] '.rela.dyn': relocation 154: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 155: invalid type
section [ 7] '.rela.dyn': relocation 155: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 156: invalid type
section [ 7] '.rela.dyn': relocation 156: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 157: invalid type
section [ 7] '.rela.dyn': relocation 157: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 158: invalid type
section [ 7] '.rela.dyn': relocation 158: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 159: invalid type
section [ 7] '.rela.dyn': relocation 159: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 160: invalid type
section [ 7] '.rela.dyn': relocation 160: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 161: invalid type
section [ 7] '.rela.dyn': relocation 161: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 162: invalid type
section [ 7] '.rela.dyn': relocation 162: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 163: invalid type
section [ 7] '.rela.dyn': relocation 163: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 164: invalid type
section [ 7] '.rela.dyn': relocation 164: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 165: invalid type
section [ 7] '.rela.dyn': relocation 165: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 166: invalid type
section [ 7] '.rela.dyn': relocation 166: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 167: invalid type
section [ 7] '.rela.dyn': relocation 167: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 168: invalid type
section [ 7] '.rela.dyn': relocation 168: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 169: invalid type
section [ 7] '.rela.dyn': relocation 169: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 170: invalid type
section [ 7] '.rela.dyn': relocation 170: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 171: invalid type
section [ 7] '.rela.dyn': relocation 171: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 172: invalid type
section [ 7] '.rela.dyn': relocation 172: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 173: invalid type
section [ 7] '.rela.dyn': relocation 173: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 174: invalid type
section [ 7] '.rela.dyn': relocation 174: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 175: invalid type
section [ 7] '.rela.dyn': relocation 175: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 176: invalid type
section [ 7] '.rela.dyn': relocation 176: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 177: invalid type
section [ 7] '.rela.dyn': relocation 177: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 178: invalid type
section [ 7] '.rela.dyn': relocation 178: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 179: invalid type
section [ 7] '.rela.dyn': relocation 179: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 180: invalid type
section [ 7] '.rela.dyn': relocation 180: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 181: invalid type
section [ 7] '.rela.dyn': relocation 181: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 182: invalid type
section [ 7] '.rela.dyn': relocation 182: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 183: invalid type
section [ 7] '.rela.dyn': relocation 183: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 184: invalid type
section [ 7] '.rela.dyn': relocation 184: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 185: invalid type
section [ 7] '.rela.dyn': relocation 185: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 186: invalid type
section [ 7] '.rela.dyn': relocation 186: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 187: invalid type
section [ 7] '.rela.dyn': relocation 187: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 188: invalid type
section [ 7] '.rela.dyn': relocation 188: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 189: invalid type
section [ 7] '.rela.dyn': relocation 189: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 190: invalid type
section [ 7] '.rela.dyn': relocation 190: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 191: invalid type
section [ 7] '.rela.dyn': relocation 191: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 192: invalid type
section [ 7] '.rela.dyn': relocation 192: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 193: invalid type
section [ 7] '.rela.dyn': relocation 193: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 194: invalid type
section [ 7] '.rela.dyn': relocation 194: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 195: invalid type
section [ 7] '.rela.dyn': relocation 195: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 196: invalid type
section [ 7] '.rela.dyn': relocation 196: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 197: invalid type
section [ 7] '.rela.dyn': relocation 197: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 198: invalid type
section [ 7] '.rela.dyn': relocation 198: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 199: invalid type
section [ 7] '.rela.dyn': relocation 199: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 200: invalid type
section [ 7] '.rela.dyn': relocation 200: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 201: invalid type
section [ 7] '.rela.dyn': relocation 202: invalid type
section [ 7] '.rela.dyn': relocation 203: invalid type
section [ 7] '.rela.dyn': relocation 204: invalid type
section [ 7] '.rela.dyn': relocation 205: invalid type
section [ 7] '.rela.dyn': relocation 206: invalid type
section [ 7] '.rela.dyn': relocation 207: invalid type
section [ 7] '.rela.dyn': relocation 208: invalid type
section [ 7] '.rela.dyn': relocation 209: invalid type
section [ 7] '.rela.dyn': relocation 210: invalid type
section [ 7] '.rela.dyn': relocation 211: invalid type
section [ 7] '.rela.dyn': relocation 212: invalid type
section [ 7] '.rela.dyn': relocation 213: invalid type
section [ 7] '.rela.dyn': relocation 214: invalid type
section [ 7] '.rela.dyn': relocation 215: invalid type
section [ 7] '.rela.dyn': relocation 216: invalid type
section [ 7] '.rela.dyn': relocation 217: invalid type
section [ 7] '.rela.dyn': relocation 218: invalid type
section [ 7] '.rela.dyn': relocation 219: invalid type
section [ 7] '.rela.dyn': relocation 220: invalid type
section [ 7] '.rela.dyn': relocation 221: invalid type
section [ 7] '.rela.dyn': relocation 222: invalid type
section [ 7] '.rela.dyn': relocation 223: invalid type
section [ 7] '.rela.dyn': relocation 224: invalid type
section [ 7] '.rela.dyn': relocation 225: invalid type
section [ 7] '.rela.dyn': relocation 226: invalid type
section [ 7] '.rela.dyn': relocation 227: invalid type
section [ 7] '.rela.dyn': relocation 228: invalid type
section [ 7] '.rela.dyn': relocation 229: invalid type
section [ 7] '.rela.dyn': relocation 230: invalid type
section [ 7] '.rela.dyn': relocation 231: invalid type
section [ 7] '.rela.dyn': relocation 232: invalid type
section [ 7] '.rela.dyn': relocation 233: invalid type
section [ 7] '.rela.dyn': relocation 234: invalid type
section [ 7] '.rela.dyn': relocation 235: invalid type
section [ 7] '.rela.dyn': relocation 236: invalid type
section [ 7] '.rela.dyn': relocation 237: invalid type
section [ 7] '.rela.dyn': relocation 238: invalid type
section [ 7] '.rela.dyn': relocation 239: invalid type
section [ 7] '.rela.dyn': relocation 240: invalid type
section [ 7] '.rela.dyn': relocation 241: invalid type
section [ 7] '.rela.dyn': relocation 242: invalid type
section [ 7] '.rela.dyn': relocation 243: invalid type
section [ 7] '.rela.dyn': relocation 244: invalid type
section [ 7] '.rela.dyn': relocation 245: invalid type
section [ 7] '.rela.dyn': relocation 246: invalid type
section [ 7] '.rela.dyn': relocation 247: invalid type
section [ 7] '.rela.dyn': relocation 248: invalid type
section [ 7] '.rela.dyn': relocation 249: invalid type
section [ 7] '.rela.dyn': relocation 250: invalid type
section [ 7] '.rela.dyn': relocation 251: invalid type
section [ 7] '.rela.dyn': relocation 252: invalid type
section [ 7] '.rela.dyn': relocation 253: invalid type
section [ 7] '.rela.dyn': relocation 254: invalid type
section [ 7] '.rela.dyn': relocation 255: invalid type
section [ 7] '.rela.dyn': relocation 256: invalid type
section [ 7] '.rela.dyn': relocation 257: invalid type
section [ 7] '.rela.dyn': relocation 258: invalid type
section [ 7] '.rela.dyn': relocation 259: invalid type
section [ 7] '.rela.dyn': relocation 260: invalid type
section [ 7] '.rela.dyn': relocation 261: invalid type
section [ 7] '.rela.dyn': relocation 262: invalid type
section [ 7] '.rela.dyn': relocation 263: invalid type
section [ 7] '.rela.dyn': relocation 264: invalid type
section [ 7] '.rela.dyn': relocation 265: invalid type
section [ 7] '.rela.dyn': relocation 266: invalid type
section [ 7] '.rela.dyn': relocation 267: invalid type
section [ 7] '.rela.dyn': relocation 268: invalid type
section [ 7] '.rela.dyn': relocation 269: invalid type
section [ 7] '.rela.dyn': relocation 270: invalid type
section [ 7] '.rela.dyn': relocation 271: invalid type
section [ 7] '.rela.dyn': relocation 272: invalid type
section [ 7] '.rela.dyn': relocation 273: invalid type
section [ 7] '.rela.dyn': relocation 274: invalid type
section [ 7] '.rela.dyn': relocation 275: invalid type
section [ 7] '.rela.dyn': relocation 276: invalid type
section [ 7] '.rela.dyn': relocation 277: invalid type
section [ 7] '.rela.dyn': relocation 278: invalid type
section [ 7] '.rela.dyn': relocation 279: invalid type
section [ 7] '.rela.dyn': relocation 280: invalid type
section [ 7] '.rela.dyn': relocation 281: invalid type
section [ 7] '.rela.dyn': relocation 282: invalid type
section [ 7] '.rela.dyn': relocation 283: invalid type
section [ 7] '.rela.dyn': relocation 284: invalid type
section [ 7] '.rela.dyn': relocation 285: invalid type
section [ 7] '.rela.dyn': relocation 286: invalid type
section [ 7] '.rela.dyn': relocation 287: invalid type
section [ 7] '.rela.dyn': relocation 288: invalid type
section [ 7] '.rela.dyn': relocation 289: invalid type
section [ 7] '.rela.dyn': relocation 290: invalid type
section [ 7] '.rela.dyn': relocation 291: invalid type
section [ 7] '.rela.dyn': relocation 292: invalid type
section [ 7] '.rela.dyn': relocation 293: invalid type
section [ 7] '.rela.dyn': relocation 294: invalid type
section [ 7] '.rela.dyn': relocation 295: invalid type
section [ 7] '.rela.dyn': relocation 296: invalid type
section [ 7] '.rela.dyn': relocation 297: invalid type
section [ 7] '.rela.dyn': relocation 298: invalid type
section [ 7] '.rela.dyn': relocation 299: invalid type
section [ 7] '.rela.dyn': relocation 300: invalid type
section [ 7] '.rela.dyn': relocation 301: invalid type
section [ 7] '.rela.dyn': relocation 302: invalid type
section [ 7] '.rela.dyn': relocation 303: invalid type
section [ 7] '.rela.dyn': relocation 304: invalid type
section [ 7] '.rela.dyn': relocation 305: invalid type
section [ 7] '.rela.dyn': relocation 306: invalid type
section [ 7] '.rela.dyn': relocation 307: invalid type
section [ 7] '.rela.dyn': relocation 308: invalid type
section [ 7] '.rela.dyn': relocation 309: invalid type
section [ 7] '.rela.dyn': relocation 310: invalid type
section [ 7] '.rela.dyn': relocation 311: invalid type
section [ 7] '.rela.dyn': relocation 312: invalid type
section [ 7] '.rela.dyn': relocation 313: invalid type
section [ 7] '.rela.dyn': relocation 314: invalid type
section [ 7] '.rela.dyn': relocation 315: invalid type
section [ 7] '.rela.dyn': relocation 316: invalid type
section [ 7] '.rela.dyn': relocation 317: invalid type
section [ 7] '.rela.dyn': relocation 318: invalid type
section [ 7] '.rela.dyn': relocation 319: invalid type
section [ 7] '.rela.dyn': relocation 320: invalid type
section [ 7] '.rela.dyn': relocation 321: invalid type
section [ 7] '.rela.dyn': relocation 322: invalid type
section [ 7] '.rela.dyn': relocation 323: invalid type
section [ 7] '.rela.dyn': relocation 324: invalid type
section [ 7] '.rela.dyn': relocation 325: invalid type
section [ 7] '.rela.dyn': relocation 326: invalid type
section [ 7] '.rela.dyn': relocation 327: invalid type
section [ 7] '.rela.dyn': relocation 327: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 328: invalid type
section [ 7] '.rela.dyn': relocation 328: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 329: invalid type
section [ 7] '.rela.dyn': relocation 329: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 330: invalid type
section [ 7] '.rela.dyn': relocation 330: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 331: invalid type
section [ 7] '.rela.dyn': relocation 331: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 332: invalid type
section [ 7] '.rela.dyn': relocation 332: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 333: invalid type
section [ 7] '.rela.dyn': relocation 333: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 334: invalid type
section [ 7] '.rela.dyn': relocation 334: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 335: invalid type
section [ 7] '.rela.dyn': relocation 335: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 0: invalid type
section [ 8] '.rela.plt': relocation 0: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 1: invalid type
section [ 8] '.rela.plt': relocation 1: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 2: invalid type
section [ 8] '.rela.plt': relocation 2: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 3: invalid type
section [ 8] '.rela.plt': relocation 3: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 4: invalid type
section [ 8] '.rela.plt': relocation 4: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 5: invalid type
section [ 8] '.rela.plt': relocation 5: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 6: invalid type
section [ 8] '.rela.plt': relocation 6: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 7: invalid type
section [ 8] '.rela.plt': relocation 7: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 8: invalid type
section [ 8] '.rela.plt': relocation 8: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 9: invalid type
section [ 8] '.rela.plt': relocation 9: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 10: invalid type
section [ 8] '.rela.plt': relocation 10: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 11: invalid type
section [ 8] '.rela.plt': relocation 11: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 12: invalid type
section [ 8] '.rela.plt': relocation 12: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 13: invalid type
section [ 8] '.rela.plt': relocation 13: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 14: invalid type
section [ 8] '.rela.plt': relocation 14: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 15: invalid type
section [ 8] '.rela.plt': relocation 15: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 16: invalid type
section [ 8] '.rela.plt': relocation 16: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 17: invalid type
section [ 8] '.rela.plt': relocation 17: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 18: invalid type
section [ 8] '.rela.plt': relocation 18: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 19: invalid type
section [ 8] '.rela.plt': relocation 19: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 20: invalid type
section [ 8] '.rela.plt': relocation 20: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 21: invalid type
section [ 8] '.rela.plt': relocation 21: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 22: invalid type
section [ 8] '.rela.plt': relocation 22: read-only section modified but text relocation flag not set
section [17] '.dynamic': entry 17: unknown tag
section [17] '.dynamic': entry 18: unknown tag
section [34] '.symtab': _GLOBAL_OFFSET_TABLE_ symbol value 0x16b8 does not match .got section address 0xb3a8
*** failure in /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/backends/libebl_i386.so
invalid machine flags: 0x300
section [ 7] '.rela.dyn': relocation 0: invalid type
section [ 7] '.rela.dyn': relocation 0: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 1: invalid type
section [ 7] '.rela.dyn': relocation 1: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 2: invalid type
section [ 7] '.rela.dyn': relocation 2: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 3: invalid type
section [ 7] '.rela.dyn': relocation 3: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 4: invalid type
section [ 7] '.rela.dyn': relocation 4: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 5: invalid type
section [ 7] '.rela.dyn': relocation 5: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 6: invalid type
section [ 7] '.rela.dyn': relocation 6: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 7: invalid type
section [ 7] '.rela.dyn': relocation 7: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 8: invalid type
section [ 7] '.rela.dyn': relocation 8: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 9: invalid type
section [ 7] '.rela.dyn': relocation 9: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 10: invalid type
section [ 7] '.rela.dyn': relocation 10: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 11: invalid type
section [ 7] '.rela.dyn': relocation 11: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 12: invalid type
section [ 7] '.rela.dyn': relocation 12: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 13: invalid type
section [ 7] '.rela.dyn': relocation 13: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 14: invalid type
section [ 7] '.rela.dyn': relocation 14: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 15: invalid type
section [ 7] '.rela.dyn': relocation 15: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 16: invalid type
section [ 7] '.rela.dyn': relocation 16: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 17: invalid type
section [ 7] '.rela.dyn': relocation 17: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 18: invalid type
section [ 7] '.rela.dyn': relocation 18: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 19: invalid type
section [ 7] '.rela.dyn': relocation 19: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 20: invalid type
section [ 7] '.rela.dyn': relocation 20: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 21: invalid type
section [ 7] '.rela.dyn': relocation 21: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 22: invalid type
section [ 7] '.rela.dyn': relocation 22: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 23: invalid type
section [ 7] '.rela.dyn': relocation 23: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 24: invalid type
section [ 7] '.rela.dyn': relocation 24: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 25: invalid type
section [ 7] '.rela.dyn': relocation 25: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 26: invalid type
section [ 7] '.rela.dyn': relocation 26: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 27: invalid type
section [ 7] '.rela.dyn': relocation 27: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 28: invalid type
section [ 7] '.rela.dyn': relocation 28: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 29: invalid type
section [ 7] '.rela.dyn': relocation 29: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 30: invalid type
section [ 7] '.rela.dyn': relocation 30: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 31: invalid type
section [ 7] '.rela.dyn': relocation 31: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 32: invalid type
section [ 7] '.rela.dyn': relocation 32: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 33: invalid type
section [ 7] '.rela.dyn': relocation 33: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 34: invalid type
section [ 7] '.rela.dyn': relocation 34: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 35: invalid type
section [ 7] '.rela.dyn': relocation 35: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 36: invalid type
section [ 7] '.rela.dyn': relocation 36: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 37: invalid type
section [ 7] '.rela.dyn': relocation 37: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 38: invalid type
section [ 7] '.rela.dyn': relocation 38: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 39: invalid type
section [ 7] '.rela.dyn': relocation 39: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 40: invalid type
section [ 7] '.rela.dyn': relocation 40: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 41: invalid type
section [ 7] '.rela.dyn': relocation 41: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 42: invalid type
section [ 7] '.rela.dyn': relocation 42: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 43: invalid type
section [ 7] '.rela.dyn': relocation 43: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 44: invalid type
section [ 7] '.rela.dyn': relocation 44: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 45: invalid type
section [ 7] '.rela.dyn': relocation 45: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 46: invalid type
section [ 7] '.rela.dyn': relocation 46: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 47: invalid type
section [ 7] '.rela.dyn': relocation 47: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 48: invalid type
section [ 7] '.rela.dyn': relocation 48: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 49: invalid type
section [ 7] '.rela.dyn': relocation 49: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 50: invalid type
section [ 7] '.rela.dyn': relocation 50: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 51: invalid type
section [ 7] '.rela.dyn': relocation 51: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 52: invalid type
section [ 7] '.rela.dyn': relocation 52: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 53: invalid type
section [ 7] '.rela.dyn': relocation 53: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 54: invalid type
section [ 7] '.rela.dyn': relocation 54: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 55: invalid type
section [ 7] '.rela.dyn': relocation 55: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 56: invalid type
section [ 7] '.rela.dyn': relocation 56: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 57: invalid type
section [ 7] '.rela.dyn': relocation 57: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 58: invalid type
section [ 7] '.rela.dyn': relocation 58: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 59: invalid type
section [ 7] '.rela.dyn': relocation 59: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 60: invalid type
section [ 7] '.rela.dyn': relocation 60: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 61: invalid type
section [ 7] '.rela.dyn': relocation 61: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 62: invalid type
section [ 7] '.rela.dyn': relocation 62: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 63: invalid type
section [ 7] '.rela.dyn': relocation 63: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 64: invalid type
section [ 7] '.rela.dyn': relocation 64: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 65: invalid type
section [ 7] '.rela.dyn': relocation 65: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 66: invalid type
section [ 7] '.rela.dyn': relocation 66: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 67: invalid type
section [ 7] '.rela.dyn': relocation 67: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 68: invalid type
section [ 7] '.rela.dyn': relocation 68: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 69: invalid type
section [ 7] '.rela.dyn': relocation 69: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 70: invalid type
section [ 7] '.rela.dyn': relocation 70: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 71: invalid type
section [ 7] '.rela.dyn': relocation 71: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 72: invalid type
section [ 7] '.rela.dyn': relocation 72: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 73: invalid type
section [ 7] '.rela.dyn': relocation 73: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 74: invalid type
section [ 7] '.rela.dyn': relocation 74: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 75: invalid type
section [ 7] '.rela.dyn': relocation 75: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 76: invalid type
section [ 7] '.rela.dyn': relocation 76: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 77: invalid type
section [ 7] '.rela.dyn': relocation 77: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 78: invalid type
section [ 7] '.rela.dyn': relocation 78: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 79: invalid type
section [ 7] '.rela.dyn': relocation 79: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 80: invalid type
section [ 7] '.rela.dyn': relocation 80: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 81: invalid type
section [ 7] '.rela.dyn': relocation 81: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 82: invalid type
section [ 7] '.rela.dyn': relocation 82: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 83: invalid type
section [ 7] '.rela.dyn': relocation 83: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 84: invalid type
section [ 7] '.rela.dyn': relocation 84: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 85: invalid type
section [ 7] '.rela.dyn': relocation 85: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 86: invalid type
section [ 7] '.rela.dyn': relocation 86: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 87: invalid type
section [ 7] '.rela.dyn': relocation 87: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 88: invalid type
section [ 7] '.rela.dyn': relocation 88: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 89: invalid type
section [ 7] '.rela.dyn': relocation 89: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 90: invalid type
section [ 7] '.rela.dyn': relocation 90: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 91: invalid type
section [ 7] '.rela.dyn': relocation 91: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 92: invalid type
section [ 7] '.rela.dyn': relocation 92: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 93: invalid type
section [ 7] '.rela.dyn': relocation 93: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 94: invalid type
section [ 7] '.rela.dyn': relocation 94: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 95: invalid type
section [ 7] '.rela.dyn': relocation 95: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 96: invalid type
section [ 7] '.rela.dyn': relocation 96: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 97: invalid type
section [ 7] '.rela.dyn': relocation 97: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 98: invalid type
section [ 7] '.rela.dyn': relocation 98: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 99: invalid type
section [ 7] '.rela.dyn': relocation 99: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 100: invalid type
section [ 7] '.rela.dyn': relocation 100: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 101: invalid type
section [ 7] '.rela.dyn': relocation 101: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 102: invalid type
section [ 7] '.rela.dyn': relocation 102: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 103: invalid type
section [ 7] '.rela.dyn': relocation 103: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 104: invalid type
section [ 7] '.rela.dyn': relocation 104: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 105: invalid type
section [ 7] '.rela.dyn': relocation 105: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 106: invalid type
section [ 7] '.rela.dyn': relocation 106: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 107: invalid type
section [ 7] '.rela.dyn': relocation 107: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 108: invalid type
section [ 7] '.rela.dyn': relocation 108: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 109: invalid type
section [ 7] '.rela.dyn': relocation 109: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 110: invalid type
section [ 7] '.rela.dyn': relocation 110: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 111: invalid type
section [ 7] '.rela.dyn': relocation 111: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 112: invalid type
section [ 7] '.rela.dyn': relocation 112: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 113: invalid type
section [ 7] '.rela.dyn': relocation 113: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 114: invalid type
section [ 7] '.rela.dyn': relocation 114: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 115: invalid type
section [ 7] '.rela.dyn': relocation 115: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 116: invalid type
section [ 7] '.rela.dyn': relocation 116: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 117: invalid type
section [ 7] '.rela.dyn': relocation 117: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 118: invalid type
section [ 7] '.rela.dyn': relocation 118: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 119: invalid type
section [ 7] '.rela.dyn': relocation 119: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 120: invalid type
section [ 7] '.rela.dyn': relocation 120: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 121: invalid type
section [ 7] '.rela.dyn': relocation 121: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 122: invalid type
section [ 7] '.rela.dyn': relocation 122: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 123: invalid type
section [ 7] '.rela.dyn': relocation 123: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 124: invalid type
section [ 7] '.rela.dyn': relocation 124: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 125: invalid type
section [ 7] '.rela.dyn': relocation 125: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 126: invalid type
section [ 7] '.rela.dyn': relocation 126: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 127: invalid type
section [ 7] '.rela.dyn': relocation 127: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 128: invalid type
section [ 7] '.rela.dyn': relocation 128: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 129: invalid type
section [ 7] '.rela.dyn': relocation 129: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 130: invalid type
section [ 7] '.rela.dyn': relocation 130: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 131: invalid type
section [ 7] '.rela.dyn': relocation 131: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 132: invalid type
section [ 7] '.rela.dyn': relocation 132: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 133: invalid type
section [ 7] '.rela.dyn': relocation 133: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 134: invalid type
section [ 7] '.rela.dyn': relocation 134: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 135: invalid type
section [ 7] '.rela.dyn': relocation 135: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 136: invalid type
section [ 7] '.rela.dyn': relocation 136: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 137: invalid type
section [ 7] '.rela.dyn': relocation 137: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 138: invalid type
section [ 7] '.rela.dyn': relocation 138: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 139: invalid type
section [ 7] '.rela.dyn': relocation 139: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 140: invalid type
section [ 7] '.rela.dyn': relocation 140: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 141: invalid type
section [ 7] '.rela.dyn': relocation 141: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 142: invalid type
section [ 7] '.rela.dyn': relocation 142: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 143: invalid type
section [ 7] '.rela.dyn': relocation 143: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 144: invalid type
section [ 7] '.rela.dyn': relocation 144: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 145: invalid type
section [ 7] '.rela.dyn': relocation 145: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 146: invalid type
section [ 7] '.rela.dyn': relocation 146: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 147: invalid type
section [ 7] '.rela.dyn': relocation 147: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 148: invalid type
section [ 7] '.rela.dyn': relocation 148: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 149: invalid type
section [ 7] '.rela.dyn': relocation 149: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 150: invalid type
section [ 7] '.rela.dyn': relocation 150: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 151: invalid type
section [ 7] '.rela.dyn': relocation 151: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 152: invalid type
section [ 7] '.rela.dyn': relocation 152: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 153: invalid type
section [ 7] '.rela.dyn': relocation 153: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 154: invalid type
section [ 7] '.rela.dyn': relocation 154: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 155: invalid type
section [ 7] '.rela.dyn': relocation 155: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 156: invalid type
section [ 7] '.rela.dyn': relocation 156: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 157: invalid type
section [ 7] '.rela.dyn': relocation 157: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 158: invalid type
section [ 7] '.rela.dyn': relocation 158: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 159: invalid type
section [ 7] '.rela.dyn': relocation 159: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 160: invalid type
section [ 7] '.rela.dyn': relocation 160: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 161: invalid type
section [ 7] '.rela.dyn': relocation 161: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 162: invalid type
section [ 7] '.rela.dyn': relocation 162: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 163: invalid type
section [ 7] '.rela.dyn': relocation 163: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 164: invalid type
section [ 7] '.rela.dyn': relocation 164: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 165: invalid type
section [ 7] '.rela.dyn': relocation 165: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 166: invalid type
section [ 7] '.rela.dyn': relocation 166: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 167: invalid type
section [ 7] '.rela.dyn': relocation 167: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 168: invalid type
section [ 7] '.rela.dyn': relocation 168: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 169: invalid type
section [ 7] '.rela.dyn': relocation 169: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 170: invalid type
section [ 7] '.rela.dyn': relocation 170: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 171: invalid type
section [ 7] '.rela.dyn': relocation 171: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 172: invalid type
section [ 7] '.rela.dyn': relocation 172: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 173: invalid type
section [ 7] '.rela.dyn': relocation 173: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 174: invalid type
section [ 7] '.rela.dyn': relocation 174: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 175: invalid type
section [ 7] '.rela.dyn': relocation 175: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 176: invalid type
section [ 7] '.rela.dyn': relocation 176: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 177: invalid type
section [ 7] '.rela.dyn': relocation 177: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 178: invalid type
section [ 7] '.rela.dyn': relocation 178: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 179: invalid type
section [ 7] '.rela.dyn': relocation 179: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 180: invalid type
section [ 7] '.rela.dyn': relocation 180: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 181: invalid type
section [ 7] '.rela.dyn': relocation 181: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 182: invalid type
section [ 7] '.rela.dyn': relocation 182: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 183: invalid type
section [ 7] '.rela.dyn': relocation 183: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 184: invalid type
section [ 7] '.rela.dyn': relocation 184: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 185: invalid type
section [ 7] '.rela.dyn': relocation 185: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 186: invalid type
section [ 7] '.rela.dyn': relocation 186: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 187: invalid type
section [ 7] '.rela.dyn': relocation 187: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 188: invalid type
section [ 7] '.rela.dyn': relocation 188: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 189: invalid type
section [ 7] '.rela.dyn': relocation 189: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 190: invalid type
section [ 7] '.rela.dyn': relocation 190: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 191: invalid type
section [ 7] '.rela.dyn': relocation 191: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 192: invalid type
section [ 7] '.rela.dyn': relocation 192: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 193: invalid type
section [ 7] '.rela.dyn': relocation 193: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 194: invalid type
section [ 7] '.rela.dyn': relocation 194: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 195: invalid type
section [ 7] '.rela.dyn': relocation 195: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 196: invalid type
section [ 7] '.rela.dyn': relocation 196: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 197: invalid type
section [ 7] '.rela.dyn': relocation 197: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 198: invalid type
section [ 7] '.rela.dyn': relocation 198: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 199: invalid type
section [ 7] '.rela.dyn': relocation 199: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 200: invalid type
section [ 7] '.rela.dyn': relocation 200: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 201: invalid type
section [ 7] '.rela.dyn': relocation 201: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 202: invalid type
section [ 7] '.rela.dyn': relocation 202: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 203: invalid type
section [ 7] '.rela.dyn': relocation 203: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 204: invalid type
section [ 7] '.rela.dyn': relocation 204: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 205: invalid type
section [ 7] '.rela.dyn': relocation 205: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 206: invalid type
section [ 7] '.rela.dyn': relocation 206: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 207: invalid type
section [ 7] '.rela.dyn': relocation 207: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 208: invalid type
section [ 7] '.rela.dyn': relocation 208: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 209: invalid type
section [ 7] '.rela.dyn': relocation 209: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 210: invalid type
section [ 7] '.rela.dyn': relocation 210: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 211: invalid type
section [ 7] '.rela.dyn': relocation 211: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 212: invalid type
section [ 7] '.rela.dyn': relocation 212: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 213: invalid type
section [ 7] '.rela.dyn': relocation 213: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 214: invalid type
section [ 7] '.rela.dyn': relocation 214: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 215: invalid type
section [ 7] '.rela.dyn': relocation 215: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 216: invalid type
section [ 7] '.rela.dyn': relocation 216: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 217: invalid type
section [ 7] '.rela.dyn': relocation 218: invalid type
section [ 7] '.rela.dyn': relocation 219: invalid type
section [ 7] '.rela.dyn': relocation 220: invalid type
section [ 7] '.rela.dyn': relocation 221: invalid type
section [ 7] '.rela.dyn': relocation 222: invalid type
section [ 7] '.rela.dyn': relocation 223: invalid type
section [ 7] '.rela.dyn': relocation 224: invalid type
section [ 7] '.rela.dyn': relocation 225: invalid type
section [ 7] '.rela.dyn': relocation 226: invalid type
section [ 7] '.rela.dyn': relocation 227: invalid type
section [ 7] '.rela.dyn': relocation 228: invalid type
section [ 7] '.rela.dyn': relocation 229: invalid type
section [ 7] '.rela.dyn': relocation 230: invalid type
section [ 7] '.rela.dyn': relocation 231: invalid type
section [ 7] '.rela.dyn': relocation 232: invalid type
section [ 7] '.rela.dyn': relocation 233: invalid type
section [ 7] '.rela.dyn': relocation 234: invalid type
section [ 7] '.rela.dyn': relocation 235: invalid type
section [ 7] '.rela.dyn': relocation 236: invalid type
section [ 7] '.rela.dyn': relocation 237: invalid type
section [ 7] '.rela.dyn': relocation 238: invalid type
section [ 7] '.rela.dyn': relocation 239: invalid type
section [ 7] '.rela.dyn': relocation 240: invalid type
section [ 7] '.rela.dyn': relocation 241: invalid type
section [ 7] '.rela.dyn': relocation 242: invalid type
section [ 7] '.rela.dyn': relocation 243: invalid type
section [ 7] '.rela.dyn': relocation 244: invalid type
section [ 7] '.rela.dyn': relocation 245: invalid type
section [ 7] '.rela.dyn': relocation 246: invalid type
section [ 7] '.rela.dyn': relocation 247: invalid type
section [ 7] '.rela.dyn': relocation 248: invalid type
section [ 7] '.rela.dyn': relocation 249: invalid type
section [ 7] '.rela.dyn': relocation 250: invalid type
section [ 7] '.rela.dyn': relocation 251: invalid type
section [ 7] '.rela.dyn': relocation 252: invalid type
section [ 7] '.rela.dyn': relocation 253: invalid type
section [ 7] '.rela.dyn': relocation 254: invalid type
section [ 7] '.rela.dyn': relocation 255: invalid type
section [ 7] '.rela.dyn': relocation 256: invalid type
section [ 7] '.rela.dyn': relocation 257: invalid type
section [ 7] '.rela.dyn': relocation 258: invalid type
section [ 7] '.rela.dyn': relocation 259: invalid type
section [ 7] '.rela.dyn': relocation 260: invalid type
section [ 7] '.rela.dyn': relocation 261: invalid type
section [ 7] '.rela.dyn': relocation 262: invalid type
section [ 7] '.rela.dyn': relocation 263: invalid type
section [ 7] '.rela.dyn': relocation 264: invalid type
section [ 7] '.rela.dyn': relocation 265: invalid type
section [ 7] '.rela.dyn': relocation 266: invalid type
section [ 7] '.rela.dyn': relocation 267: invalid type
section [ 7] '.rela.dyn': relocation 268: invalid type
section [ 7] '.rela.dyn': relocation 269: invalid type
section [ 7] '.rela.dyn': relocation 270: invalid type
section [ 7] '.rela.dyn': relocation 271: invalid type
section [ 7] '.rela.dyn': relocation 272: invalid type
section [ 7] '.rela.dyn': relocation 273: invalid type
section [ 7] '.rela.dyn': relocation 274: invalid type
section [ 7] '.rela.dyn': relocation 275: invalid type
section [ 7] '.rela.dyn': relocation 276: invalid type
section [ 7] '.rela.dyn': relocation 277: invalid type
section [ 7] '.rela.dyn': relocation 278: invalid type
section [ 7] '.rela.dyn': relocation 279: invalid type
section [ 7] '.rela.dyn': relocation 280: invalid type
section [ 7] '.rela.dyn': relocation 281: invalid type
section [ 7] '.rela.dyn': relocation 282: invalid type
section [ 7] '.rela.dyn': relocation 283: invalid type
section [ 7] '.rela.dyn': relocation 284: invalid type
section [ 7] '.rela.dyn': relocation 285: invalid type
section [ 7] '.rela.dyn': relocation 286: invalid type
section [ 7] '.rela.dyn': relocation 287: invalid type
section [ 7] '.rela.dyn': relocation 288: invalid type
section [ 7] '.rela.dyn': relocation 289: invalid type
section [ 7] '.rela.dyn': relocation 290: invalid type
section [ 7] '.rela.dyn': relocation 291: invalid type
section [ 7] '.rela.dyn': relocation 292: invalid type
section [ 7] '.rela.dyn': relocation 293: invalid type
section [ 7] '.rela.dyn': relocation 294: invalid type
section [ 7] '.rela.dyn': relocation 295: invalid type
section [ 7] '.rela.dyn': relocation 296: invalid type
section [ 7] '.rela.dyn': relocation 297: invalid type
section [ 7] '.rela.dyn': relocation 298: invalid type
section [ 7] '.rela.dyn': relocation 299: invalid type
section [ 7] '.rela.dyn': relocation 300: invalid type
section [ 7] '.rela.dyn': relocation 301: invalid type
section [ 7] '.rela.dyn': relocation 302: invalid type
section [ 7] '.rela.dyn': relocation 303: invalid type
section [ 7] '.rela.dyn': relocation 304: invalid type
section [ 7] '.rela.dyn': relocation 305: invalid type
section [ 7] '.rela.dyn': relocation 306: invalid type
section [ 7] '.rela.dyn': relocation 307: invalid type
section [ 7] '.rela.dyn': relocation 308: invalid type
section [ 7] '.rela.dyn': relocation 309: invalid type
section [ 7] '.rela.dyn': relocation 310: invalid type
section [ 7] '.rela.dyn': relocation 311: invalid type
section [ 7] '.rela.dyn': relocation 312: invalid type
section [ 7] '.rela.dyn': relocation 313: invalid type
section [ 7] '.rela.dyn': relocation 314: invalid type
section [ 7] '.rela.dyn': relocation 315: invalid type
section [ 7] '.rela.dyn': relocation 316: invalid type
section [ 7] '.rela.dyn': relocation 317: invalid type
section [ 7] '.rela.dyn': relocation 318: invalid type
section [ 7] '.rela.dyn': relocation 319: invalid type
section [ 7] '.rela.dyn': relocation 320: invalid type
section [ 7] '.rela.dyn': relocation 321: invalid type
section [ 7] '.rela.dyn': relocation 322: invalid type
section [ 7] '.rela.dyn': relocation 323: invalid type
section [ 7] '.rela.dyn': relocation 324: invalid type
section [ 7] '.rela.dyn': relocation 325: invalid type
section [ 7] '.rela.dyn': relocation 326: invalid type
section [ 7] '.rela.dyn': relocation 327: invalid type
section [ 7] '.rela.dyn': relocation 328: invalid type
section [ 7] '.rela.dyn': relocation 329: invalid type
section [ 7] '.rela.dyn': relocation 330: invalid type
section [ 7] '.rela.dyn': relocation 331: invalid type
section [ 7] '.rela.dyn': relocation 332: invalid type
section [ 7] '.rela.dyn': relocation 333: invalid type
section [ 7] '.rela.dyn': relocation 334: invalid type
section [ 7] '.rela.dyn': relocation 335: invalid type
section [ 7] '.rela.dyn': relocation 336: invalid type
section [ 7] '.rela.dyn': relocation 337: invalid type
section [ 7] '.rela.dyn': relocation 338: invalid type
section [ 7] '.rela.dyn': relocation 339: invalid type
section [ 7] '.rela.dyn': relocation 340: invalid type
section [ 7] '.rela.dyn': relocation 341: invalid type
section [ 7] '.rela.dyn': relocation 342: invalid type
section [ 7] '.rela.dyn': relocation 343: invalid type
section [ 7] '.rela.dyn': relocation 344: invalid type
section [ 7] '.rela.dyn': relocation 345: invalid type
section [ 7] '.rela.dyn': relocation 346: invalid type
section [ 7] '.rela.dyn': relocation 347: invalid type
section [ 7] '.rela.dyn': relocation 348: invalid type
section [ 7] '.rela.dyn': relocation 349: invalid type
section [ 7] '.rela.dyn': relocation 350: invalid type
section [ 7] '.rela.dyn': relocation 351: invalid type
section [ 7] '.rela.dyn': relocation 352: invalid type
section [ 7] '.rela.dyn': relocation 353: invalid type
section [ 7] '.rela.dyn': relocation 354: invalid type
section [ 7] '.rela.dyn': relocation 355: invalid type
section [ 7] '.rela.dyn': relocation 356: invalid type
section [ 7] '.rela.dyn': relocation 357: invalid type
section [ 7] '.rela.dyn': relocation 358: invalid type
section [ 7] '.rela.dyn': relocation 359: invalid type
section [ 7] '.rela.dyn': relocation 360: invalid type
section [ 7] '.rela.dyn': relocation 361: invalid type
section [ 7] '.rela.dyn': relocation 362: invalid type
section [ 7] '.rela.dyn': relocation 363: invalid type
section [ 7] '.rela.dyn': relocation 364: invalid type
section [ 7] '.rela.dyn': relocation 365: invalid type
section [ 7] '.rela.dyn': relocation 366: invalid type
section [ 7] '.rela.dyn': relocation 367: invalid type
section [ 7] '.rela.dyn': relocation 368: invalid type
section [ 7] '.rela.dyn': relocation 369: invalid type
section [ 7] '.rela.dyn': relocation 370: invalid type
section [ 7] '.rela.dyn': relocation 371: invalid type
section [ 7] '.rela.dyn': relocation 372: invalid type
section [ 7] '.rela.dyn': relocation 373: invalid type
section [ 7] '.rela.dyn': relocation 374: invalid type
section [ 7] '.rela.dyn': relocation 375: invalid type
section [ 7] '.rela.dyn': relocation 376: invalid type
section [ 7] '.rela.dyn': relocation 377: invalid type
section [ 7] '.rela.dyn': relocation 378: invalid type
section [ 7] '.rela.dyn': relocation 379: invalid type
section [ 7] '.rela.dyn': relocation 380: invalid type
section [ 7] '.rela.dyn': relocation 381: invalid type
section [ 7] '.rela.dyn': relocation 382: invalid type
section [ 7] '.rela.dyn': relocation 383: invalid type
section [ 7] '.rela.dyn': relocation 384: invalid type
section [ 7] '.rela.dyn': relocation 385: invalid type
section [ 7] '.rela.dyn': relocation 386: invalid type
section [ 7] '.rela.dyn': relocation 387: invalid type
section [ 7] '.rela.dyn': relocation 388: invalid type
section [ 7] '.rela.dyn': relocation 389: invalid type
section [ 7] '.rela.dyn': relocation 390: invalid type
section [ 7] '.rela.dyn': relocation 391: invalid type
section [ 7] '.rela.dyn': relocation 392: invalid type
section [ 7] '.rela.dyn': relocation 393: invalid type
section [ 7] '.rela.dyn': relocation 394: invalid type
section [ 7] '.rela.dyn': relocation 395: invalid type
section [ 7] '.rela.dyn': relocation 396: invalid type
section [ 7] '.rela.dyn': relocation 397: invalid type
section [ 7] '.rela.dyn': relocation 398: invalid type
section [ 7] '.rela.dyn': relocation 399: invalid type
section [ 7] '.rela.dyn': relocation 399: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 400: invalid type
section [ 7] '.rela.dyn': relocation 400: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 401: invalid type
section [ 7] '.rela.dyn': relocation 401: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 402: invalid type
section [ 7] '.rela.dyn': relocation 402: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 403: invalid type
section [ 7] '.rela.dyn': relocation 403: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 404: invalid type
section [ 7] '.rela.dyn': relocation 404: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 405: invalid type
section [ 7] '.rela.dyn': relocation 405: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 406: invalid type
section [ 7] '.rela.dyn': relocation 406: read-only section modified but text relocation flag not set
section [ 7] '.rela.dyn': relocation 407: invalid type
section [ 7] '.rela.dyn': relocation 407: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 0: invalid type
section [ 8] '.rela.plt': relocation 0: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 1: invalid type
section [ 8] '.rela.plt': relocation 1: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 2: invalid type
section [ 8] '.rela.plt': relocation 2: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 3: invalid type
section [ 8] '.rela.plt': relocation 3: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 4: invalid type
section [ 8] '.rela.plt': relocation 4: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 5: invalid type
section [ 8] '.rela.plt': relocation 5: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 6: invalid type
section [ 8] '.rela.plt': relocation 6: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 7: invalid type
section [ 8] '.rela.plt': relocation 7: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 8: invalid type
section [ 8] '.rela.plt': relocation 8: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 9: invalid type
section [ 8] '.rela.plt': relocation 9: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 10: invalid type
section [ 8] '.rela.plt': relocation 10: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 11: invalid type
section [ 8] '.rela.plt': relocation 11: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 12: invalid type
section [ 8] '.rela.plt': relocation 12: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 13: invalid type
section [ 8] '.rela.plt': relocation 13: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 14: invalid type
section [ 8] '.rela.plt': relocation 14: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 15: invalid type
section [ 8] '.rela.plt': relocation 15: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 16: invalid type
section [ 8] '.rela.plt': relocation 16: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 17: invalid type
section [ 8] '.rela.plt': relocation 17: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 18: invalid type
section [ 8] '.rela.plt': relocation 18: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 19: invalid type
section [ 8] '.rela.plt': relocation 19: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 20: invalid type
section [ 8] '.rela.plt': relocation 20: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 21: invalid type
section [ 8] '.rela.plt': relocation 21: read-only section modified but text relocation flag not set
section [ 8] '.rela.plt': relocation 22: invalid type
section [ 8] '.rela.plt': relocation 22: read-only section modified but text relocation flag not set
section [17] '.dynamic': entry 17: unknown tag
section [17] '.dynamic': entry 18: unknown tag
section [34] '.symtab': _GLOBAL_OFFSET_TABLE_ symbol value 0x1a4c does not match .got section address 0xc238
*** failure in /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/backends/libebl_x86_64.so
FAIL run-elflint-self.sh (exit status: 1)

FAIL: run-nm-self.sh
====================

Segmentation fault
FAIL run-nm-self.sh (exit status: 139)

FAIL: run-native-test.sh
========================

/home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/tests/allregs: dwfl_module_register_names: no backend registers known
FAIL run-native-test.sh (exit status: 1)

FAIL: run-addrname-test.sh
==========================

--- addr2line.out
+++ -
@@ -1 +1,14 @@
-Segmentation fault
+_start (.text)
+??:0
+_start (.text)
+??:0
+_start+0x3 (.text)
+??:0
+()+0x2dc
+??:0
+_start (.opd)
+??:0
+_start+0x3 (.opd)
+??:0
+()+0x103d4
+??:0
FAIL run-addrname-test.sh (exit status: 1)

FAIL: run-test-archive64.sh
===========================

--- nm.out
+++ -
@@ -1 +1,9 @@
-Segmentation fault
+testarchive64.a[aaa.o]:
+aaa T 0000000000000000 0000000000000016
+testarchive64.a[bbb.o]:
+bbb T 0000000000000000 0000000000000016
+bbb2 T 0000000000000018 0000000000000016
+testarchive64.a[ccc.o]:
+ccc T 0000000000000000 0000000000000016
+ccc2 T 0000000000000018 0000000000000016
+ccc3 T 0000000000000030 0000000000000016
FAIL run-test-archive64.sh (exit status: 1)

FAIL: run-addr2line-test.sh
===========================

# Everything on the command line
--- addr2line.out
+++ -
@@ -1 +1,16 @@
-Segmentation fault
+foo
+/home/drepper/gnu/new-bu/build/ttt/f.c:3
+bar
+/home/drepper/gnu/new-bu/build/ttt/b.c:4
+foo
+/home/drepper/gnu/new-bu/build/ttt/f.c:3
+bar
+/home/drepper/gnu/new-bu/build/ttt/b.c:4
+foo
+/home/drepper/gnu/new-bu/build/ttt/f.c:3
+bar
+/home/drepper/gnu/new-bu/build/ttt/b.c:4
+foo
+/home/drepper/gnu/new-bu/build/ttt/f.c:3
+bar
+/home/drepper/gnu/new-bu/build/ttt/b.c:4
FAIL run-addr2line-test.sh (exit status: 1)

FAIL: run-backtrace-native.sh
=============================

/home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/tests/backtrace: backtrace.c: 346: exec_dump: Assertion `((((__extension__ (((union { __typeof(status) __in; int __i; }) { .__in = (status) }).__i))) & 0xff) == 0x7f)' failed.
./test-subr.sh: line 84:  2886 Aborted                 LD_LIBRARY_PATH="${built_library_path}${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH" $VALGRIND_CMD "$@"
backtrace-child: no main
FAIL run-backtrace-native.sh (exit status: 1)

SKIP: run-backtrace-data.sh
===========================

/home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/tests/backtrace-data: Unwinding not supported for this architecture
data: arch not supported
SKIP run-backtrace-data.sh (exit status: 77)

SKIP: run-backtrace-dwarf.sh
============================

/home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/tests/backtrace-dwarf: dwfl_thread_getframes: Unwinding not supported for this architecture
dwarf: arch not supported
SKIP run-backtrace-dwarf.sh (exit status: 77)

SKIP: run-backtrace-native-biarch.sh
====================================

SKIP run-backtrace-native-biarch.sh (exit status: 77)

SKIP: run-backtrace-native-core.sh
==================================

/home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/tests/backtrace: dwfl_pid: Unwinding not supported for this architecture
backtrace-child-core.: arch not supported
SKIP run-backtrace-native-core.sh (exit status: 77)

SKIP: run-backtrace-native-core-biarch.sh
=========================================

SKIP run-backtrace-native-core-biarch.sh (exit status: 77)

SKIP: run-backtrace-demangle.sh
===============================

SKIP run-backtrace-demangle.sh (exit status: 77)

FAIL: run-stack-d-test.sh
=========================

--- stack.out
+++ -
@@ -1,5 +1,5 @@
 PID 13654 - core
 TID 13654:
-#0  0x00000000004006c8 _Z2fui
+#0  0x00000000004006c8 fu(int)
 #1  0x00000000004004c5 main
 /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/stack: tid 13654: shown max number of frames (2, use -n 0 for unlimited)
FAIL run-stack-d-test.sh (exit status: 1)

FAIL: run-stack-i-test.sh
=========================

--- stack.out
+++ -
@@ -4,6 +4,6 @@
 #1  0x00000000004006c8 foobar
 #2  0x00000000004006c8 bar
 #3  0x00000000004006c8 foo
-#4  0x00000000004006c8 _Z2fui
+#4  0x00000000004006c8 fu(int)
 #5  0x00000000004004c5 main
 /home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/stack: tid 13654: shown max number of frames (6, use -n 0 for unlimited)
FAIL run-stack-i-test.sh (exit status: 1)

SKIP: run-deleted.sh
====================

PID 3196 - process
TID 3196:
/home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/stack: dwfl_thread_getframes tid 3196: Unwinding not supported for this architecture
/home/jcmvbkbc/ws/tensilica/elfutils/elfutils-0.161/src/stack: Couldn't show any frames.
deleted: arch not supported
SKIP run-deleted.sh (exit status: 77)


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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-25 13:29 Anthony G. Basile
  0 siblings, 0 replies; 22+ messages in thread
From: Anthony G. Basile @ 2015-04-25 13:29 UTC (permalink / raw)
  To: elfutils-devel

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

On 04/25/15 05:41, Mark Wielaard wrote:
> On Fri, Apr 24, 2015 at 07:13:04PM +0300, Max Filippov wrote:
>> On Fri, Apr 24, 2015 at 2:49 PM, Anthony G. Basile
>> <basile@opensource.dyc.edu> wrote:
>>> On 04/23/15 18:24, Max Filippov wrote:
>>>> A lot of tests failed because elfutils were built with --disable-progs
>>>> (otherwise the build fails), and some test binaries failed to build
>>>> because they call functions not available in uClibc.
>>>
>>> You might also want to take a look a [1].  I had to produce a series of
>>
>> Wow, I didn't know that gentoo can work with uClibc, that's great.
>> I'll look at these patches.
>
> If you could work together and see which patches seem reasonable to
> submit upstream that would be appreciated. I cannot guarantee they
> will all accepted if they make the code really complicated/broken.

The patches need some configure.ac love to test for the availability of 
various features like mtrace() and add the appropriate #ifdef's.  I 
don't think they'll be overly complicated, I just didn't polish and push 
them upstream because (in those days) I anticipated resistance.  I'll 
have some time in about a week and can get something ready.

> And elfutils really is designed to make use of a full featured libc
> like glibc. So if at all possible I would really recommend not using
> something like uclibc. But we should do a reasonable attempt to make
> sure the fork/difference isn't too big.

I get the drawback of not having symbol versioning, but uclibc was never 
really designed with upgrades in mind.  Nonetheless, I wouldn't minimize 
uclibc's usefulness.  I maintain gentoo on it for many arches [1] and, 
for fun, I even build a fully featured desktop system to hit as many 
libc level bugs as possible to expand uclibc's robustness/usefulness [2].

Ref.
[1] https://wiki.gentoo.org/wiki/Project:Hardened_uClibc
[2] https://wiki.gentoo.org/wiki/Project:Hardened_uClibc/Lilblue

-- 
Anthony G. Basile, Ph. D.
Chair of Information Technology
D'Youville College
Buffalo, NY 14201
(716) 829-8197

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-25 13:14 Anthony G. Basile
  0 siblings, 0 replies; 22+ messages in thread
From: Anthony G. Basile @ 2015-04-25 13:14 UTC (permalink / raw)
  To: elfutils-devel

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

On 04/24/15 12:13, Max Filippov wrote:
> On Fri, Apr 24, 2015 at 2:49 PM, Anthony G. Basile
> <basile@opensource.dyc.edu> wrote:
>> On 04/23/15 18:24, Max Filippov wrote:
>>> A lot of tests failed because elfutils were built with --disable-progs
>>> (otherwise the build fails), and some test binaries failed to build
>>> because they call functions not available in uClibc.
>>
>> You might also want to take a look a [1].  I had to produce a series of
>
> Wow, I didn't know that gentoo can work with uClibc, that's great.
> I'll look at these patches.
>
>> patches to get it to build.  What did you do about mtrace()?
>
> I've plugged it with empty definition.
>

I maintain stage3 tarballs (that's minimal system with full toolchain) 
for multiple arches.  I hit elfutils because some of these stage3's are 
"hardened" meaning that they are meant to run with a pax hardened 
kernel.  These require "marking" of some elf objects which is done by a 
utility I wrote called paxutils-ng.  This depends on elfutils

Take a look at:

official site:
https://wiki.gentoo.org/wiki/Project:Hardened_uClibc

downloads for ...
amd64:
http://distfiles.gentoo.org/releases/amd64/autobuilds/current-stage3-amd64-uclibc-hardened/

x86:
http://distfiles.gentoo.org/releases/x86/autobuilds/current-stage3-i686-uclibc-hardened/

armv7a:
http://distfiles.gentoo.org/experimental/arm/uclibc/

mipsel3 + mips32r2:
http://distfiles.gentoo.org/experimental/mips/uclibc/

ppc: (vanilla only)
http://distfiles.gentoo.org/experimental/ppc/uclibc/


I also maintain a full desktop system using uclibc for amd64 only.  The 
purpose is to push uclibc to the limits and hit as many implementation 
level bugs.

Official site:
https://wiki.gentoo.org/wiki/Project:Hardened_uClibc/Lilblue

download:
http://distfiles.gentoo.org/experimental/amd64/uclibc/


I also maintain similar stages for musl:
https://wiki.gentoo.org/wiki/Project:Hardened_musl


I hope this stuff is useful to you.

-- 
Anthony G. Basile, Ph. D.
Chair of Information Technology
D'Youville College
Buffalo, NY 14201
(716) 829-8197

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-25  9:41 Mark Wielaard
  0 siblings, 0 replies; 22+ messages in thread
From: Mark Wielaard @ 2015-04-25  9:41 UTC (permalink / raw)
  To: elfutils-devel

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

On Fri, Apr 24, 2015 at 07:13:04PM +0300, Max Filippov wrote:
> On Fri, Apr 24, 2015 at 2:49 PM, Anthony G. Basile
> <basile@opensource.dyc.edu> wrote:
> > On 04/23/15 18:24, Max Filippov wrote:
> >> A lot of tests failed because elfutils were built with --disable-progs
> >> (otherwise the build fails), and some test binaries failed to build
> >> because they call functions not available in uClibc.
> >
> > You might also want to take a look a [1].  I had to produce a series of
> 
> Wow, I didn't know that gentoo can work with uClibc, that's great.
> I'll look at these patches.

If you could work together and see which patches seem reasonable to
submit upstream that would be appreciated. I cannot guarantee they
will all accepted if they make the code really complicated/broken.
And elfutils really is designed to make use of a full featured libc
like glibc. So if at all possible I would really recommend not using
something like uclibc. But we should do a reasonable attempt to make
sure the fork/difference isn't too big.

> > patches to get it to build.  What did you do about mtrace()?
> 
> I've plugged it with empty definition.

We don't really use mtrace() consistently, not all tools call it at
the start. Unless someone disagrees I wouldn't mind just removing them.
There are other ways to track memory usage. I run valgrind regularly
on some of the tools to see whether we have any memory leaks. Although
that isn't automated (it probably should). But neither is it automated
for the mtrace() case.

Cheers,

Mark

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-24 16:13 Max Filippov
  0 siblings, 0 replies; 22+ messages in thread
From: Max Filippov @ 2015-04-24 16:13 UTC (permalink / raw)
  To: elfutils-devel

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

On Fri, Apr 24, 2015 at 2:49 PM, Anthony G. Basile
<basile@opensource.dyc.edu> wrote:
> On 04/23/15 18:24, Max Filippov wrote:
>> A lot of tests failed because elfutils were built with --disable-progs
>> (otherwise the build fails), and some test binaries failed to build
>> because they call functions not available in uClibc.
>
> You might also want to take a look a [1].  I had to produce a series of

Wow, I didn't know that gentoo can work with uClibc, that's great.
I'll look at these patches.

> patches to get it to build.  What did you do about mtrace()?

I've plugged it with empty definition.

-- 
Thanks.
-- Max

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-24 13:36 Mark Wielaard
  0 siblings, 0 replies; 22+ messages in thread
From: Mark Wielaard @ 2015-04-24 13:36 UTC (permalink / raw)
  To: elfutils-devel

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

On Fri, Apr 24, 2015 at 07:49:55AM -0400, Anthony G. Basile wrote:
> On 04/23/15 18:24, Max Filippov wrote:
> >On Thu, Apr 23, 2015 at 11:56 PM, Mark Wielaard <mjw@redhat.com> wrote:
> >>On Thu, Apr 23, 2015 at 11:20:35PM +0300, Max Filippov wrote:
> >>>>What do the test results look like on your setup?
> >>>
> >>>I haven't tried that. Is there an easy way to run tests on a system
> >>>without native compiler?
> >>
> ># TOTAL: 126
> ># PASS:  44
> ># SKIP:  0
> ># XFAIL: 0
> ># FAIL:  82
> ># XPASS: 0
> ># ERROR: 0
> >
> >The log is attached.
> >A lot of tests failed because elfutils were built with --disable-progs
> >(otherwise the build fails), and some test binaries failed to build
> >because they call functions not available in uClibc.

Hmmm. elfutils doesn't support --disable-progs. Not having the tools
makes testing pretty impossible. I quickly looked over the log and it
does seem like all fails are indeed caused by the missing tools.

> You might also want to take a look a [1].  I had to produce a series of
> patches to get it to build.  What did you do about mtrace()?
> 
> [1] https://bugs.gentoo.org/show_bug.cgi?id=470884

Looking at that list it seems uclibc is missing a lot of support for
things elfutils relies on. I would really encourage to use a full
featured libc implementation like glibc. All testing on all arches is
done against it. That said, if people are really trying to make this
work lets see if we can support them a little. If the patches aren't
too intrusive and ugly we could apply them. But making sure they keep
working might be a pain because we don't have any regular testers on
such setups (on glibc based systems all supported arches should have
zero-fail).

Please see https://git.fedorahosted.org/cgit/elfutils.git/tree/CONTRIBUTING

Thanks,

Mark

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-24 11:49 Anthony G. Basile
  0 siblings, 0 replies; 22+ messages in thread
From: Anthony G. Basile @ 2015-04-24 11:49 UTC (permalink / raw)
  To: elfutils-devel

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

On 04/23/15 18:24, Max Filippov wrote:
> On Thu, Apr 23, 2015 at 11:56 PM, Mark Wielaard <mjw@redhat.com> wrote:
>> On Thu, Apr 23, 2015 at 11:20:35PM +0300, Max Filippov wrote:
>>>> What do the test results look like on your setup?
>>>
>>> I haven't tried that. Is there an easy way to run tests on a system
>>> without native compiler?
>>
>> Not easily. The tests involve building programs and a couple of tests
>> that run over some of the object files just created. So you'll have to
>> build everything first, including the tests check_PROGRAMS, and copy
>> the whole build dir to the system, then run make check there (which means
>> the system does need to have at least make, sh, sed, etc. on it.
>
> # TOTAL: 126
> # PASS:  44
> # SKIP:  0
> # XFAIL: 0
> # FAIL:  82
> # XPASS: 0
> # ERROR: 0
>
> The log is attached.
> A lot of tests failed because elfutils were built with --disable-progs
> (otherwise the build fails), and some test binaries failed to build
> because they call functions not available in uClibc.
>

You might also want to take a look a [1].  I had to produce a series of 
patches to get it to build.  What did you do about mtrace()?


Ref.
[1] https://bugs.gentoo.org/show_bug.cgi?id=470884

-- 
Anthony G. Basile, Ph. D.
Chair of Information Technology
D'Youville College
Buffalo, NY 14201
(716) 829-8197

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-23 22:24 Max Filippov
  0 siblings, 0 replies; 22+ messages in thread
From: Max Filippov @ 2015-04-23 22:24 UTC (permalink / raw)
  To: elfutils-devel

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

On Thu, Apr 23, 2015 at 11:56 PM, Mark Wielaard <mjw@redhat.com> wrote:
> On Thu, Apr 23, 2015 at 11:20:35PM +0300, Max Filippov wrote:
>> > What do the test results look like on your setup?
>>
>> I haven't tried that. Is there an easy way to run tests on a system
>> without native compiler?
>
> Not easily. The tests involve building programs and a couple of tests
> that run over some of the object files just created. So you'll have to
> build everything first, including the tests check_PROGRAMS, and copy
> the whole build dir to the system, then run make check there (which means
> the system does need to have at least make, sh, sed, etc. on it.

# TOTAL: 126
# PASS:  44
# SKIP:  0
# XFAIL: 0
# FAIL:  82
# XPASS: 0
# ERROR: 0

The log is attached.
A lot of tests failed because elfutils were built with --disable-progs
(otherwise the build fails), and some test binaries failed to build
because they call functions not available in uClibc.

-- 
Thanks.
-- Max

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: test-suite.log --]
[-- Type: text/x-log, Size: 102866 bytes --]

==========================================
   elfutils 0.161: tests/test-suite.log
==========================================

# TOTAL: 126
# PASS:  44
# SKIP:  0
# XFAIL: 0
# FAIL:  82
# XPASS: 0
# ERROR: 0

.. contents:: :depth: 2

FAIL: run-arsymtest.sh
======================

./run-arsymtest.sh: line 45: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/host/usr/bin/xtensa-buildroot-linux-uclibc-nm: not found
cmp: EOF on arsymtest.ok
FAIL run-arsymtest.sh (exit status: 1)

FAIL: run-line2addr.sh
======================

--- line2addr.out
+++ -
@@ -1 +1 @@
-./run-line2addr.sh: line 24: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/line2addr: not found
+f.c:4 -> 0x804846b (/home/drepper/gnu/new-bu/build/ttt/f.c:4)
FAIL run-line2addr.sh (exit status: 1)

FAIL: run-strip-test.sh
=======================

./run-strip-test.sh: line 30: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip: not found
FAIL run-strip-test.sh (exit status: 127)

FAIL: run-strip-test2.sh
========================

./run-strip-test2.sh: ./run-strip-test.sh: line 30: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip: not found
FAIL run-strip-test2.sh (exit status: 2)

FAIL: run-strip-test3.sh
========================

./run-strip-test3.sh: ./run-strip-test.sh: line 30: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip: not found
FAIL run-strip-test3.sh (exit status: 2)

FAIL: run-strip-test4.sh
========================

./run-strip-test4.sh: ./run-strip-test.sh: line 30: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip: not found
FAIL run-strip-test4.sh (exit status: 2)

FAIL: run-strip-test5.sh
========================

./run-strip-test5.sh: ./run-strip-test.sh: line 30: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip: not found
FAIL run-strip-test5.sh (exit status: 2)

FAIL: run-strip-test6.sh
========================

./run-strip-test6.sh: ./run-strip-test.sh: line 30: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip: not found
FAIL run-strip-test6.sh (exit status: 2)

FAIL: run-strip-test7.sh
========================

./run-strip-test7.sh: ./run-strip-test.sh: line 30: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip: not found
FAIL run-strip-test7.sh (exit status: 2)

FAIL: run-strip-test8.sh
========================

./run-strip-test8.sh: ./run-strip-test.sh: line 30: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip: not found
FAIL run-strip-test8.sh (exit status: 2)

FAIL: run-strip-groups.sh
=========================

./run-strip-groups.sh: line 52: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip: not found
FAIL run-strip-groups.sh (exit status: 127)

FAIL: run-strip-reloc.sh
========================

./run-strip-reloc.sh: line 100: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip: not found
*** failure strip hello_i386.ko
./run-strip-reloc.sh: line 100: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip: not found
*** failure strip --reloc-debug-sections hello_i386.ko
./run-strip-reloc.sh: line 100: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure readelf -a outfile1 hello_i386.ko
./run-strip-reloc.sh: line 100: stat: not found
FAIL run-strip-reloc.sh (exit status: 127)

FAIL: run-unstrip-test.sh
=========================

./run-unstrip-test.sh: line 32: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/unstrip: not found
FAIL run-unstrip-test.sh (exit status: 127)

FAIL: run-unstrip-test2.sh
==========================

./run-unstrip-test2.sh: ./run-unstrip-test.sh: line 32: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/unstrip: not found
FAIL run-unstrip-test2.sh (exit status: 2)

FAIL: run-unstrip-M.sh
======================

--- unstrip.out
+++ -
@@ -1 +1,2 @@
-./run-unstrip-M.sh: line 47: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/unstrip: not found
+0x400000+0x22b2000 - - - /opt/TestBins/bin/arwijn
+0x7f31e7d9f000+0x38e000 - - - /lib64/libc-1.13.so
FAIL run-unstrip-M.sh (exit status: 1)

FAIL: run-alldts.sh
===================

--- readelf.out
+++ -
@@ -1 +1,70 @@
-./run-alldts.sh: line 26: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+Dynamic segment contains 66 entries:
+ Addr: 0x000001a0  Offset: 0x000078  Link to section: [ 0] ''
+  Type              Value
+  NULL              
+  NEEDED            Shared library: [(null)]
+  PLTRELSZ          3735928559 (bytes)
+  PLTGOT            0xdeadbeef
+  HASH              0xdeadbeef
+  STRTAB            0xdeadbeef
+  SYMTAB            0xdeadbeef
+  RELA              0xdeadbeef
+  RELASZ            3735928559 (bytes)
+  RELAENT           3735928559 (bytes)
+  STRSZ             3735928559 (bytes)
+  SYMENT            3735928559 (bytes)
+  INIT              0xdeadbeef
+  FINI              0xdeadbeef
+  SONAME            Library soname: [(null)]
+  RPATH             Library rpath: [(null)]
+  SYMBOLIC          0xdeadbeef
+  REL               0xdeadbeef
+  RELSZ             3735928559 (bytes)
+  RELENT            3735928559 (bytes)
+  PLTREL            ???
+  DEBUG             
+  TEXTREL           
+  JMPREL            0xdeadbeef
+  BIND_NOW          
+  INIT_ARRAY        0xdeadbeef
+  FINI_ARRAY        0xdeadbeef
+  INIT_ARRAYSZ      3735928559 (bytes)
+  FINI_ARRAYSZ      3735928559 (bytes)
+  RUNPATH           Library runpath: [(null)]
+  FLAGS             ORIGIN SYMBOLIC TEXTREL BIND_NOW 0xdeadbee0
+  PREINIT_ARRAY     0xdeadbeef
+  PREINIT_ARRAY     0xdeadbeef
+  PREINIT_ARRAYSZ   0xdeadbeef
+  VERSYM            0xdeadbeef
+  GNU_PRELINKED     0xdeadbeef
+  GNU_CONFLICTSZ    3735928559 (bytes)
+  GNU_LIBLISTSZ     3735928559 (bytes)
+  CHECKSUM          0xdeadbeef
+  PLTPADSZ          3735928559 (bytes)
+  MOVEENT           3735928559 (bytes)
+  MOVESZ            3735928559 (bytes)
+  FEATURE_1         PARINIT CONFEXP 0xdeadbeec
+  POSFLAG_1         LAZYLOAD GROUPPERM 0xdeadbeec
+  SYMINSZ           3735928559 (bytes)
+  SYMINENT          3735928559 (bytes)
+  GNU_HASH          0xdeadbeef
+  TLSDESC_PLT       0xdeadbeef
+  TLSDESC_GOT       0xdeadbeef
+  GNU_CONFLICT      0xdeadbeef
+  GNU_LIBLIST       0xdeadbeef
+  CONFIG            0xdeadbeef
+  DEPAUDIT          0xdeadbeef
+  AUDIT             0xdeadbeef
+  PLTPAD            0xdeadbeef
+  MOVETAB           0xdeadbeef
+  SYMINFO           0xdeadbeef
+  RELACOUNT         3735928559
+  RELCOUNT          3735928559
+  FLAGS_1           NOW GLOBAL GROUP NODELETE INITFIRST NOOPEN ORIGIN TRANS INTERPOSE NODEFLIB NODUMP CONFALT DISPRELDNE DISPRELPND 0xdeac0000
+  VERDEF            0xdeadbeef
+  VERDEFNUM         3735928559
+  VERNEED           0xdeadbeef
+  VERNEEDNUM        3735928559
+  AUXILIARY         0xdeadbeef
+  FILTER            0xdeadbeef
FAIL run-alldts.sh (exit status: 1)

FAIL: run-elflint-test.sh
=========================

--- elflint.out
+++ -
@@ -1 +1 @@
-./run-elflint-test.sh: line 24: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
+section [ 8] '.rela.dyn': relocation 1: copy relocation against symbol of type FUNC
FAIL run-elflint-test.sh (exit status: 1)

FAIL: run-elflint-self.sh
=========================

./run-elflint-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/addr2line
./run-elflint-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elfcmp
./run-elflint-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint
./run-elflint-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/nm
./run-elflint-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/objdump
./run-elflint-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf
./run-elflint-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/size.o
./run-elflint-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip.o
./run-elflint-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/libelf/libelf.so
./run-elflint-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/libdw/libdw.so
./run-elflint-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/backends/libebl_i386.so
./run-elflint-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint --quiet --gnu-ld /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/backends/libebl_x86_64.so
FAIL run-elflint-self.sh (exit status: 1)

FAIL: run-ranlib-test.sh
========================

./run-ranlib-test.sh: line 33: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/ranlib: not found
FAIL run-ranlib-test.sh (exit status: 127)

FAIL: run-ranlib-test2.sh
=========================

./run-ranlib-test2.sh: line 26: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/ranlib: not found
FAIL run-ranlib-test2.sh (exit status: 127)

FAIL: run-ranlib-test3.sh
=========================

./run-ranlib-test3.sh: ./run-ranlib-test2.sh: line 26: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/ranlib: not found
FAIL run-ranlib-test3.sh (exit status: 2)

FAIL: run-ranlib-test4.sh
=========================

./run-ranlib-test4.sh: ./run-ranlib-test2.sh: line 26: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/ranlib: not found
FAIL run-ranlib-test4.sh (exit status: 2)

FAIL: run-addrscopes.sh
=======================

--- addrscopes.out
+++ -
@@ -1 +1,5 @@
-./run-addrscopes.sh: line 23: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/addrscopes: not found
+0x8048353:
+    tests/foo.c (0x11): 0x8048348 (tests/foo.c:5) .. 0x804837e (tests/foo.c:16)
+        global                        [    be]
+        function (0x2e): 0x8048348 (tests/foo.c:5) .. 0x804835b (tests/foo.c:14)
+            local                         [    8f]
FAIL run-addrscopes.sh (exit status: 1)

FAIL: run-strings-test.sh
=========================

--- strings.out
+++ -
@@ -1 +1,443 @@
-./run-strings-test.sh: line 25: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strings: not found
+testfile:      f4 /lib/ld-linux.so.2
+testfile:     1c9 __gmon_start__
+testfile:     1d8 libc.so.6
+testfile:     1e2 __cxa_finalize
+testfile:     1f1 __deregister_frame_info
+testfile:     209 _IO_stdin_used
+testfile:     218 __libc_start_main
+testfile:     22a __register_frame_info
+testfile:     240 GLIBC_2.1.3
+testfile:     24c GLIBC_2.0
+testfile:     338 PTRh
+testfile:     345 QVh,
+testfile2:     114 /lib/ld.so.1
+testfile2:     1f1 __gmon_start__
+testfile2:     200 __deregister_frame_info
+testfile2:     218 __register_frame_info
+testfile2:     22e libc.so.6
+testfile2:     238 __cxa_finalize
+testfile2:     247 _IO_stdin_used
+testfile2:     256 __libc_start_main
+testfile2:     268 GLIBC_2.1.3
+testfile2:     274 GLIBC_2.0
+testfile2:     488 }a[xN
+testfile2:     4a8 }a[xN
+testfile2:     50c }a[xN
+testfile2:     540 }?Kx
+testfile3:      f4 /lib/ld-linux.so.2
+testfile3:     1c9 __gmon_start__
+testfile3:     1d8 libc.so.6
+testfile3:     1e2 __cxa_finalize
+testfile3:     1f1 __deregister_frame_info
+testfile3:     209 _IO_stdin_used
+testfile3:     218 __libc_start_main
+testfile3:     22a __register_frame_info
+testfile3:     240 GLIBC_2.1.3
+testfile3:     24c GLIBC_2.0
+testfile3:     338 PTRh
+testfile3:     345 QVh,
+testfile4:      f4 /lib/ld-linux.so.2
+testfile4:     8e1 __gmon_start__
+testfile4:     8f0 __terminate_func
+testfile4:     901 stderr
+testfile4:     908 __tf9type_info
+testfile4:     917 __tf16__user_type_info
+testfile4:     92e __tf19__pointer_type_info
+testfile4:     948 __tf16__attr_type_info
+testfile4:     95f __tf16__func_type_info
+testfile4:     976 __vt_9type_info
+testfile4:     986 __vt_19__pointer_type_info
+testfile4:     9a1 __vt_16__attr_type_info
+testfile4:     9b9 __vt_16__func_type_info
+testfile4:     9d1 __vt_16__ptmf_type_info
+testfile4:     9e9 __vt_16__ptmd_type_info
+testfile4:     a01 __vt_17__array_type_info
+testfile4:     a1a __tiv
+testfile4:     a20 __vt_19__builtin_type_info
+testfile4:     a3b __tix
+testfile4:     a41 __til
+testfile4:     a47 __tii
+testfile4:     a4d __tis
+testfile4:     a53 __tib
+testfile4:     a59 __tic
+testfile4:     a5f __tiw
+testfile4:     a65 __tir
+testfile4:     a6b __tid
+testfile4:     a71 __tif
+testfile4:     a77 __tiUi
+testfile4:     a7e __tiUl
+testfile4:     a85 __tiUx
+testfile4:     a8c __tiUs
+testfile4:     a93 __tiUc
+testfile4:     a9a __tiSc
+testfile4:     aa1 __ti19__pointer_type_info
+testfile4:     abb __ti9type_info
+testfile4:     aca __ti16__attr_type_info
+testfile4:     ae1 __ti19__builtin_type_info
+testfile4:     afb __ti16__func_type_info
+testfile4:     b12 __ti16__ptmf_type_info
+testfile4:     b29 __ti16__ptmd_type_info
+testfile4:     b40 __ti17__array_type_info
+testfile4:     b58 __cplus_type_matcher
+testfile4:     b6d __vt_13bad_exception
+testfile4:     b82 __vt_9exception
+testfile4:     b92 _._13bad_exception
+testfile4:     ba5 __vt_8bad_cast
+testfile4:     bb4 _._8bad_cast
+testfile4:     bc1 __vt_10bad_typeid
+testfile4:     bd3 _._10bad_typeid
+testfile4:     be3 __ti9exception
+testfile4:     bf2 __ti13bad_exception
+testfile4:     c06 __vt_16__user_type_info
+testfile4:     c1e __vt_17__class_type_info
+testfile4:     c37 __vt_14__si_type_info
+testfile4:     c4d __ti8bad_cast
+testfile4:     c5b __ti10bad_typeid
+testfile4:     c6c __ti16__user_type_info
+testfile4:     c83 __ti14__si_type_info
+testfile4:     c98 __ti17__class_type_info
+testfile4:     cb0 libc.so.6
+testfile4:     cba __register_frame
+testfile4:     ccb pthread_create
+testfile4:     cda pthread_getspecific
+testfile4:     cee pthread_key_delete
+testfile4:     d01 __cxa_finalize
+testfile4:     d10 malloc
+testfile4:     d17 __frame_state_for
+testfile4:     d29 abort
+testfile4:     d2f __register_frame_table
+testfile4:     d46 fprintf
+testfile4:     d4e pthread_once
+testfile4:     d5b __deregister_frame_info
+testfile4:     d73 pthread_key_create
+testfile4:     d86 memset
+testfile4:     d8d strcmp
+testfile4:     d94 pthread_mutex_unlock
+testfile4:     da9 __deregister_frame
+testfile4:     dbc pthread_mutex_lock
+testfile4:     dcf _IO_stdin_used
+testfile4:     dde __libc_start_main
+testfile4:     df0 strlen
+testfile4:     df7 __register_frame_info_table
+testfile4:     e13 __register_frame_info
+testfile4:     e29 pthread_setspecific
+testfile4:     e3d free
+testfile4:     e42 GLIBC_2.1.3
+testfile4:     e4e GLIBC_2.0
+testfile4:    1308 PTRh<
+testfile4:    194b [^_]
+testfile4:    19bf [^_]
+testfile4:    1dd9 wT9L>
+testfile4:    1f3b [^_]
+testfile4:    1fae [^_]
+testfile4:    21c1 BZQRP
+testfile4:    237f [^_]
+testfile4:    2431 JWRV
+testfile4:    2454 [^_]
+testfile4:    2506 JWRV
+testfile4:    2529 [^_]
+testfile4:    2b6c [^_]
+testfile4:    2b9d ZYPV
+testfile4:    2c28 [^_]
+testfile4:    2c4d ZYPV
+testfile4:    2ce2 [^_]
+testfile4:    2dfb X^_]
+testfile4:    2fc8 [^_]
+testfile4:    307d tq;F
+testfile4:    315a [^_]
+testfile4:    31a5 :zt	1
+testfile4:    3238 [^_]
+testfile4:    32f8 AXY_VR
+testfile4:    334a [^_]
+testfile4:    37ab [^_]
+testfile4:    38b8 sU;E
+testfile4:    38f2 QRPV
+testfile4:    3926 [^_]
+testfile4:    3bfe QRWP
+testfile4:    3e65 [^_]
+testfile4:    4136 [^_]
+testfile4:    472d [^_]
+testfile4:    47a5 0[^_]
+testfile4:    48ab [^_]
+testfile4:    4ab1 _ZPV
+testfile4:    4b53 _ZPV
+testfile4:    4bd3 _ZPV
+testfile4:    4e05 PQWj
+testfile4:    4f75 [^_]
+testfile4:    4f9b u$;E u
+testfile4:    4feb [^_]
+testfile4:    5080 [^_]
+testfile4:    50a8 }$9u
+testfile4:    5149 [^_]
+testfile4:    51b0 [^_]
+testfile4:    539b [^_]
+testfile4:    53b5 E 9E
+testfile4:    540d x!)E 
+testfile4:    5598 U$	B
+testfile4:    571c [^_]
+testfile4:    5819 [^_]
+testfile4:    5922 [^_]
+testfile4:    59c2 [^_]
+testfile4:    5a62 [^_]
+testfile4:    5b02 [^_]
+testfile4:    5ba2 [^_]
+testfile4:    5c42 [^_]
+testfile4:    5ce2 [^_]
+testfile4:    6112 [^_]
+testfile4:    62bb [^_]
+testfile4:    639b [^_]
+testfile4:    6436 [^_]
+testfile4:    6468 val is zero
+testfile4:    6480 Internal Compiler Bug: No runtime type matcher.
+testfile4:    64dc 19__pointer_type_info
+testfile4:    64f2 16__attr_type_info
+testfile4:    6505 19__builtin_type_info
+testfile4:    651b 16__func_type_info
+testfile4:    652e 16__ptmf_type_info
+testfile4:    6541 16__ptmd_type_info
+testfile4:    6554 17__array_type_info
+testfile4:    6568 9exception
+testfile4:    6573 13bad_exception
+testfile4:    6583 9type_info
+testfile4:    658e 8bad_cast
+testfile4:    6598 10bad_typeid
+testfile4:    65a5 16__user_type_info
+testfile4:    65b8 14__si_type_info
+testfile4:    65c9 17__class_type_info
+testfile4:    6fc1 H. $
+testfile5:      f4 /lib/ld-linux.so.2
+testfile5:     1c9 __gmon_start__
+testfile5:     1d8 libc.so.6
+testfile5:     1e2 __cxa_finalize
+testfile5:     1f1 __deregister_frame_info
+testfile5:     209 _IO_stdin_used
+testfile5:     218 __libc_start_main
+testfile5:     22a __register_frame_info
+testfile5:     240 GLIBC_2.1.3
+testfile5:     24c GLIBC_2.0
+testfile5:     338 PTRh
+testfile5:     345 QVhD
+testfile6:     114 /lib/ld-linux.so.2
+testfile6:     3d9 libstdc++.so.5
+testfile6:     3e8 _ZTVSt16invalid_argument
+testfile6:     401 _ZNSaIcEC1Ev
+testfile6:     40e _ZTSSt16invalid_argument
+testfile6:     427 _ZTVN10__cxxabiv120__si_class_type_infoE
+testfile6:     450 _ZNSsD1Ev
+testfile6:     45a _ZdlPv
+testfile6:     461 __cxa_end_catch
+testfile6:     471 __gxx_personality_v0
+testfile6:     486 _ZTISt9exception
+testfile6:     497 _ZNSaIcED1Ev
+testfile6:     4a4 _ZTISt11logic_error
+testfile6:     4b8 _ZNSt16invalid_argumentD1Ev
+testfile6:     4d4 _ZTVN10__cxxabiv117__class_type_infoE
+testfile6:     4fa __cxa_throw
+testfile6:     506 _ZNSt16invalid_argumentC1ERKSs
+testfile6:     525 _ZNSsC1EPKcRKSaIcE
+testfile6:     538 _ZNSt11logic_errorD2Ev
+testfile6:     54f _ZTVN10__cxxabiv121__vmi_class_type_infoE
+testfile6:     579 _ZNSt16invalid_argumentD0Ev
+testfile6:     595 __cxa_begin_catch
+testfile6:     5a7 __cxa_allocate_exception
+testfile6:     5c0 _ZNKSt11logic_error4whatEv
+testfile6:     5db _Jv_RegisterClasses
+testfile6:     5ef _ZTISt16invalid_argument
+testfile6:     608 __gmon_start__
+testfile6:     617 libm.so.6
+testfile6:     621 _IO_stdin_used
+testfile6:     630 libgcc_s.so.1
+testfile6:     63e _Unwind_Resume
+testfile6:     64d libc.so.6
+testfile6:     657 __libc_start_main
+testfile6:     669 GCC_3.0
+testfile6:     671 GLIBC_2.0
+testfile6:     67b GLIBCPP_3.2
+testfile6:     687 CXXABI_1.2
+testfile6:     908 PTRh 
+testfile6:     e48 gdb.1
+testfile6:     ec8 N10__gnu_test9gnu_obj_1E
+testfile6:     ee1 N10__gnu_test9gnu_obj_2IiEE
+testfile6:     efd N10__gnu_test9gnu_obj_2IlEE
+testfile6:     f19 St16invalid_argument
+testfile7:     114 /lib/ld-linux.so.2
+testfile7:     3d9 libstdc++.so.5
+testfile7:     3e8 _ZTVSt16invalid_argument
+testfile7:     401 _ZNSaIcEC1Ev
+testfile7:     40e _ZTSSt16invalid_argument
+testfile7:     427 _ZTVN10__cxxabiv120__si_class_type_infoE
+testfile7:     450 _ZNSsD1Ev
+testfile7:     45a _ZdlPv
+testfile7:     461 __cxa_end_catch
+testfile7:     471 __gxx_personality_v0
+testfile7:     486 _ZTISt9exception
+testfile7:     497 _ZNSaIcED1Ev
+testfile7:     4a4 _ZTISt11logic_error
+testfile7:     4b8 _ZNSt16invalid_argumentD1Ev
+testfile7:     4d4 _ZTVN10__cxxabiv117__class_type_infoE
+testfile7:     4fa __cxa_throw
+testfile7:     506 _ZNSt16invalid_argumentC1ERKSs
+testfile7:     525 _ZNSsC1EPKcRKSaIcE
+testfile7:     538 _ZNSt11logic_errorD2Ev
+testfile7:     54f _ZTVN10__cxxabiv121__vmi_class_type_infoE
+testfile7:     579 _ZNSt16invalid_argumentD0Ev
+testfile7:     595 __cxa_begin_catch
+testfile7:     5a7 __cxa_allocate_exception
+testfile7:     5c0 _ZNKSt11logic_error4whatEv
+testfile7:     5db _Jv_RegisterClasses
+testfile7:     5ef _ZTISt16invalid_argument
+testfile7:     608 __gmon_start__
+testfile7:     617 libm.so.6
+testfile7:     621 _IO_stdin_used
+testfile7:     630 libgcc_s.so.1
+testfile7:     63e _Unwind_Resume
+testfile7:     64d libc.so.6
+testfile7:     657 __libc_start_main
+testfile7:     669 GCC_3.0
+testfile7:     671 GLIBC_2.0
+testfile7:     67b GLIBCPP_3.2
+testfile7:     687 CXXABI_1.2
+testfile7:     908 PTRh 
+testfile7:     e48 gdb.1
+testfile7:     ec8 N10__gnu_test9gnu_obj_1E
+testfile7:     ee1 N10__gnu_test9gnu_obj_2IiEE
+testfile7:     efd N10__gnu_test9gnu_obj_2IlEE
+testfile7:     f19 St16invalid_argument
+testfile8:      79 XZh;
+testfile8:      87 YXh<
+testfile8:     14f SQh[
+testfile8:     259 t5Wj
+testfile8:     502 WRVQ
+testfile8:    1fe7 ZYPj
+testfile8:    2115 u'Pj
+testfile8:    7bba FILE
+testfile8:    7bbf preserve-dates
+testfile8:    7bce remove-comment
+testfile8:    7bdd Remove .comment section
+testfile8:    7bf6 ${prefix}/share
+testfile8:    7c06 elfutils
+testfile8:    7c0f a.out
+testfile8:    7c15 0.58
+testfile8:    7c1a strip (Red Hat %s) %s
+testfile8:    7c31 2002
+testfile8:    7c36 Ulrich Drepper
+testfile8:    7c45 Written by %s.
+testfile8:    7c55 cannot stat input file "%s"
+testfile8:    7c71 %s: INTERNAL ERROR: %s
+testfile8:    7c88 while opening "%s"
+testfile8:    7c9b handle_elf
+testfile8:    7ca6 ../../src/strip.c
+testfile8:    7cb8 shdr_info[cnt].group_idx != 0
+testfile8:    7cd6 illformed file `%s'
+testfile8:    7cea elf_ndxscn (scn) == cnt
+testfile8:    7d02 .shstrtab
+testfile8:    7d0c while writing `%s': %s
+testfile8:    7d23 ((sym->st_info) & 0xf) == 3
+testfile8:    7d3f shndxdata != ((void *)0)
+testfile8:    7d58 scn != ((void *)0)
+testfile8:    7d6b .gnu_debuglink
+testfile8:    7d7a .comment
+testfile8:    7d83 cannot open `%s'
+testfile8:    7da0 Place stripped output into FILE
+testfile8:    7dc0 Extract the removed sections into FILE
+testfile8:    7e00 Copy modified/access timestamps to the output
+testfile8:    7e40 Only one input file allowed together with '-o' and '-f'
+testfile8:    7e80 Copyright (C) %s Red Hat, Inc.
+testfile8:    7e9f This is free software; see the source for copying conditions.  There is NO
+testfile8:    7eea warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+testfile8:    7f40 Report bugs to <drepper@redhat.com>.
+testfile8:    7f80 %s: File format not recognized
+testfile8:    7fa0 cannot set access and modification date of "%s"
+testfile8:    7fe0 cannot create new file `%s': %s
+testfile8:    8000 error while finishing `%s': %s
+testfile8:    8020 shdr_info[shdr_info[cnt].shdr.sh_link].version_idx == 0
+testfile8:    8060 shdr_info[shdr_info[cnt].shdr.sh_link].symtab_idx == 0
+testfile8:    80a0 %s: error while creating ELF header: %s
+testfile8:    80e0 %s: error while reading the file: %s
+testfile8:    8120 sec < 0xff00 || shndxdata != ((void *)0)
+testfile8:    8160 (versiondata->d_size / sizeof (GElf_Versym)) >= shdr_info[cnt].data->d_size / elsize
+testfile8:    81c0 shdr_info[cnt].shdr.sh_type == 11
+testfile8:    8200 (versiondata->d_size / sizeof (Elf32_Word)) >= shdr_info[cnt].data->d_size / elsize
+testfile8:    8260 shdr_info[cnt].shdr.sh_type == 18
+testfile8:    82a0 shdr_info[cnt].data != ((void *)0)
+testfile8:    82e0 elf_ndxscn (shdr_info[cnt].newscn) == idx
+testfile8:    8320 while create section header section: %s
+testfile8:    8360 cannot allocate section data: %s
+testfile8:    83a0 elf_ndxscn (shdr_info[cnt].newscn) == shdr_info[cnt].idx
+testfile8:    83e0 while generating output file: %s
+testfile8:    8420 while preparing output for `%s'
+testfile8:    8440 shdr_info[cnt].shdr.sh_type == 2
+testfile8:    8480 shdr_info[idx].data != ((void *)0)
+testfile8:    84c0 cannot determine number of sections: %s
+testfile8:    8500 cannot get section header string table index
+testfile8:    85c0 Discard symbols from object files.
+testfile8:    85e3 [FILE...]
+testfile9:      79 XZh;
+testfile9:      87 YXh<
+testfile9:     14f SQh[
+testfile9:     259 t5Wj
+testfile9:     502 WRVQ
+testfile9:    1fe7 ZYPj
+testfile9:    2115 u'Pj
+testfile9:    3414 FILE
+testfile9:    3419 preserve-dates
+testfile9:    3428 remove-comment
+testfile9:    3437 Remove .comment section
+testfile9:    3450 ${prefix}/share
+testfile9:    3460 elfutils
+testfile9:    3469 a.out
+testfile9:    346f 0.58
+testfile9:    3474 strip (Red Hat %s) %s
+testfile9:    348b 2002
+testfile9:    3490 Ulrich Drepper
+testfile9:    349f Written by %s.
+testfile9:    34af cannot stat input file "%s"
+testfile9:    34cb %s: INTERNAL ERROR: %s
+testfile9:    34e2 while opening "%s"
+testfile9:    34f5 handle_elf
+testfile9:    3500 ../../src/strip.c
+testfile9:    3512 shdr_info[cnt].group_idx != 0
+testfile9:    3530 illformed file `%s'
+testfile9:    3544 elf_ndxscn (scn) == cnt
+testfile9:    355c .shstrtab
+testfile9:    3566 while writing `%s': %s
+testfile9:    357d ((sym->st_info) & 0xf) == 3
+testfile9:    3599 shndxdata != ((void *)0)
+testfile9:    35b2 scn != ((void *)0)
+testfile9:    35c5 .gnu_debuglink
+testfile9:    35d4 .comment
+testfile9:    35dd cannot open `%s'
+testfile9:    3600 Place stripped output into FILE
+testfile9:    3620 Extract the removed sections into FILE
+testfile9:    3660 Copy modified/access timestamps to the output
+testfile9:    36a0 Only one input file allowed together with '-o' and '-f'
+testfile9:    36e0 Copyright (C) %s Red Hat, Inc.
+testfile9:    36ff This is free software; see the source for copying conditions.  There is NO
+testfile9:    374a warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+testfile9:    37a0 Report bugs to <drepper@redhat.com>.
+testfile9:    37e0 %s: File format not recognized
+testfile9:    3800 cannot set access and modification date of "%s"
+testfile9:    3840 cannot create new file `%s': %s
+testfile9:    3860 error while finishing `%s': %s
+testfile9:    3880 shdr_info[shdr_info[cnt].shdr.sh_link].version_idx == 0
+testfile9:    38c0 shdr_info[shdr_info[cnt].shdr.sh_link].symtab_idx == 0
+testfile9:    3900 %s: error while creating ELF header: %s
+testfile9:    3940 %s: error while reading the file: %s
+testfile9:    3980 sec < 0xff00 || shndxdata != ((void *)0)
+testfile9:    39c0 (versiondata->d_size / sizeof (GElf_Versym)) >= shdr_info[cnt].data->d_size / elsize
+testfile9:    3a20 shdr_info[cnt].shdr.sh_type == 11
+testfile9:    3a60 (versiondata->d_size / sizeof (Elf32_Word)) >= shdr_info[cnt].data->d_size / elsize
+testfile9:    3ac0 shdr_info[cnt].shdr.sh_type == 18
+testfile9:    3b00 shdr_info[cnt].data != ((void *)0)
+testfile9:    3b40 elf_ndxscn (shdr_info[cnt].newscn) == idx
+testfile9:    3b80 while create section header section: %s
+testfile9:    3bc0 cannot allocate section data: %s
+testfile9:    3c00 elf_ndxscn (shdr_info[cnt].newscn) == shdr_info[cnt].idx
+testfile9:    3c40 while generating output file: %s
+testfile9:    3c80 while preparing output for `%s'
+testfile9:    3ca0 shdr_info[cnt].shdr.sh_type == 2
+testfile9:    3ce0 shdr_info[idx].data != ((void *)0)
+testfile9:    3d20 cannot determine number of sections: %s
+testfile9:    3d60 cannot get section header string table index
+testfile9:    3e20 Discard symbols from object files.
+testfile9:    3e43 [FILE...]
FAIL run-strings-test.sh (exit status: 1)

FAIL: run-funcscopes.sh
=======================

--- funcscopes.out
+++ -
@@ -1 +1,4 @@
-./run-funcscopes.sh: line 23: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/funcscopes: not found
+testfile25: 0x8048000 .. 0x8049528
+    inline-test.c (0x11): 0x8048348 (/home/roland/build/stock-elfutils/inline-test.c:7) .. 0x804834f (/home/roland/build/stock-elfutils/inline-test.c:9)
+        incr (0x2e): 0x8048348 (/home/roland/build/stock-elfutils/inline-test.c:7) .. 0x804834f (/home/roland/build/stock-elfutils/inline-test.c:9)
+            x                             [    66]
FAIL run-funcscopes.sh (exit status: 1)

FAIL: run-find-prologues.sh
===========================

--- find-prologues.out
+++ -
@@ -1 +1,3 @@
-./run-find-prologues.sh: line 24: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/find-prologues: not found
+main             0x000000000804842c 0x0000000008048432
+bar              0x000000000804845c 0x000000000804845f
+foo              0x0000000008048468 0x000000000804846b
FAIL run-find-prologues.sh (exit status: 1)

FAIL: run-allregs.sh
====================

--- allregs.out
+++ -
@@ -1 +1,50 @@
-./run-allregs.sh: line 30: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/allregs: not found
+integer registers:
+	  0: %eax (eax), signed 32 bits
+	  1: %ecx (ecx), signed 32 bits
+	  2: %edx (edx), signed 32 bits
+	  3: %ebx (ebx), signed 32 bits
+	  4: %esp (esp), address 32 bits
+	  5: %ebp (ebp), address 32 bits
+	  6: %esi (esi), signed 32 bits
+	  7: %edi (edi), signed 32 bits
+	  8: %eip (eip), address 32 bits
+	  9: %eflags (eflags), unsigned 32 bits
+	 10: %trapno (trapno), unsigned 32 bits
+FPU-control registers:
+	 37: %fctrl (fctrl), unsigned 16 bits
+	 38: %fstat (fstat), unsigned 16 bits
+	 39: %mxcsr (mxcsr), unsigned 32 bits
+MMX registers:
+	 29: %mm0 (mm0), unsigned 64 bits
+	 30: %mm1 (mm1), unsigned 64 bits
+	 31: %mm2 (mm2), unsigned 64 bits
+	 32: %mm3 (mm3), unsigned 64 bits
+	 33: %mm4 (mm4), unsigned 64 bits
+	 34: %mm5 (mm5), unsigned 64 bits
+	 35: %mm6 (mm6), unsigned 64 bits
+	 36: %mm7 (mm7), unsigned 64 bits
+SSE registers:
+	 21: %xmm0 (xmm0), unsigned 128 bits
+	 22: %xmm1 (xmm1), unsigned 128 bits
+	 23: %xmm2 (xmm2), unsigned 128 bits
+	 24: %xmm3 (xmm3), unsigned 128 bits
+	 25: %xmm4 (xmm4), unsigned 128 bits
+	 26: %xmm5 (xmm5), unsigned 128 bits
+	 27: %xmm6 (xmm6), unsigned 128 bits
+	 28: %xmm7 (xmm7), unsigned 128 bits
+segment registers:
+	 40: %es (es), unsigned 16 bits
+	 41: %cs (cs), unsigned 16 bits
+	 42: %ss (ss), unsigned 16 bits
+	 43: %ds (ds), unsigned 16 bits
+	 44: %fs (fs), unsigned 16 bits
+	 45: %gs (gs), unsigned 16 bits
+x87 registers:
+	 11: %st0 (st0), float 80 bits
+	 12: %st1 (st1), float 80 bits
+	 13: %st2 (st2), float 80 bits
+	 14: %st3 (st3), float 80 bits
+	 15: %st4 (st4), float 80 bits
+	 16: %st5 (st5), float 80 bits
+	 17: %st6 (st6), float 80 bits
+	 18: %st7 (st7), float 80 bits
FAIL run-allregs.sh (exit status: 1)

FAIL: run-addrcfi.sh
====================

--- addrcfi.out
+++ -
@@ -1 +1,94 @@
-./run-addrcfi.sh: line 29: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/addrcfi: not found
+.eh_frame has 0x80489b8 => [0x80489b8, 0x80489b9):
+	return address in reg8
+	CFA location expression: bregx(4,4)
+	integer reg0 (%eax): undefined
+	integer reg1 (%ecx): undefined
+	integer reg2 (%edx): undefined
+	integer reg3 (%ebx): same_value
+	integer reg4 (%esp): location expression: call_frame_cfa stack_value
+	integer reg5 (%ebp): same_value
+	integer reg6 (%esi): same_value
+	integer reg7 (%edi): same_value
+	integer reg8 (%eip): location expression: call_frame_cfa plus_uconst(-4)
+	integer reg9 (%eflags): undefined
+	integer reg10 (%trapno): undefined
+	x87 reg11 (%st0): undefined
+	x87 reg12 (%st1): undefined
+	x87 reg13 (%st2): undefined
+	x87 reg14 (%st3): undefined
+	x87 reg15 (%st4): undefined
+	x87 reg16 (%st5): undefined
+	x87 reg17 (%st6): undefined
+	x87 reg18 (%st7): undefined
+	SSE reg21 (%xmm0): undefined
+	SSE reg22 (%xmm1): undefined
+	SSE reg23 (%xmm2): undefined
+	SSE reg24 (%xmm3): undefined
+	SSE reg25 (%xmm4): undefined
+	SSE reg26 (%xmm5): undefined
+	SSE reg27 (%xmm6): undefined
+	SSE reg28 (%xmm7): undefined
+	MMX reg29 (%mm0): undefined
+	MMX reg30 (%mm1): undefined
+	MMX reg31 (%mm2): undefined
+	MMX reg32 (%mm3): undefined
+	MMX reg33 (%mm4): undefined
+	MMX reg34 (%mm5): undefined
+	MMX reg35 (%mm6): undefined
+	MMX reg36 (%mm7): undefined
+	FPU-control reg37 (%fctrl): undefined
+	FPU-control reg38 (%fstat): undefined
+	FPU-control reg39 (%mxcsr): undefined
+	segment reg40 (%es): same_value
+	segment reg41 (%cs): same_value
+	segment reg42 (%ss): same_value
+	segment reg43 (%ds): same_value
+	segment reg44 (%fs): same_value
+	segment reg45 (%gs): same_value
+.debug_frame has 0x80489b8 => [0x80489b8, 0x80489b9):
+	return address in reg8
+	CFA location expression: bregx(4,4)
+	integer reg0 (%eax): undefined
+	integer reg1 (%ecx): undefined
+	integer reg2 (%edx): undefined
+	integer reg3 (%ebx): same_value
+	integer reg4 (%esp): location expression: call_frame_cfa stack_value
+	integer reg5 (%ebp): same_value
+	integer reg6 (%esi): same_value
+	integer reg7 (%edi): same_value
+	integer reg8 (%eip): location expression: call_frame_cfa plus_uconst(-4)
+	integer reg9 (%eflags): undefined
+	integer reg10 (%trapno): undefined
+	x87 reg11 (%st0): undefined
+	x87 reg12 (%st1): undefined
+	x87 reg13 (%st2): undefined
+	x87 reg14 (%st3): undefined
+	x87 reg15 (%st4): undefined
+	x87 reg16 (%st5): undefined
+	x87 reg17 (%st6): undefined
+	x87 reg18 (%st7): undefined
+	SSE reg21 (%xmm0): undefined
+	SSE reg22 (%xmm1): undefined
+	SSE reg23 (%xmm2): undefined
+	SSE reg24 (%xmm3): undefined
+	SSE reg25 (%xmm4): undefined
+	SSE reg26 (%xmm5): undefined
+	SSE reg27 (%xmm6): undefined
+	SSE reg28 (%xmm7): undefined
+	MMX reg29 (%mm0): undefined
+	MMX reg30 (%mm1): undefined
+	MMX reg31 (%mm2): undefined
+	MMX reg32 (%mm3): undefined
+	MMX reg33 (%mm4): undefined
+	MMX reg34 (%mm5): undefined
+	MMX reg35 (%mm6): undefined
+	MMX reg36 (%mm7): undefined
+	FPU-control reg37 (%fctrl): undefined
+	FPU-control reg38 (%fstat): undefined
+	FPU-control reg39 (%mxcsr): undefined
+	segment reg40 (%es): same_value
+	segment reg41 (%cs): same_value
+	segment reg42 (%ss): same_value
+	segment reg43 (%ds): same_value
+	segment reg44 (%fs): same_value
+	segment reg45 (%gs): same_value
FAIL run-addrcfi.sh (exit status: 1)

FAIL: run-nm-self.sh
====================

./run-nm-self.sh: line 36: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/nm: not found
FAIL run-nm-self.sh (exit status: 127)

FAIL: run-readelf-self.sh
=========================

./run-readelf-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf -a -w /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/addr2line
./run-readelf-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf -a -w /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elfcmp
./run-readelf-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf -a -w /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/elflint
./run-readelf-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf -a -w /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/nm
./run-readelf-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf -a -w /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/objdump
./run-readelf-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf -a -w /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf
./run-readelf-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf -a -w /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/size.o
./run-readelf-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf -a -w /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/strip.o
./run-readelf-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf -a -w /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/libelf/libelf.so
./run-readelf-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf -a -w /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/libdw/libdw.so
./run-readelf-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf -a -w /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/backends/libebl_i386.so
./run-readelf-self.sh: line 21: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure in /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf -a -w /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/backends/libebl_x86_64.so
FAIL run-readelf-self.sh (exit status: 1)

FAIL: run-readelf-test1.sh
==========================

./run-readelf-test1.sh: line 29: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
FAIL run-readelf-test1.sh (exit status: 127)

FAIL: run-readelf-test2.sh
==========================

--- readelf.out
+++ -
@@ -1 +1,3 @@
-./run-readelf-test2.sh: line 23: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+Hex dump of section [6] '.strtab', 1 bytes at offset 0x290:
+  0x00000000 00                                  .
FAIL run-readelf-test2.sh (exit status: 1)

FAIL: run-readelf-test3.sh
==========================

--- readelf.out
+++ -
@@ -1 +1,6 @@
-./run-readelf-test3.sh: line 23: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+Note section [ 6] '.note' of 60 bytes at offset 0x120:
+  Owner          Data size  Type
+  GNU                   20  GNU_BUILD_ID
+    Build ID: 34072edcd87ef6728f4b4a7956167b2fcfc3f1d3
+  Linux                  4  <unknown>: 0
FAIL run-readelf-test3.sh (exit status: 1)

FAIL: run-readelf-test4.sh
==========================

--- readelf.out
+++ -
@@ -1 +1,8 @@
-./run-readelf-test4.sh: line 23: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+Index of archive 'testfile19.index' has 4 entries:
+Archive member 'u1.o' contains:
+	a
+Archive member 'u2.o' contains:
+	aa
+Archive member 'u3.o' contains:
+	a
FAIL run-readelf-test4.sh (exit status: 1)

FAIL: run-readelf-twofiles.sh
=============================

./run-readelf-twofiles.sh: line 22: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
FAIL run-readelf-twofiles.sh (exit status: 127)

FAIL: run-readelf-macro.sh
==========================

--- readelf.out
+++ -
@@ -1 +1,280 @@
-./run-readelf-macro.sh: line 63: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+DWARF section [32] '.debug_macro' at offset 0x2480:
+
+ Offset:             0x0
+ Version:            4
+ Flag:               0x2
+ Offset length:      4
+ .debug_line offset: 0x0
+
+ #include offset 0x1a
+ start_file 0, [1] /home/mark/src/tests/hello.c
+  start_file 1, [2] /home/mark/src/tests/common.h
+   #include offset 0x582
+  end_file
+ end_file
+
+ Offset:             0x1a
+ Version:            4
+ Flag:               0x0
+ Offset length:      4
+
+ #define __STDC__ 1, line 1 (indirect)
+ #define __STDC_HOSTED__ 1, line 1 (indirect)
+ #define __GNUC__ 4, line 1 (indirect)
+ #define __GNUC_MINOR__ 7, line 1 (indirect)
+ #define __GNUC_PATCHLEVEL__ 1, line 1 (indirect)
+ #define __VERSION__ "4.7.1 20120629 (Red Hat 4.7.1-1)", line 1 (indirect)
+ #define __GNUC_RH_RELEASE__ 1, line 1 (indirect)
+ #define __ATOMIC_RELAXED 0, line 1 (indirect)
+ #define __ATOMIC_SEQ_CST 5, line 1 (indirect)
+ #define __ATOMIC_ACQUIRE 2, line 1 (indirect)
+ #define __ATOMIC_RELEASE 3, line 1 (indirect)
+ #define __ATOMIC_ACQ_REL 4, line 1 (indirect)
+ #define __ATOMIC_CONSUME 1, line 1 (indirect)
+ #define __FINITE_MATH_ONLY__ 0, line 1 (indirect)
+ #define _LP64 1, line 1 (indirect)
+ #define __LP64__ 1, line 1 (indirect)
+ #define __SIZEOF_INT__ 4, line 1 (indirect)
+ #define __SIZEOF_LONG__ 8, line 1 (indirect)
+ #define __SIZEOF_LONG_LONG__ 8, line 1 (indirect)
+ #define __SIZEOF_SHORT__ 2, line 1 (indirect)
+ #define __SIZEOF_FLOAT__ 4, line 1 (indirect)
+ #define __SIZEOF_DOUBLE__ 8, line 1 (indirect)
+ #define __SIZEOF_LONG_DOUBLE__ 16, line 1 (indirect)
+ #define __SIZEOF_SIZE_T__ 8, line 1 (indirect)
+ #define __CHAR_BIT__ 8, line 1 (indirect)
+ #define __BIGGEST_ALIGNMENT__ 16, line 1 (indirect)
+ #define __ORDER_LITTLE_ENDIAN__ 1234, line 1 (indirect)
+ #define __ORDER_BIG_ENDIAN__ 4321, line 1 (indirect)
+ #define __ORDER_PDP_ENDIAN__ 3412, line 1 (indirect)
+ #define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__, line 1 (indirect)
+ #define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__, line 1 (indirect)
+ #define __SIZEOF_POINTER__ 8, line 1 (indirect)
+ #define __SIZE_TYPE__ long unsigned int, line 1 (indirect)
+ #define __PTRDIFF_TYPE__ long int, line 1 (indirect)
+ #define __WCHAR_TYPE__ int, line 1 (indirect)
+ #define __WINT_TYPE__ unsigned int, line 1 (indirect)
+ #define __INTMAX_TYPE__ long int, line 1 (indirect)
+ #define __UINTMAX_TYPE__ long unsigned int, line 1 (indirect)
+ #define __CHAR16_TYPE__ short unsigned int, line 1 (indirect)
+ #define __CHAR32_TYPE__ unsigned int, line 1 (indirect)
+ #define __SIG_ATOMIC_TYPE__ int, line 1 (indirect)
+ #define __INT8_TYPE__ signed char, line 1 (indirect)
+ #define __INT16_TYPE__ short int, line 1 (indirect)
+ #define __INT32_TYPE__ int, line 1 (indirect)
+ #define __INT64_TYPE__ long int, line 1 (indirect)
+ #define __UINT8_TYPE__ unsigned char, line 1 (indirect)
+ #define __UINT16_TYPE__ short unsigned int, line 1 (indirect)
+ #define __UINT32_TYPE__ unsigned int, line 1 (indirect)
+ #define __UINT64_TYPE__ long unsigned int, line 1 (indirect)
+ #define __INT_LEAST8_TYPE__ signed char, line 1 (indirect)
+ #define __INT_LEAST16_TYPE__ short int, line 1 (indirect)
+ #define __INT_LEAST32_TYPE__ int, line 1 (indirect)
+ #define __INT_LEAST64_TYPE__ long int, line 1 (indirect)
+ #define __UINT_LEAST8_TYPE__ unsigned char, line 1 (indirect)
+ #define __UINT_LEAST16_TYPE__ short unsigned int, line 1 (indirect)
+ #define __UINT_LEAST32_TYPE__ unsigned int, line 1 (indirect)
+ #define __UINT_LEAST64_TYPE__ long unsigned int, line 1 (indirect)
+ #define __INT_FAST8_TYPE__ signed char, line 1 (indirect)
+ #define __INT_FAST16_TYPE__ long int, line 1 (indirect)
+ #define __INT_FAST32_TYPE__ long int, line 1 (indirect)
+ #define __INT_FAST64_TYPE__ long int, line 1 (indirect)
+ #define __UINT_FAST8_TYPE__ unsigned char, line 1 (indirect)
+ #define __UINT_FAST16_TYPE__ long unsigned int, line 1 (indirect)
+ #define __UINT_FAST32_TYPE__ long unsigned int, line 1 (indirect)
+ #define __UINT_FAST64_TYPE__ long unsigned int, line 1 (indirect)
+ #define __INTPTR_TYPE__ long int, line 1 (indirect)
+ #define __UINTPTR_TYPE__ long unsigned int, line 1 (indirect)
+ #define __GXX_ABI_VERSION 1002, line 1 (indirect)
+ #define __SCHAR_MAX__ 127, line 1 (indirect)
+ #define __SHRT_MAX__ 32767, line 1 (indirect)
+ #define __INT_MAX__ 2147483647, line 1 (indirect)
+ #define __LONG_MAX__ 9223372036854775807L, line 1 (indirect)
+ #define __LONG_LONG_MAX__ 9223372036854775807LL, line 1 (indirect)
+ #define __WCHAR_MAX__ 2147483647, line 1 (indirect)
+ #define __WCHAR_MIN__ (-__WCHAR_MAX__ - 1), line 1 (indirect)
+ #define __WINT_MAX__ 4294967295U, line 1 (indirect)
+ #define __WINT_MIN__ 0U, line 1 (indirect)
+ #define __PTRDIFF_MAX__ 9223372036854775807L, line 1 (indirect)
+ #define __SIZE_MAX__ 18446744073709551615UL, line 1 (indirect)
+ #define __INTMAX_MAX__ 9223372036854775807L, line 1 (indirect)
+ #define __INTMAX_C(c) c ## L, line 1 (indirect)
+ #define __UINTMAX_MAX__ 18446744073709551615UL, line 1 (indirect)
+ #define __UINTMAX_C(c) c ## UL, line 1 (indirect)
+ #define __SIG_ATOMIC_MAX__ 2147483647, line 1 (indirect)
+ #define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1), line 1 (indirect)
+ #define __INT8_MAX__ 127, line 1 (indirect)
+ #define __INT16_MAX__ 32767, line 1 (indirect)
+ #define __INT32_MAX__ 2147483647, line 1 (indirect)
+ #define __INT64_MAX__ 9223372036854775807L, line 1 (indirect)
+ #define __UINT8_MAX__ 255, line 1 (indirect)
+ #define __UINT16_MAX__ 65535, line 1 (indirect)
+ #define __UINT32_MAX__ 4294967295U, line 1 (indirect)
+ #define __UINT64_MAX__ 18446744073709551615UL, line 1 (indirect)
+ #define __INT_LEAST8_MAX__ 127, line 1 (indirect)
+ #define __INT8_C(c) c, line 1 (indirect)
+ #define __INT_LEAST16_MAX__ 32767, line 1 (indirect)
+ #define __INT16_C(c) c, line 1 (indirect)
+ #define __INT_LEAST32_MAX__ 2147483647, line 1 (indirect)
+ #define __INT32_C(c) c, line 1 (indirect)
+ #define __INT_LEAST64_MAX__ 9223372036854775807L, line 1 (indirect)
+ #define __INT64_C(c) c ## L, line 1 (indirect)
+ #define __UINT_LEAST8_MAX__ 255, line 1 (indirect)
+ #define __UINT8_C(c) c, line 1 (indirect)
+ #define __UINT_LEAST16_MAX__ 65535, line 1 (indirect)
+ #define __UINT16_C(c) c, line 1 (indirect)
+ #define __UINT_LEAST32_MAX__ 4294967295U, line 1 (indirect)
+ #define __UINT32_C(c) c ## U, line 1 (indirect)
+ #define __UINT_LEAST64_MAX__ 18446744073709551615UL, line 1 (indirect)
+ #define __UINT64_C(c) c ## UL, line 1 (indirect)
+ #define __INT_FAST8_MAX__ 127, line 1 (indirect)
+ #define __INT_FAST16_MAX__ 9223372036854775807L, line 1 (indirect)
+ #define __INT_FAST32_MAX__ 9223372036854775807L, line 1 (indirect)
+ #define __INT_FAST64_MAX__ 9223372036854775807L, line 1 (indirect)
+ #define __UINT_FAST8_MAX__ 255, line 1 (indirect)
+ #define __UINT_FAST16_MAX__ 18446744073709551615UL, line 1 (indirect)
+ #define __UINT_FAST32_MAX__ 18446744073709551615UL, line 1 (indirect)
+ #define __UINT_FAST64_MAX__ 18446744073709551615UL, line 1 (indirect)
+ #define __INTPTR_MAX__ 9223372036854775807L, line 1 (indirect)
+ #define __UINTPTR_MAX__ 18446744073709551615UL, line 1 (indirect)
+ #define __FLT_EVAL_METHOD__ 0, line 1 (indirect)
+ #define __DEC_EVAL_METHOD__ 2, line 1 (indirect)
+ #define __FLT_RADIX__ 2, line 1 (indirect)
+ #define __FLT_MANT_DIG__ 24, line 1 (indirect)
+ #define __FLT_DIG__ 6, line 1 (indirect)
+ #define __FLT_MIN_EXP__ (-125), line 1 (indirect)
+ #define __FLT_MIN_10_EXP__ (-37), line 1 (indirect)
+ #define __FLT_MAX_EXP__ 128, line 1 (indirect)
+ #define __FLT_MAX_10_EXP__ 38, line 1 (indirect)
+ #define __FLT_DECIMAL_DIG__ 9, line 1 (indirect)
+ #define __FLT_MAX__ 3.40282346638528859812e+38F, line 1 (indirect)
+ #define __FLT_MIN__ 1.17549435082228750797e-38F, line 1 (indirect)
+ #define __FLT_EPSILON__ 1.19209289550781250000e-7F, line 1 (indirect)
+ #define __FLT_DENORM_MIN__ 1.40129846432481707092e-45F, line 1 (indirect)
+ #define __FLT_HAS_DENORM__ 1, line 1 (indirect)
+ #define __FLT_HAS_INFINITY__ 1, line 1 (indirect)
+ #define __FLT_HAS_QUIET_NAN__ 1, line 1 (indirect)
+ #define __DBL_MANT_DIG__ 53, line 1 (indirect)
+ #define __DBL_DIG__ 15, line 1 (indirect)
+ #define __DBL_MIN_EXP__ (-1021), line 1 (indirect)
+ #define __DBL_MIN_10_EXP__ (-307), line 1 (indirect)
+ #define __DBL_MAX_EXP__ 1024, line 1 (indirect)
+ #define __DBL_MAX_10_EXP__ 308, line 1 (indirect)
+ #define __DBL_DECIMAL_DIG__ 17, line 1 (indirect)
+ #define __DBL_MAX__ ((double)1.79769313486231570815e+308L), line 1 (indirect)
+ #define __DBL_MIN__ ((double)2.22507385850720138309e-308L), line 1 (indirect)
+ #define __DBL_EPSILON__ ((double)2.22044604925031308085e-16L), line 1 (indirect)
+ #define __DBL_DENORM_MIN__ ((double)4.94065645841246544177e-324L), line 1 (indirect)
+ #define __DBL_HAS_DENORM__ 1, line 1 (indirect)
+ #define __DBL_HAS_INFINITY__ 1, line 1 (indirect)
+ #define __DBL_HAS_QUIET_NAN__ 1, line 1 (indirect)
+ #define __LDBL_MANT_DIG__ 64, line 1 (indirect)
+ #define __LDBL_DIG__ 18, line 1 (indirect)
+ #define __LDBL_MIN_EXP__ (-16381), line 1 (indirect)
+ #define __LDBL_MIN_10_EXP__ (-4931), line 1 (indirect)
+ #define __LDBL_MAX_EXP__ 16384, line 1 (indirect)
+ #define __LDBL_MAX_10_EXP__ 4932, line 1 (indirect)
+ #define __DECIMAL_DIG__ 21, line 1 (indirect)
+ #define __LDBL_MAX__ 1.18973149535723176502e+4932L, line 1 (indirect)
+ #define __LDBL_MIN__ 3.36210314311209350626e-4932L, line 1 (indirect)
+ #define __LDBL_EPSILON__ 1.08420217248550443401e-19L, line 1 (indirect)
+ #define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L, line 1 (indirect)
+ #define __LDBL_HAS_DENORM__ 1, line 1 (indirect)
+ #define __LDBL_HAS_INFINITY__ 1, line 1 (indirect)
+ #define __LDBL_HAS_QUIET_NAN__ 1, line 1 (indirect)
+ #define __DEC32_MANT_DIG__ 7, line 1 (indirect)
+ #define __DEC32_MIN_EXP__ (-94), line 1 (indirect)
+ #define __DEC32_MAX_EXP__ 97, line 1 (indirect)
+ #define __DEC32_MIN__ 1E-95DF, line 1 (indirect)
+ #define __DEC32_MAX__ 9.999999E96DF, line 1 (indirect)
+ #define __DEC32_EPSILON__ 1E-6DF, line 1 (indirect)
+ #define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF, line 1 (indirect)
+ #define __DEC64_MANT_DIG__ 16, line 1 (indirect)
+ #define __DEC64_MIN_EXP__ (-382), line 1 (indirect)
+ #define __DEC64_MAX_EXP__ 385, line 1 (indirect)
+ #define __DEC64_MIN__ 1E-383DD, line 1 (indirect)
+ #define __DEC64_MAX__ 9.999999999999999E384DD, line 1 (indirect)
+ #define __DEC64_EPSILON__ 1E-15DD, line 1 (indirect)
+ #define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD, line 1 (indirect)
+ #define __DEC128_MANT_DIG__ 34, line 1 (indirect)
+ #define __DEC128_MIN_EXP__ (-6142), line 1 (indirect)
+ #define __DEC128_MAX_EXP__ 6145, line 1 (indirect)
+ #define __DEC128_MIN__ 1E-6143DL, line 1 (indirect)
+ #define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL, line 1 (indirect)
+ #define __DEC128_EPSILON__ 1E-33DL, line 1 (indirect)
+ #define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL, line 1 (indirect)
+ #define __REGISTER_PREFIX__ , line 1 (indirect)
+ #define __USER_LABEL_PREFIX__ , line 1 (indirect)
+ #define __GNUC_GNU_INLINE__ 1, line 1 (indirect)
+ #define __NO_INLINE__ 1, line 1 (indirect)
+ #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1, line 1 (indirect)
+ #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1, line 1 (indirect)
+ #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1, line 1 (indirect)
+ #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1, line 1 (indirect)
+ #define __GCC_ATOMIC_BOOL_LOCK_FREE 2, line 1 (indirect)
+ #define __GCC_ATOMIC_CHAR_LOCK_FREE 2, line 1 (indirect)
+ #define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2, line 1 (indirect)
+ #define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2, line 1 (indirect)
+ #define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2, line 1 (indirect)
+ #define __GCC_ATOMIC_SHORT_LOCK_FREE 2, line 1 (indirect)
+ #define __GCC_ATOMIC_INT_LOCK_FREE 2, line 1 (indirect)
+ #define __GCC_ATOMIC_LONG_LOCK_FREE 2, line 1 (indirect)
+ #define __GCC_ATOMIC_LLONG_LOCK_FREE 2, line 1 (indirect)
+ #define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1, line 1 (indirect)
+ #define __GCC_ATOMIC_POINTER_LOCK_FREE 2, line 1 (indirect)
+ #define __GCC_HAVE_DWARF2_CFI_ASM 1, line 1 (indirect)
+ #define __PRAGMA_REDEFINE_EXTNAME 1, line 1 (indirect)
+ #define __SIZEOF_INT128__ 16, line 1 (indirect)
+ #define __SIZEOF_WCHAR_T__ 4, line 1 (indirect)
+ #define __SIZEOF_WINT_T__ 4, line 1 (indirect)
+ #define __SIZEOF_PTRDIFF_T__ 8, line 1 (indirect)
+ #define __amd64 1, line 1 (indirect)
+ #define __amd64__ 1, line 1 (indirect)
+ #define __x86_64 1, line 1 (indirect)
+ #define __x86_64__ 1, line 1 (indirect)
+ #define __k8 1, line 1 (indirect)
+ #define __k8__ 1, line 1 (indirect)
+ #define __MMX__ 1, line 1 (indirect)
+ #define __SSE__ 1, line 1 (indirect)
+ #define __SSE2__ 1, line 1 (indirect)
+ #define __SSE_MATH__ 1, line 1 (indirect)
+ #define __SSE2_MATH__ 1, line 1 (indirect)
+ #define __gnu_linux__ 1, line 1 (indirect)
+ #define __linux 1, line 1 (indirect)
+ #define __linux__ 1, line 1 (indirect)
+ #define linux 1, line 1 (indirect)
+ #define __unix 1, line 1 (indirect)
+ #define __unix__ 1, line 1 (indirect)
+ #define unix 1, line 1 (indirect)
+ #define __ELF__ 1, line 1 (indirect)
+ #define __DECIMAL_BID_FORMAT__ 1, line 1 (indirect)
+
+ Offset:             0x582
+ Version:            4
+ Flag:               0x0
+ Offset length:      4
+
+ #define ONE 1, line 1 (indirect)
+ #define TWO 2, line 2 (indirect)
+ #define THREE 3, line 3 (indirect)
+ #define WORLD "World", line 5 (indirect)
+ #define A 'a', line 9 (indirect)
+ #define B b, line 10
+ #define C "C", line 11 (indirect)
+ #undef THREE, line 14 (indirect)
+ #define THREE(ARG1,ARG2,ARG3) ARG3, line 15 (indirect)
+
+ Offset:             0x5bc
+ Version:            4
+ Flag:               0x2
+ Offset length:      4
+ .debug_line offset: 0x47
+
+ #include offset 0x1a
+ start_file 0, [1] /home/mark/src/tests/world.c
+  start_file 1, [2] /home/mark/src/tests/common.h
+   #include offset 0x582
+  end_file
+ end_file
+
FAIL run-readelf-macro.sh (exit status: 1)

FAIL: run-readelf-loc.sh
========================

--- readelf.out
+++ -
@@ -1 +1,11 @@
-./run-readelf-loc.sh: line 64: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+DWARF section [33] '.debug_loc' at offset 0xd2a:
+ [     0]  0x0000000000400480 <main>..0x000000000040048d <main+0xd> [   0] reg5
+ [    23]  0x0000000000400485 <main+0x5>..0x000000000040048d <main+0xd> [   0] reg5
+ [    46]  0x00000000004004b2 <say+0x12>..0x00000000004004ba <say+0x1a> [   0] breg5 0
+
+DWARF section [34] '.debug_ranges' at offset 0xd94:
+ [     0]  0x0000000000400480 <main>..0x0000000000400482 <main+0x2>
+           0x0000000000400485 <main+0x5>..0x000000000040048d <main+0xd>
+ [    30]  0x00000000004004ad <say+0xd>..0x00000000004004af <say+0xf>
+           0x00000000004004b2 <say+0x12>..0x00000000004004ba <say+0x1a>
FAIL run-readelf-loc.sh (exit status: 1)

FAIL: run-readelf-aranges.sh
============================

--- readelf.out
+++ -
@@ -1 +1,34 @@
-./run-readelf-aranges.sh: line 115: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+DWARF section [27] '.debug_aranges' at offset 0x1044:
+
+Table at offset 0:
+
+ Length:            28
+ DWARF version:      2
+ CU offset:          0
+ Address size:       4
+ Segment size:       0
+
+   0x080482f0 <main>..0x08048323 <main+0x33>
+
+Table at offset 32:
+
+ Length:            36
+ DWARF version:      2
+ CU offset:        136
+ Address size:       4
+ Segment size:       0
+
+   0x08048440 <bar>..0x08048451 <bar+0x11>
+   0x08048330 <nobar>..0x0804833a <nobar+0xa>
+
+Table at offset 72:
+
+ Length:            36
+ DWARF version:      2
+ CU offset:        1d1
+ Address size:       4
+ Segment size:       0
+
+   0x08048460 <baz>..0x080484bb <baz+0x5b>
+   0x08048340 <nobaz>..0x0804834a <nobaz+0xa>
FAIL run-readelf-aranges.sh (exit status: 1)

FAIL: run-readelf-line.sh
=========================

--- readelf.out
+++ -
@@ -1 +1,172 @@
-./run-readelf-line.sh: line 26: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+DWARF section [30] '.debug_line' at offset 0x15f6:
+
+Table at offset 0:
+
+ Length:                     83
+ DWARF version:              2
+ Prologue length:            43
+ Minimum instruction length: 1
+ Maximum operations per instruction: 1
+ Initial value if 'is_stmt': 1
+ Line base:                  -5
+ Line range:                 14
+ Opcode base:                13
+
+Opcodes:
+  [ 1]  0 arguments
+  [ 2]  1 argument
+  [ 3]  1 argument
+  [ 4]  1 argument
+  [ 5]  1 argument
+  [ 6]  0 arguments
+  [ 7]  0 arguments
+  [ 8]  0 arguments
+  [ 9]  1 argument
+  [10]  0 arguments
+  [11]  0 arguments
+  [12]  1 argument
+
+Directory table:
+
+File name table:
+ Entry Dir   Time      Size      Name
+ 1     0     0         0         foo.c
+ 2     0     0         0         foobarbaz.h
+
+Line number statements:
+ [    35] extended opcode 2:  set address to 0x80482f0 <main>
+ [    3c] advance line by constant 15 to 16
+ [    3e] copy
+ [    3f] special opcode 159: address+10 = 0x80482fa <main+0xa>, line+1 = 17
+ [    40] special opcode 117: address+7 = 0x8048301 <main+0x11>, line+1 = 18
+ [    41] advance line by constant -9 to 9
+ [    43] special opcode 200: address+13 = 0x804830e <main+0x1e>, line+0 = 9
+ [    44] special opcode 48: address+2 = 0x8048310 <main+0x20>, line+2 = 11
+ [    45] special opcode 58: address+3 = 0x8048313 <main+0x23>, line-2 = 9
+ [    46] special opcode 48: address+2 = 0x8048315 <main+0x25>, line+2 = 11
+ [    47] special opcode 44: address+2 = 0x8048317 <main+0x27>, line-2 = 9
+ [    48] advance line by constant 13 to 22
+ [    4a] special opcode 46: address+2 = 0x8048319 <main+0x29>, line+0 = 22
+ [    4b] advance line by constant -13 to 9
+ [    4d] special opcode 60: address+3 = 0x804831c <main+0x2c>, line+0 = 9
+ [    4e] advance line by constant 12 to 21
+ [    50] special opcode 60: address+3 = 0x804831f <main+0x2f>, line+0 = 21
+ [    51] special opcode 61: address+3 = 0x8048322 <main+0x32>, line+1 = 22
+ [    52] advance address by 2 to 0x8048324
+ [    54] extended opcode 1:  end of sequence
+
+Table at offset 87:
+
+ Length:                     72
+ DWARF version:              2
+ Prologue length:            28
+ Minimum instruction length: 1
+ Maximum operations per instruction: 1
+ Initial value if 'is_stmt': 1
+ Line base:                  -5
+ Line range:                 14
+ Opcode base:                13
+
+Opcodes:
+  [ 1]  0 arguments
+  [ 2]  1 argument
+  [ 3]  1 argument
+  [ 4]  1 argument
+  [ 5]  1 argument
+  [ 6]  0 arguments
+  [ 7]  0 arguments
+  [ 8]  0 arguments
+  [ 9]  1 argument
+  [10]  0 arguments
+  [11]  0 arguments
+  [12]  1 argument
+
+Directory table:
+
+File name table:
+ Entry Dir   Time      Size      Name
+ 1     0     0         0         bar.c
+
+Line number statements:
+ [    7d] extended opcode 2:  set address to 0x8048330 <nobar>
+ [    84] advance line by constant 12 to 13
+ [    86] copy
+ [    87] special opcode 19: address+0 = 0x8048330 <nobar>, line+1 = 14
+ [    88] advance address by 11 to 0x804833b
+ [    8a] extended opcode 1:  end of sequence
+ [    8d] extended opcode 2:  set address to 0x8048440 <bar>
+ [    94] advance line by constant 18 to 19
+ [    96] copy
+ [    97] special opcode 19: address+0 = 0x8048440 <bar>, line+1 = 20
+ [    98] advance line by constant -12 to 8
+ [    9a] special opcode 200: address+13 = 0x804844d <bar+0xd>, line+0 = 8
+ [    9b] advance line by constant 14 to 22
+ [    9d] special opcode 74: address+4 = 0x8048451 <bar+0x11>, line+0 = 22
+ [    9e] advance address by 1 to 0x8048452
+ [    a0] extended opcode 1:  end of sequence
+
+Table at offset 163:
+
+ Length:                     106
+ DWARF version:              2
+ Prologue length:            43
+ Minimum instruction length: 1
+ Maximum operations per instruction: 1
+ Initial value if 'is_stmt': 1
+ Line base:                  -5
+ Line range:                 14
+ Opcode base:                13
+
+Opcodes:
+  [ 1]  0 arguments
+  [ 2]  1 argument
+  [ 3]  1 argument
+  [ 4]  1 argument
+  [ 5]  1 argument
+  [ 6]  0 arguments
+  [ 7]  0 arguments
+  [ 8]  0 arguments
+  [ 9]  1 argument
+  [10]  0 arguments
+  [11]  0 arguments
+  [12]  1 argument
+
+Directory table:
+
+File name table:
+ Entry Dir   Time      Size      Name
+ 1     0     0         0         baz.c
+ 2     0     0         0         foobarbaz.h
+
+Line number statements:
+ [    d8] extended opcode 2:  set address to 0x8048340 <nobaz>
+ [    df] advance line by constant 12 to 13
+ [    e1] copy
+ [    e2] special opcode 19: address+0 = 0x8048340 <nobaz>, line+1 = 14
+ [    e3] advance address by 11 to 0x804834b
+ [    e5] extended opcode 1:  end of sequence
+ [    e8] extended opcode 2:  set address to 0x8048460 <baz>
+ [    ef] advance line by constant 18 to 19
+ [    f1] copy
+ [    f2] special opcode 74: address+4 = 0x8048464 <baz+0x4>, line+0 = 19
+ [    f3] special opcode 75: address+4 = 0x8048468 <baz+0x8>, line+1 = 20
+ [    f4] extended opcode 4:  set discriminator to 1
+ [    f8] special opcode 78: address+4 = 0x804846c <baz+0xc>, line+4 = 24
+ [    f9] special opcode 187: address+12 = 0x8048478 <baz+0x18>, line+1 = 25
+ [    fa] special opcode 87: address+5 = 0x804847d <baz+0x1d>, line-1 = 24
+ [    fb] special opcode 61: address+3 = 0x8048480 <baz+0x20>, line+1 = 25
+ [    fc] special opcode 101: address+6 = 0x8048486 <baz+0x26>, line-1 = 24
+ [    fd] special opcode 61: address+3 = 0x8048489 <baz+0x29>, line+1 = 25
+ [    fe] special opcode 87: address+5 = 0x804848e <baz+0x2e>, line-1 = 24
+ [    ff] advance line by constant -16 to 8
+ [   101] special opcode 46: address+2 = 0x8048490 <baz+0x30>, line+0 = 8
+ [   102] advance line by constant 20 to 28
+ [   104] special opcode 186: address+12 = 0x804849c <baz+0x3c>, line+0 = 28
+ [   105] advance line by constant -20 to 8
+ [   107] special opcode 88: address+5 = 0x80484a1 <baz+0x41>, line+0 = 8
+ [   108] advance line by constant 13 to 21
+ [   10a] advance address by constant 17 to 0x80484b2 <baz+0x52>
+ [   10b] special opcode 32: address+1 = 0x80484b3 <baz+0x53>, line+0 = 21
+ [   10c] advance address by 9 to 0x80484bc
+ [   10e] extended opcode 1:  end of sequence
FAIL run-readelf-line.sh (exit status: 1)

FAIL: run-native-test.sh
========================

./run-native-test.sh: line 80: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/allregs: not found
FAIL run-native-test.sh (exit status: 127)

FAIL: run-addrname-test.sh
==========================

--- addr2line.out
+++ -
@@ -1 +1,12 @@
-./run-addrname-test.sh: line 25: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/addr2line: not found
+foo
+??:0
+bar
+??:0
+_etext
+??:0
+data1
+??:0
+??
+??:0
+_end
+??:0
FAIL run-addrname-test.sh (exit status: 1)

FAIL: run-dwfl-bug-offline-rel.sh
=================================

--- dwflmodtest.out
+++ -
@@ -1 +1,3 @@
-./run-dwfl-bug-offline-rel.sh: line 23: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/dwflmodtest: not found
+module:                                00000000..00002308 testfile36 (null)
+module:                                00000000 DWARF 0 (no error)
+module:                                00000000..00002308 testfile36 testfile36.debug
FAIL run-dwfl-bug-offline-rel.sh (exit status: 1)

FAIL: run-dwfl-addr-sect.sh
===========================

--- dwfl-addr-sect.out
+++ -
@@ -1 +1,3 @@
-./run-dwfl-addr-sect.sh: line 23: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/dwfl-addr-sect: not found
+address 0x64 => module "" section 4 + 0
+address 0x8 => module "" section 1 + 0x8
+address 0x98 => module "" section 7 + 0
FAIL run-dwfl-addr-sect.sh (exit status: 1)

FAIL: run-prelink-addr-test.sh
==============================

--- addr2line.out
+++ -
@@ -1 +1,6 @@
-./run-prelink-addr-test.sh: line 52: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/addr2line: not found
+foo
+/home/jistone/src/elfutils/tests/testfile52-32.c:2
+foo+0x1
+/home/jistone/src/elfutils/tests/testfile52-32.c:2
+foo+0x2
+/home/jistone/src/elfutils/tests/testfile52-32.c:2
FAIL run-prelink-addr-test.sh (exit status: 1)

FAIL: run-readelf-d.sh
======================

--- readelf.out
+++ -
@@ -1 +1,32 @@
-./run-readelf-d.sh: line 36: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+Dynamic segment contains 28 entries:
+ Addr: 0x00000000000017e0  Offset: 0x0007e0  Link to section: [ 3] '.dynstr'
+  Type              Value
+  PLTGOT            0x00000000000019c8
+  PLTRELSZ          72 (bytes)
+  JMPREL            0x0000000000000568
+  PLTREL            RELA
+  RELA              0x00000000000004d8
+  RELASZ            144 (bytes)
+  RELAENT           24 (bytes)
+  RELACOUNT         1
+  SYMTAB            0x0000000000000228
+  SYMENT            24 (bytes)
+  STRTAB            0x0000000000000360
+  STRSZ             190 (bytes)
+  GNU_HASH          0x0000000000000420
+  NEEDED            Shared library: [libc.so.6]
+  NEEDED            Shared library: [ld-linux-x86-64.so.2]
+  INIT              0x00000000000005b0
+  FINI              0x0000000000000748
+  VERSYM            0x0000000000000460
+  VERDEF            0x000000000000047c
+  VERDEFNUM         1
+  VERNEED           0x0000000000000498
+  VERNEEDNUM        2
+  NULL              
+  NULL              
+  NULL              
+  NULL              
+  NULL              
+  NULL              
FAIL run-readelf-d.sh (exit status: 1)

FAIL: run-readelf-gdb_index.sh
==============================

--- readelf.out
+++ -
@@ -1 +1,28 @@
-./run-readelf-gdb_index.sh: line 69: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+GDB section [33] '.gdb_index' at offset 0xe76 contains 8383 bytes :
+ Version:         5
+ CU offset:       0x18
+ TU offset:       0x38
+ address offset:  0x50
+ symbol offset:   0x78
+ constant offset: 0x2078
+
+ CU list at offset 0x18 contains 2 entries:
+ [   0] start: 00000000, length:   184
+ [   1] start: 0x0000b8, length:   204
+
+ TU list at offset 0x38 contains 1 entries:
+ [   0] CU offset:     0, type offset:    29, signature: 0x87e03f92cc37cdf0
+
+ Address list at offset 0x50 contains 2 entries:
+ [   0] 0x000000000040049c <main>..0x00000000004004d1 <main+0x35>, CU index:     0
+ [   1] 0x00000000004004d4 <hello>..0x000000000040050b <say+0x1c>, CU index:     1
+
+ Symbol table at offset 0x50 contains 1024 slots:
+ [ 123] symbol: global, CUs: 1
+ [ 489] symbol: main, CUs: 0
+ [ 518] symbol: char, CUs: 0
+ [ 661] symbol: foo, CUs: 0T
+ [ 741] symbol: hello, CUs: 0, 1
+ [ 746] symbol: say, CUs: 1
+ [ 754] symbol: int, CUs: 0
FAIL run-readelf-gdb_index.sh (exit status: 1)

FAIL: run-unstrip-n.sh
======================

--- unstrip.out
+++ -
@@ -1 +1,6 @@
-./run-unstrip-n.sh: line 37: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/unstrip: not found
+0x8048000+0x2000 f1c600bc36cb91bf01f9a63a634ecb79aa4c3199@0x8048178 . - [exe]
+0xf75e9000+0x1a000 29a103420abe341e92072fb14274e250e4072148@0xf75e9164 - - libpthread.so.0
+0xf7603000+0x1b0000 0b9bf374699e141e5dfc14757ff42b8c2373b4de@0xf7603184 - - libc.so.6
+0xf77b3000+0x9000 c6c5b5e35ab9589d4762ac85b4bd56b1b2720e37@0xf77b3164 - - librt.so.1
+0xf77d6000+0x1000 676560b1b765cde9c2e53f134f4ee354ea894747@0xf77d6210 . - linux-gate.so.1
+0xf77d7000+0x21000 6d2cb32650054f1c176d01d48713a4a5e5e84c1a@0xf77d7124 - - ld-linux.so.2
FAIL run-unstrip-n.sh (exit status: 1)

FAIL: run-low_high_pc.sh
========================

./run-low_high_pc.sh: line 28: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/low_high_pc: not found
FAIL run-low_high_pc.sh (exit status: 127)

FAIL: run-macro-test.sh
=======================

./run-macro-test.sh: line 40: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure readelf --debug-dump=info testfile-macinfo
./run-macro-test.sh: line 47: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
*** failure readelf --debug-dump=info testfile-macros
FAIL run-macro-test.sh (exit status: 1)

FAIL: run-test-archive64.sh
===========================

--- readelf.out
+++ -
@@ -1 +1,11 @@
-./run-test-archive64.sh: line 30: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+Index of archive 'testarchive64.a' has 7 entries:
+Archive member 'aaa.o' contains:
+	aaa
+Archive member 'bbb.o' contains:
+	bbb
+	bbb2
+Archive member 'ccc.o' contains:
+	ccc
+	ccc2
+	ccc3
FAIL run-test-archive64.sh (exit status: 1)

FAIL: run-readelf-vmcoreinfo.sh
===============================

--- readelf.out
+++ -
@@ -1 +1,89 @@
-./run-readelf-vmcoreinfo.sh: line 23: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+Note segment of 2104 bytes at offset 0x158:
+  Owner          Data size  Type
+  CORE                 336  PRSTATUS
+    info.si_signo: 0, info.si_code: 0, info.si_errno: 0, cursig: 0
+    sigpend: <>
+    sighold: <>
+    pid: 3519, ppid: 0, pgrp: 0, sid: 0
+    utime: 0.000000, stime: 0.000000, cutime: 0.000000, cstime: 0.000000
+    orig_rax: -1, fpvalid: 0
+    r15:                     662  r14:                       4
+    r13:             -2119649152  r12:                       0
+    rbp:      0xffff880067e39e48  rbx:                      99
+    r11:        -131940469531936  r10:             -2124150080
+    r9:         -131940469531936  r8:                        0
+    rax:                      16  rcx:                    7813
+    rdx:                       0  rsi:                       0
+    rdi:                      99  rip:      0xffffffff812ba86f
+    rflags:   0x0000000000010096  rsp:      0xffff880067e39e48
+    fs.base:   0x00007f95a7b09720  gs.base:   0x0000000000000000
+    cs: 0x0010  ss: 0x0018  ds: 0x0000  es: 0x0000  fs: 0x0000  gs: 0x0000
+  CORE                 336  PRSTATUS
+    info.si_signo: 0, info.si_code: 0, info.si_errno: 0, cursig: 0
+    sigpend: <>
+    sighold: <>
+    pid: 0, ppid: 0, pgrp: 0, sid: 0
+    utime: 0.000000, stime: 0.000000, cutime: 0.000000, cstime: 0.000000
+    orig_rax: -1, fpvalid: 0
+    r15:                       0  r14:                       0
+    r13:     1348173392195389970  r12:                       1
+    rbp:      0xffff88007a829e48  rbx:                      16
+    r11:        -131940468065880  r10:            435505529489
+    r9:                   158960  r8:                        0
+    rax:                      16  rcx:                       1
+    rdx:                       0  rsi:                       3
+    rdi:        -131939339960320  rip:      0xffffffff810118bb
+    rflags:   0x0000000000000046  rsp:      0xffff88007a829e38
+    fs.base:   0x0000000000000000  gs.base:   0x0000000000000000
+    cs: 0x0010  ss: 0x0018  ds: 0x0000  es: 0x0000  fs: 0x0000  gs: 0x0000
+  VMCOREINFO          1366  <unknown>: 0
+    OSRELEASE=2.6.35.11-83.fc14.x86_64
+    PAGESIZE=4096
+    SYMBOL(init_uts_ns)=ffffffff81a4c5b0
+    SYMBOL(node_online_map)=ffffffff81b840b0
+    SYMBOL(swapper_pg_dir)=ffffffff81a42000
+    SYMBOL(_stext)=ffffffff81000190
+    SYMBOL(vmlist)=ffffffff81db07e8
+    SYMBOL(mem_section)=ffffffff81dbab00
+    LENGTH(mem_section)=4096
+    SIZE(mem_section)=32
+    OFFSET(mem_section.section_mem_map)=0
+    SIZE(page)=56
+    SIZE(pglist_data)=81664
+    SIZE(zone)=1792
+    SIZE(free_area)=88
+    SIZE(list_head)=16
+    SIZE(nodemask_t)=64
+    OFFSET(page.flags)=0
+    OFFSET(page._count)=8
+    OFFSET(page.mapping)=24
+    OFFSET(page.lru)=40
+    OFFSET(pglist_data.node_zones)=0
+    OFFSET(pglist_data.nr_zones)=81472
+    OFFSET(pglist_data.node_start_pfn)=81496
+    OFFSET(pglist_data.node_spanned_pages)=81512
+    OFFSET(pglist_data.node_id)=81520
+    OFFSET(zone.free_area)=112
+    OFFSET(zone.vm_stat)=1328
+    OFFSET(zone.spanned_pages)=1704
+    OFFSET(free_area.free_list)=0
+    OFFSET(list_head.next)=0
+    OFFSET(list_head.prev)=8
+    OFFSET(vm_struct.addr)=8
+    LENGTH(zone.free_area)=11
+    SYMBOL(log_buf)=ffffffff81a532a8
+    SYMBOL(log_end)=ffffffff81d0bc50
+    SYMBOL(log_buf_len)=ffffffff81a532a4
+    SYMBOL(logged_chars)=ffffffff81d0bd70
+    LENGTH(free_area.free_list)=5
+    NUMBER(NR_FREE_PAGES)=0
+    NUMBER(PG_lru)=5
+    NUMBER(PG_private)=11
+    NUMBER(PG_swapcache)=16
+    SYMBOL(phys_base)=ffffffff81a4a010
+    SYMBOL(init_level4_pgt)=ffffffff81a42000
+    SYMBOL(node_data)=ffffffff81b80df0
+    LENGTH(node_data)=512
+    CRASHTIME=1348173392
+
FAIL run-readelf-vmcoreinfo.sh (exit status: 1)

FAIL: run-readelf-mixed-corenote.sh
===================================

--- readelf.out
+++ -
@@ -1 +1,62 @@
-./run-readelf-mixed-corenote.sh: line 23: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+Note segment of 892 bytes at offset 0x274:
+  Owner          Data size  Type
+  CORE                 148  PRSTATUS
+    info.si_signo: 11, info.si_code: 0, info.si_errno: 0, cursig: 11
+    sigpend: <>
+    sighold: <>
+    pid: 11087, ppid: 11063, pgrp: 11087, sid: 11063
+    utime: 0.000000, stime: 0.010000, cutime: 0.000000, cstime: 0.000000
+    orig_r0: -1, fpvalid: 1
+    r0:             1  r1:   -1091672508  r2:   -1091672500
+    r3:             0  r4:             0  r5:             0
+    r6:         33728  r7:             0  r8:             0
+    r9:             0  r10:  -1225703496  r11:  -1091672844
+    r12:            0  sp:    0xbeee64f4  lr:    0xb6dc3f48
+    pc:    0x00008500  spsr:  0x60000010
+  CORE                 124  PRPSINFO
+    state: 0, sname: R, zomb: 0, nice: 0, flag: 0x00400500
+    uid: 0, gid: 0, pid: 11087, ppid: 11063, pgrp: 11087, sid: 11063
+    fname: a.out, psargs: ./a.out 
+  CORE                 144  AUXV
+    HWCAP: 0xe8d7  <swp half thumb fast-mult vfp edsp>
+    PAGESZ: 4096
+    CLKTCK: 100
+    PHDR: 0x8034
+    PHENT: 32
+    PHNUM: 8
+    BASE: 0xb6eee000
+    FLAGS: 0
+    ENTRY: 0x83c0
+    UID: 0
+    EUID: 0
+    GID: 0
+    EGID: 0
+    SECURE: 0
+    RANDOM: 0xbeee674e
+    EXECFN: 0xbeee6ff4
+    PLATFORM: 0xbeee675e
+    NULL
+  CORE                 116  FPREGSET
+    f0: 0x000000000000000000000000  f1: 0x000000000000000000000000
+    f2: 0x000000000000000000000000  f3: 0x000000000000000000000000
+    f4: 0x000000000000000000000000  f5: 0x000000000000000000000000
+    f6: 0x000000000000000000000000  f7: 0x000000000000000000000000
+  LINUX                260  ARM_VFP
+    fpscr: 0x00000000
+    d0:  0x0000000000000000  d1:  0x0000000000000000
+    d2:  0x0000000000000000  d3:  0x0000000000000000
+    d4:  0x0000000000000000  d5:  0x0000000000000000
+    d6:  0x0000000000000000  d7:  0x0000000000000000
+    d8:  0x0000000000000000  d9:  0x0000000000000000
+    d10: 0x0000000000000000  d11: 0x0000000000000000
+    d12: 0x0000000000000000  d13: 0x0000000000000000
+    d14: 0x0000000000000000  d15: 0x0000000000000000
+    d16: 0x0000000000000000  d17: 0x0000000000000000
+    d18: 0x0000000000000000  d19: 0x0000000000000000
+    d20: 0x0000000000000000  d21: 0x0000000000000000
+    d22: 0x0000000000000000  d23: 0x0000000000000000
+    d24: 0x0000000000000000  d25: 0x0000000000000000
+    d26: 0x0000000000000000  d27: 0x0000000000000000
+    d28: 0x0000000000000000  d29: 0x0000000000000000
+    d30: 0x0000000000000000  d31: 0x0000000000000000
FAIL run-readelf-mixed-corenote.sh (exit status: 1)

FAIL: run-dwfllines.sh
======================

--- dwfllines.out
+++ -
@@ -1 +1,29 @@
-./run-dwfllines.sh: line 23: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/dwfllines: not found
+mod:  CU: [b] m.c
+0 0x804842c /home/drepper/gnu/new-bu/build/ttt/m.c:5:0
+ time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
+1 0x8048432 /home/drepper/gnu/new-bu/build/ttt/m.c:6:0
+ time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
+2 0x804844d /home/drepper/gnu/new-bu/build/ttt/m.c:7:0
+ time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
+3 0x8048458 /home/drepper/gnu/new-bu/build/ttt/m.c:8:0
+ time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
+4 0x804845a /home/drepper/gnu/new-bu/build/ttt/m.c:8:0
+ time: 0, len: 0, idx: 0, b: 1, e: 1, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
+mod:  CU: [ca] b.c
+0 0x804845c /home/drepper/gnu/new-bu/build/ttt/b.c:4:0
+ time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
+1 0x804845f /home/drepper/gnu/new-bu/build/ttt/b.c:5:0
+ time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
+2 0x8048464 /home/drepper/gnu/new-bu/build/ttt/b.c:6:0
+ time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
+3 0x8048466 /home/drepper/gnu/new-bu/build/ttt/b.c:6:0
+ time: 0, len: 0, idx: 0, b: 1, e: 1, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
+mod:  CU: [15fc] f.c
+0 0x8048468 /home/drepper/gnu/new-bu/build/ttt/f.c:3:0
+ time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
+1 0x804846b /home/drepper/gnu/new-bu/build/ttt/f.c:4:0
+ time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
+2 0x8048470 /home/drepper/gnu/new-bu/build/ttt/f.c:5:0
+ time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
+3 0x8048472 /home/drepper/gnu/new-bu/build/ttt/f.c:5:0
+ time: 0, len: 0, idx: 0, b: 1, e: 1, pe: 0, eb: 0, block: 0, isa: 0, disc: 0
FAIL run-dwfllines.sh (exit status: 1)

FAIL: run-addr2line-test.sh
===========================

# Everything on the command line
--- addr2line.out
+++ -
@@ -1 +1,16 @@
-./run-addr2line-test.sh: line 44: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/addr2line: not found
+foo
+/home/drepper/gnu/new-bu/build/ttt/f.c:3
+bar
+/home/drepper/gnu/new-bu/build/ttt/b.c:4
+foo
+/home/drepper/gnu/new-bu/build/ttt/f.c:3
+bar
+/home/drepper/gnu/new-bu/build/ttt/b.c:4
+foo
+/home/drepper/gnu/new-bu/build/ttt/f.c:3
+bar
+/home/drepper/gnu/new-bu/build/ttt/b.c:4
+foo
+/home/drepper/gnu/new-bu/build/ttt/f.c:3
+bar
+/home/drepper/gnu/new-bu/build/ttt/b.c:4
FAIL run-addr2line-test.sh (exit status: 1)

FAIL: run-addr2line-i-test.sh
=============================

--- addr2line.out
+++ -
@@ -1 +1 @@
-./run-addr2line-i-test.sh: line 58: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/addr2line: not found
+/tmp/x.cpp:5
FAIL run-addr2line-i-test.sh (exit status: 1)

FAIL: run-addr2line-i-lex-test.sh
=================================

--- addr2line.out
+++ -
@@ -1 +1 @@
-./run-addr2line-i-lex-test.sh: line 38: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/addr2line: not found
+/tmp/x.cpp:5
FAIL run-addr2line-i-lex-test.sh (exit status: 1)

FAIL: run-varlocs.sh
====================

--- varlocs.out
+++ -
@@ -1 +1,10 @@
-./run-varlocs.sh: line 28: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/varlocs: not found
+module 'testfile_const_type'
+[b] CU 'const_type.c'@0
+  [33] function 'f1'@80483f0
+    frame_base: {call_frame_cfa {bregx(4,4)}}
+    [4b] parameter 'd'
+      [80483f0,804841b) {fbreg(0)}
+    [57] variable 'w'
+      [80483f0,804841b) {fbreg(0), GNU_deref_type(8){long long int,signed,64@[25]}, GNU_const_type{long long int,signed,64@[25]}(8)[0000806745230100], div, GNU_convert{long long unsigned int,unsigned,64@[2c]}, stack_value}
+  [7d] function 'main'@80482f0
+    frame_base: {call_frame_cfa {bregx(4,4)}}
FAIL run-varlocs.sh (exit status: 1)

FAIL: run-funcretval.sh
=======================

--- funcretval.out
+++ -
@@ -1 +1,117 @@
-./run-funcretval.sh: line 34: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/funcretval: not found
+() fun_char: return value location: {0x50, 0}
+() fun_short: return value location: {0x50, 0}
+() fun_int: return value location: {0x50, 0}
+() fun_ptr: return value location: {0x50, 0}
+() fun_iptr: return value location: {0x50, 0}
+() fun_long: return value location: {0x50, 0}
+() fun_int128: return value location: {0x50, 0} {0x93, 0x8} {0x51, 0} {0x93, 0x8}
+() fun_large_struct1: return value location: {0x70, 0}
+() fun_large_struct2: return value location: {0x70, 0}
+() fun_float: return value location: {0x90, 0x40}
+() fun_float_complex: return value location: {0x90, 0x40} {0x93, 0x4} {0x90, 0x41} {0x93, 0x4}
+() fun_double: return value location: {0x90, 0x40}
+() fun_double_complex: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8}
+() fun_long_double: return value location: {0x90, 0x40}
+() fun_long_double_complex: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10}
+() fun_vec_char_8: return value location: {0x90, 0x40}
+() fun_vec_short_8: return value location: {0x90, 0x40}
+() fun_vec_int_8: return value location: {0x90, 0x40}
+() fun_vec_long_8: return value location: {0x90, 0x40}
+() fun_vec_float_8: return value location: {0x90, 0x40}
+() fun_vec_char_16: return value location: {0x90, 0x40}
+() fun_vec_short_16: return value location: {0x90, 0x40}
+() fun_vec_int_16: return value location: {0x90, 0x40}
+() fun_vec_long_16: return value location: {0x90, 0x40}
+() fun_vec_int128_16: return value location: {0x90, 0x40}
+() fun_vec_float_16: return value location: {0x90, 0x40}
+() fun_vec_double_16: return value location: {0x90, 0x40}
+() fun_hfa1_float: return value location: {0x90, 0x40}
+() fun_hfa1_double: return value location: {0x90, 0x40}
+() fun_hfa1_long_double: return value location: {0x90, 0x40}
+() fun_hfa1_float_a: return value location: {0x90, 0x40}
+() fun_hfa1_double_a: return value location: {0x90, 0x40}
+() fun_hfa1_long_double_a: return value location: {0x90, 0x40}
+() fun_hfa2_float: return value location: {0x90, 0x40} {0x93, 0x4} {0x90, 0x41} {0x93, 0x4}
+() fun_hfa2_double: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8}
+() fun_hfa2_long_double: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10}
+() fun_hfa2_float_a: return value location: {0x90, 0x40} {0x93, 0x4} {0x90, 0x41} {0x93, 0x4}
+() fun_hfa2_double_a: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8}
+() fun_hfa2_long_double_a: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10}
+() fun_hfa3_float: return value location: {0x90, 0x40} {0x93, 0x4} {0x90, 0x41} {0x93, 0x4} {0x90, 0x42} {0x93, 0x4}
+() fun_hfa3_double: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8}
+() fun_hfa3_long_double: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10}
+() fun_hfa3_float_a: return value location: {0x90, 0x40} {0x93, 0x4} {0x90, 0x41} {0x93, 0x4} {0x90, 0x42} {0x93, 0x4}
+() fun_hfa3_double_a: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8}
+() fun_hfa3_long_double_a: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10}
+() fun_hfa4_float: return value location: {0x90, 0x40} {0x93, 0x4} {0x90, 0x41} {0x93, 0x4} {0x90, 0x42} {0x93, 0x4} {0x90, 0x43} {0x93, 0x4}
+() fun_hfa4_double: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8} {0x90, 0x43} {0x93, 0x8}
+() fun_hfa4_long_double: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10} {0x90, 0x43} {0x93, 0x10}
+() fun_hfa4_float_a: return value location: {0x90, 0x40} {0x93, 0x4} {0x90, 0x41} {0x93, 0x4} {0x90, 0x42} {0x93, 0x4} {0x90, 0x43} {0x93, 0x4}
+() fun_hfa4_double_a: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8} {0x90, 0x43} {0x93, 0x8}
+() fun_hfa4_long_double_a: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10} {0x90, 0x43} {0x93, 0x10}
+() fun_nfa5_float: return value location: {0x70, 0}
+() fun_nfa5_double: return value location: {0x70, 0}
+() fun_nfa5_long_double: return value location: {0x70, 0}
+() fun_nfa5_float_a: return value location: {0x70, 0}
+() fun_nfa5_double_a: return value location: {0x70, 0}
+() fun_nfa5_long_double_a: return value location: {0x70, 0}
+() fun_hva1_vec_char_8: return value location: {0x90, 0x40}
+() fun_hva1_vec_short_8: return value location: {0x90, 0x40}
+() fun_hva1_vec_int_8: return value location: {0x90, 0x40}
+() fun_hva1_vec_long_8: return value location: {0x90, 0x40}
+() fun_hva1_vec_float_8: return value location: {0x90, 0x40}
+() fun_hva1_vec_double_8: return value location: {0x90, 0x40}
+() fun_hva1_vec_char_16_t: return value location: {0x90, 0x40}
+() fun_hva1_vec_short_16_t: return value location: {0x90, 0x40}
+() fun_hva1_vec_int_16_t: return value location: {0x90, 0x40}
+() fun_hva1_vec_long_16_t: return value location: {0x90, 0x40}
+() fun_hva1_vec_int128_16_t: return value location: {0x90, 0x40}
+() fun_hva1_vec_float_16_t: return value location: {0x90, 0x40}
+() fun_hva1_vec_double_16_t: return value location: {0x90, 0x40}
+() fun_hva2_vec_char_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8}
+() fun_hva2_vec_short_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8}
+() fun_hva2_vec_int_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8}
+() fun_hva2_vec_long_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8}
+() fun_hva2_vec_float_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8}
+() fun_hva2_vec_double_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8}
+() fun_hva2_vec_char_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10}
+() fun_hva2_vec_short_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10}
+() fun_hva2_vec_int_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10}
+() fun_hva2_vec_long_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10}
+() fun_hva2_vec_int128_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10}
+() fun_hva2_vec_float_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10}
+() fun_hva2_vec_double_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10}
+() fun_hva3_vec_char_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8}
+() fun_hva3_vec_short_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8}
+() fun_hva3_vec_int_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8}
+() fun_hva3_vec_long_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8}
+() fun_hva3_vec_float_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8}
+() fun_hva3_vec_double_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8}
+() fun_hva3_vec_char_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10}
+() fun_hva3_vec_short_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10}
+() fun_hva3_vec_int_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10}
+() fun_hva3_vec_long_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10}
+() fun_hva3_vec_int128_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10}
+() fun_hva3_vec_float_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10}
+() fun_hva3_vec_double_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10}
+() fun_hva4_vec_char_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8} {0x90, 0x43} {0x93, 0x8}
+() fun_hva4_vec_short_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8} {0x90, 0x43} {0x93, 0x8}
+() fun_hva4_vec_int_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8} {0x90, 0x43} {0x93, 0x8}
+() fun_hva4_vec_long_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8} {0x90, 0x43} {0x93, 0x8}
+() fun_hva4_vec_float_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8} {0x90, 0x43} {0x93, 0x8}
+() fun_hva4_vec_double_8: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8} {0x90, 0x43} {0x93, 0x8}
+() fun_hva4_vec_char_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10} {0x90, 0x43} {0x93, 0x10}
+() fun_hva4_vec_short_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10} {0x90, 0x43} {0x93, 0x10}
+() fun_hva4_vec_int_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10} {0x90, 0x43} {0x93, 0x10}
+() fun_hva4_vec_long_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10} {0x90, 0x43} {0x93, 0x10}
+() fun_hva4_vec_int128_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10} {0x90, 0x43} {0x93, 0x10}
+() fun_hva4_vec_float_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10} {0x90, 0x43} {0x93, 0x10}
+() fun_hva4_vec_double_16_t: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10} {0x90, 0x43} {0x93, 0x10}
+() fun_mixed_hfa3_cff: return value location: {0x90, 0x40} {0x93, 0x4} {0x90, 0x41} {0x93, 0x4} {0x90, 0x42} {0x93, 0x4}
+() fun_mixed_hfa3_cdd: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8}
+() fun_mixed_hfa3_cldld: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10}
+() fun_mixed_hfa3_fcf: return value location: {0x90, 0x40} {0x93, 0x4} {0x90, 0x41} {0x93, 0x4} {0x90, 0x42} {0x93, 0x4}
+() fun_mixed_hfa3_dcd: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8} {0x90, 0x42} {0x93, 0x8}
+() fun_mixed_hfa3_ldcld: return value location: {0x90, 0x40} {0x93, 0x10} {0x90, 0x41} {0x93, 0x10} {0x90, 0x42} {0x93, 0x10}
+() fun_mixed_hfa2_fltsht_t: return value location: {0x90, 0x40} {0x93, 0x8} {0x90, 0x41} {0x93, 0x8}
+() main: return value location: {0x50, 0}
FAIL run-funcretval.sh (exit status: 1)

FAIL: run-backtrace-native.sh
=============================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-native.sh: not found
FAIL run-backtrace-native.sh (exit status: 2)

FAIL: run-backtrace-data.sh
===========================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-data.sh: not found
FAIL run-backtrace-data.sh (exit status: 2)

FAIL: run-backtrace-dwarf.sh
============================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-dwarf.sh: not found
FAIL run-backtrace-dwarf.sh (exit status: 2)

FAIL: run-backtrace-native-biarch.sh
====================================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-native-biarch.sh: not found
FAIL run-backtrace-native-biarch.sh (exit status: 2)

FAIL: run-backtrace-native-core.sh
==================================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-native-core.sh: not found
FAIL run-backtrace-native-core.sh (exit status: 2)

FAIL: run-backtrace-native-core-biarch.sh
=========================================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-native-core-biarch.sh: not found
FAIL run-backtrace-native-core-biarch.sh (exit status: 2)

FAIL: run-backtrace-core-x86_64.sh
==================================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-core-x86_64.sh: not found
FAIL run-backtrace-core-x86_64.sh (exit status: 2)

FAIL: run-backtrace-core-i386.sh
================================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-core-i386.sh: not found
FAIL run-backtrace-core-i386.sh (exit status: 2)

FAIL: run-backtrace-core-ppc.sh
===============================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-core-ppc.sh: not found
FAIL run-backtrace-core-ppc.sh (exit status: 2)

FAIL: run-backtrace-core-s390x.sh
=================================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-core-s390x.sh: not found
FAIL run-backtrace-core-s390x.sh (exit status: 2)

FAIL: run-backtrace-core-s390.sh
================================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-core-s390.sh: not found
FAIL run-backtrace-core-s390.sh (exit status: 2)

FAIL: run-backtrace-core-aarch64.sh
===================================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-core-aarch64.sh: not found
FAIL run-backtrace-core-aarch64.sh (exit status: 2)

FAIL: run-backtrace-demangle.sh
===============================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-backtrace-demangle.sh: not found
FAIL run-backtrace-demangle.sh (exit status: 2)

FAIL: run-stack-d-test.sh
=========================

--- stack.out
+++ -
@@ -1 +1,5 @@
-./run-stack-d-test.sh: line 73: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/stack: not found
+PID 13654 - core
+TID 13654:
+#0  0x00000000004006c8 fu(int)
+#1  0x00000000004004c5 main
+/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/stack: tid 13654: shown max number of frames (2, use -n 0 for unlimited)
FAIL run-stack-d-test.sh (exit status: 1)

FAIL: run-stack-i-test.sh
=========================

--- stack.out
+++ -
@@ -1 +1,9 @@
-./run-stack-i-test.sh: line 39: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/stack: not found
+PID 13654 - core
+TID 13654:
+#0  0x00000000004006c8 fubar
+#1  0x00000000004006c8 foobar
+#2  0x00000000004006c8 bar
+#3  0x00000000004006c8 foo
+#4  0x00000000004006c8 fu(int)
+#5  0x00000000004004c5 main
+/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/stack: tid 13654: shown max number of frames (6, use -n 0 for unlimited)
FAIL run-stack-i-test.sh (exit status: 1)

FAIL: run-readelf-dwz-multi.sh
==============================

--- readelf.out
+++ -
@@ -1 +1,55 @@
-./run-readelf-dwz-multi.sh: line 82: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+DWARF section [28] '.debug_info' at offset 0x1078:
+ [Offset]
+ Compilation unit at offset 0:
+ Version: 4, Abbreviation section offset: 0, Address size: 8, Offset size: 4
+ [     b]  compile_unit
+           producer             (strp) "GNU C 4.7.0 20120507 (Red Hat 4.7.0-5) -mtune=generic -march=x86-64 -g"
+           language             (data1) C89 (1)
+           name                 (strp) "main.c"
+           comp_dir             (GNU_strp_alt) "/home/mark/src/tests/dwz"
+           low_pc               (addr) 0x00000000004006ac <main>
+           high_pc              (udata) 44 (0x00000000004006d8)
+           stmt_list            (sec_offset) 0
+ [    26]    imported_unit
+             import               (GNU_ref_alt) [     b]
+ [    2b]    pointer_type
+             byte_size            (data1) 8
+             type                 (GNU_ref_alt) [    53]
+ [    31]    subprogram
+             external             (flag_present) 
+             name                 (strp) "main"
+             decl_file            (data1) 1
+             decl_line            (data1) 3
+             prototyped           (flag_present) 
+             type                 (GNU_ref_alt) [    3e]
+             low_pc               (addr) 0x00000000004006ac <main>
+             high_pc              (udata) 44 (0x00000000004006d8)
+             frame_base           (exprloc) 
+              [   0] call_frame_cfa
+             GNU_all_tail_call_sites (flag_present) 
+             sibling              (ref_udata) [    6e]
+ [    48]      formal_parameter
+               name                 (strp) "argc"
+               decl_file            (data1) 1
+               decl_line            (data1) 3
+               type                 (GNU_ref_alt) [    3e]
+               location             (exprloc) 
+                [   0] fbreg -36
+ [    56]      formal_parameter
+               name                 (strp) "argv"
+               decl_file            (data1) 1
+               decl_line            (data1) 3
+               type                 (ref_udata) [    6e]
+               location             (exprloc) 
+                [   0] fbreg -48
+ [    61]      variable
+               name                 (string) "b"
+               decl_file            (data1) 1
+               decl_line            (data1) 5
+               type                 (GNU_ref_alt) [    5a]
+               location             (exprloc) 
+                [   0] fbreg -32
+ [    6e]    pointer_type
+             byte_size            (data1) 8
+             type                 (ref_udata) [    2b]
FAIL run-readelf-dwz-multi.sh (exit status: 1)

FAIL: run-deleted.sh
====================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-deleted.sh: not found
FAIL run-deleted.sh (exit status: 2)

FAIL: run-linkmap-cut.sh
========================

/home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/test-wrapper.sh: exec: line 65: ./run-linkmap-cut.sh: not found
FAIL run-linkmap-cut.sh (exit status: 2)

FAIL: run-aggregate-size.sh
===========================

--- aggregate_size.out
+++ -
@@ -1 +1,9 @@
-./run-aggregate-size.sh: line 68: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/tests/aggregate_size: not found
+c size 1
+i size 4
+l size 8
+v size 8
+s size 16
+ca size 16
+ia size 128
+va size 512
+sa size 128
FAIL run-aggregate-size.sh (exit status: 1)

FAIL: vdsosyms
==============

./vdsosyms: dwfl_linux_proc_report: Permission denied
FAIL vdsosyms (exit status: 2)

FAIL: run-readelf-A.sh
======================

--- readelf.out
+++ -
@@ -1 +1,22 @@
-./run-readelf-A.sh: line 31: /home/jcmvbkbc/tmp/br/build-ltrace-2015.05/build/elfutils-0.161/src/readelf: not found
+
+Object attributes section [27] '.ARM.attributes' of 53 bytes at offset 0x718:
+  Owner          Size
+  aeabi            52
+    File:          42
+      CPU_name: 7-A
+      CPU_arch: v7
+      CPU_arch_profile: Application
+      ARM_ISA_use: Yes
+      THUMB_ISA_use: Thumb-2
+      VFP_arch: VFPv3-D16
+      ABI_PCS_wchar_t: 4
+      ABI_FP_rounding: Needed
+      ABI_FP_denormal: Needed
+      ABI_FP_exceptions: Needed
+      ABI_FP_number_model: IEEE 754
+      ABI_align8_needed: Yes
+      ABI_align8_preserved: Yes, except leaf SP
+      ABI_enum_size: int
+      ABI_HardFP_use: SP and DP
+      ABI_VFP_args: VFP registers
+      CPU_unaligned_access: v6
FAIL run-readelf-A.sh (exit status: 1)

FAIL: asm-tst4
==============

/bin/sh: ../src/elflint: not found
FAIL asm-tst4 (exit status: 127)

FAIL: asm-tst5
==============

/bin/sh: ../src/elflint: not found
FAIL asm-tst5 (exit status: 127)

FAIL: asm-tst6
==============

/bin/sh: ../src/elflint: not found
FAIL asm-tst6 (exit status: 127)


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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-23 20:56 Mark Wielaard
  0 siblings, 0 replies; 22+ messages in thread
From: Mark Wielaard @ 2015-04-23 20:56 UTC (permalink / raw)
  To: elfutils-devel

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

On Thu, Apr 23, 2015 at 11:20:35PM +0300, Max Filippov wrote:
> > What do the test results look like on your setup?
> 
> I haven't tried that. Is there an easy way to run tests on a system
> without native compiler?

Not easily. The tests involve building programs and a couple of tests
that run over some of the object files just created. So you'll have to
build everything first, including the tests check_PROGRAMS, and copy
the whole build dir to the system, then run make check there (which means
the system does need to have at least make, sh, sed, etc. on it.

There is a very old configure.ac file in the test directory that might
help with creating a "standalone test-environment". But I am afraid it
has bit-rotten, because I don't believe anybody uses it.

Cheers,

Mark

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-23 20:20 Max Filippov
  0 siblings, 0 replies; 22+ messages in thread
From: Max Filippov @ 2015-04-23 20:20 UTC (permalink / raw)
  To: elfutils-devel

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

Hi Mark,

On Thu, Apr 23, 2015 at 10:39 PM, Mark Wielaard <mjw@redhat.com> wrote:
> elfutils really depends on symbol versioning to keep ABI compatibility.
> I cannot say I am a fan of supporting a libc that doesn't support it.

I guess compatibility is not an issue for an embedded system where we
build a complete root file system once?

> Before pushing it I have added ChangeLog entries and added an
> extra warning in configure.ac to make clear this isn't recommended. You
> are on your own if you use this configure option though.

Thanks a lot!

> What do the test results look like on your setup?

I haven't tried that. Is there an easy way to run tests on a system
without native compiler?

-- 
Thanks.
-- Max

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

* Re: Versioned symbols in elfutils and uClibc
@ 2015-04-23 19:39 Mark Wielaard
  0 siblings, 0 replies; 22+ messages in thread
From: Mark Wielaard @ 2015-04-23 19:39 UTC (permalink / raw)
  To: elfutils-devel

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

Hi Max,

On Thu, Apr 23, 2015 at 12:18:10AM +0300, Max Filippov wrote:
> I've got a segfault in ltrace on uClibc-based system, caused by infinite
> recursion in the dwfl_report_elf function [1]. This happens because there
> is no symbol versioning support in uClibc and there are two versions of
> that function, one of them calling the other.

elfutils really depends on symbol versioning to keep ABI compatibility.
I cannot say I am a fan of supporting a libc that doesn't support it.

> Does the below patch look
> like a good solution to this?

It does. Before pushing it I have added ChangeLog entries and added an
extra warning in configure.ac to make clear this isn't recommended. You
are on your own if you use this configure option though.

What do the test results look like on your setup?

Thanks,

Mark

[-- Attachment #2: 0001-Allow-disabling-symbol-versioning-at-configure-time.patch --]
[-- Type: text/plain, Size: 6364 bytes --]

>From e1fa2f39edbb9cbe6a42054048af02cc81a98544 Mon Sep 17 00:00:00 2001
From: Max Filippov <jcmvbkbc@gmail.com>
Date: Thu, 23 Apr 2015 20:46:59 +0200
Subject: [PATCH] Allow disabling symbol versioning at configure time

Due to missing symbol versioning support in uClibc calls to versioned
functions that internally call different version of themselves results
in infinite recursion.

Introduce macro SYMBOL_VERSIONING and use it instead of plain SHARED to
decide whether symbol versioning is needed. Control this macro
definition with new configure option --disable-symbol-versioning.

Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Mark Wielaard <mjw@redhat.com>
---
 ChangeLog                      |  4 ++++
 config/eu.am                   | 10 ++++++++--
 configure.ac                   |  7 +++++++
 lib/ChangeLog                  |  4 ++++
 lib/eu-config.h                |  6 +++---
 libdwfl/ChangeLog              |  9 +++++++++
 libdwfl/core-file.c            |  2 +-
 libdwfl/dwfl_module_build_id.c |  2 +-
 libdwfl/dwfl_report_elf.c      |  2 +-
 9 files changed, 38 insertions(+), 8 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 9a0a82d..d45bf67 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-04-23  Max Filippov  <jcmvbkbc@gmail.com>
+
+	* configure.ac: Add --disable-symbol-versioning.
+
 2015-04-14  Mark Wielaard  <mjw@redhat.com>
 
 	* configure.ac (ac_cv_c99): Add explicit checks for all GNU99
diff --git a/config/eu.am b/config/eu.am
index faf8add..6103a3e 100644
--- a/config/eu.am
+++ b/config/eu.am
@@ -38,16 +38,22 @@ AM_CFLAGS = -std=gnu99 -Wall -Wshadow -Wformat=2 \
 
 COMPILE.os = $(filter-out -fprofile-arcs -ftest-coverage, $(COMPILE))
 
+DEFS.os = -DPIC -DSHARED
+if SYMBOL_VERSIONING
+DEFS.os += -DSYMBOL_VERSIONING
+else
+endif
+
 %.os: %.c %.o
 if AMDEP
-	if $(COMPILE.os) -c -o $@ -fpic -DPIC -DSHARED -MT $@ -MD -MP \
+	if $(COMPILE.os) -c -o $@ -fpic $(DEFS.os) -MT $@ -MD -MP \
 	  -MF "$(DEPDIR)/$*.Tpo" `test -f '$<' || echo '$(srcdir)/'`$<; \
 	then cat "$(DEPDIR)/$*.Tpo" >> "$(DEPDIR)/$*.Po"; \
 	     rm -f "$(DEPDIR)/$*.Tpo"; \
 	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
 	fi
 else
-	$(COMPILE.os) -c -o $@ -fpic -DPIC -DSHARED $<
+	$(COMPILE.os) -c -o $@ -fpic $(DEFS.os) $<
 endif
 
 CLEANFILES = *.gcno *.gcda
diff --git a/configure.ac b/configure.ac
index ed2c964..be01573 100644
--- a/configure.ac
+++ b/configure.ac
@@ -241,6 +241,13 @@ AS_HELP_STRING([--disable-textrelcheck],
                [Disable textrelcheck being a fatal error]))
 AM_CONDITIONAL(FATAL_TEXTREL, [test "x$enable_textrelcheck" != "xno"])
 
+AC_ARG_ENABLE([symbol-versioning],
+AS_HELP_STRING([--disable-symbol-versioning],
+               [Disable symbol versioning in shared objects]))
+AM_CONDITIONAL(SYMBOL_VERSIONING, [test "x$enable_symbol_versioning" != "xno"])
+AS_IF([test "x$enable_symbol_versioning" = "xno"],
+      [AC_MSG_WARN([Disabling symbol versioning breaks ABI compatibility.])])
+
 dnl The directories with content.
 
 dnl Documentation.
diff --git a/lib/ChangeLog b/lib/ChangeLog
index 4415213..166f047 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,7 @@
+2015-04-23  Max Filippov  <jcmvbkbc@gmail.com>
+
+	* eu-config.h: Use SYMBOL_VERSIONING as guard.
+
 2014-01-17  Lei Zhang  <thestig@google.com>
 
 	* crc32_file.c: Include config.h.
diff --git a/lib/eu-config.h b/lib/eu-config.h
index 3afff26..5bb21c1 100644
--- a/lib/eu-config.h
+++ b/lib/eu-config.h
@@ -163,7 +163,7 @@ asm (".section predict_data, \"aw\"; .previous\n"
 #define ELFUTILS_HEADER(name) <lib##name.h>
 
 
-#ifdef SHARED
+#ifdef SYMBOL_VERSIONING
 # define OLD_VERSION(name, version) \
   asm (".globl _compat." #version "." #name "\n" \
        "_compat." #version "." #name " = " #name "\n" \
@@ -181,8 +181,8 @@ asm (".section predict_data, \"aw\"; .previous\n"
 # define OLD_VERSION(name, version) /* Nothing for static linking.  */
 # define NEW_VERSION(name, version) /* Nothing for static linking.  */
 # define COMPAT_VERSION_NEWPROTO(name, version, prefix) \
-  error "should use #ifdef SHARED"
-# define COMPAT_VERSION(name, version, prefix) error "should use #ifdef SHARED"
+  error "should use #ifdef SYMBOL_VERSIONING"
+# define COMPAT_VERSION(name, version, prefix) error "should use #ifdef SYMBOL_VERSIONING"
 #endif
 
 
diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog
index d4cd3f5..cbaad85 100644
--- a/libdwfl/ChangeLog
+++ b/libdwfl/ChangeLog
@@ -1,3 +1,12 @@
+2015-04-23  Max Filippov  <jcmvbkbc@gmail.com>
+
+	* core-file.c (_compat_without_executable_dwfl_core_file_report):
+	Guard with SYMBOL_VERSIONING.
+	* dwfl_module_build_id.c (_compat_vaddr_at_end_dwfl_module_build_id):
+	Likewise.
+	* dwfl_report_elf.c (_compat_without_add_p_vaddr_dwfl_report_elf):
+	Likewise.
+
 2015-04-02  Mark Wielaard  <mjw@redhat.com>
 
 	* segment.c (insert): Check correct number of lookup_elts.
diff --git a/libdwfl/core-file.c b/libdwfl/core-file.c
index 324e9d2..bbe0899 100644
--- a/libdwfl/core-file.c
+++ b/libdwfl/core-file.c
@@ -588,7 +588,7 @@ dwfl_core_file_report (Dwfl *dwfl, Elf *elf, const char *executable)
 INTDEF (dwfl_core_file_report)
 NEW_VERSION (dwfl_core_file_report, ELFUTILS_0.158)
 
-#ifdef SHARED
+#ifdef SYMBOL_VERSIONING
 int _compat_without_executable_dwfl_core_file_report (Dwfl *dwfl, Elf *elf);
 COMPAT_VERSION_NEWPROTO (dwfl_core_file_report, ELFUTILS_0.146,
 			 without_executable)
diff --git a/libdwfl/dwfl_module_build_id.c b/libdwfl/dwfl_module_build_id.c
index 350bbf8..c9a42ca 100644
--- a/libdwfl/dwfl_module_build_id.c
+++ b/libdwfl/dwfl_module_build_id.c
@@ -101,7 +101,7 @@ dwfl_module_build_id (Dwfl_Module *mod,
 INTDEF (dwfl_module_build_id)
 NEW_VERSION (dwfl_module_build_id, ELFUTILS_0.138)
 
-#ifdef SHARED
+#ifdef SYMBOL_VERSIONING
 COMPAT_VERSION (dwfl_module_build_id, ELFUTILS_0.130, vaddr_at_end)
 
 int
diff --git a/libdwfl/dwfl_report_elf.c b/libdwfl/dwfl_report_elf.c
index 3a4ae2e..624284c 100644
--- a/libdwfl/dwfl_report_elf.c
+++ b/libdwfl/dwfl_report_elf.c
@@ -321,7 +321,7 @@ dwfl_report_elf (Dwfl *dwfl, const char *name, const char *file_name, int fd,
 INTDEF (dwfl_report_elf)
 NEW_VERSION (dwfl_report_elf, ELFUTILS_0.156)
 
-#ifdef SHARED
+#ifdef SYMBOL_VERSIONING
 Dwfl_Module *
   _compat_without_add_p_vaddr_dwfl_report_elf (Dwfl *dwfl, const char *name,
 					       const char *file_name, int fd,
-- 
2.1.0


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

* Versioned symbols in elfutils and uClibc
@ 2015-04-22 21:18 Max Filippov
  0 siblings, 0 replies; 22+ messages in thread
From: Max Filippov @ 2015-04-22 21:18 UTC (permalink / raw)
  To: elfutils-devel

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

Hello,

I've got a segfault in ltrace on uClibc-based system, caused by infinite
recursion in the dwfl_report_elf function [1]. This happens because there
is no symbol versioning support in uClibc and there are two versions of
that function, one of them calling the other. Does the below patch look
like a good solution to this?

[1] http://permalink.gmane.org/gmane.comp.lib.uclibc.buildroot/113856

---8<---
From: Max Filippov <jcmvbkbc@gmail.com>
Subject: [PATCH] Allow disabling symbol versioning at configure time

Due to missing symbol versioning support in uClibc calls to versioned
functions that internally call different version of themselves results
in infinite recursion.

Introduce macro SYMBOL_VERSIONING and use it instead of plain SHARED to
decide whether symbol versioning is needed. Control this macro
definition with new configure option --disable-symbol-versioning.

Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
---
 config/eu.am                   | 10 ++++++++--
 configure.ac                   |  5 +++++
 lib/eu-config.h                |  6 +++---
 libdwfl/core-file.c            |  2 +-
 libdwfl/dwfl_module_build_id.c |  2 +-
 libdwfl/dwfl_report_elf.c      |  2 +-
 6 files changed, 19 insertions(+), 8 deletions(-)

diff --git a/config/eu.am b/config/eu.am
index faf8add..6103a3e 100644
--- a/config/eu.am
+++ b/config/eu.am
@@ -38,16 +38,22 @@ AM_CFLAGS = -std=gnu99 -Wall -Wshadow -Wformat=2 \
 
 COMPILE.os = $(filter-out -fprofile-arcs -ftest-coverage, $(COMPILE))
 
+DEFS.os = -DPIC -DSHARED
+if SYMBOL_VERSIONING
+DEFS.os += -DSYMBOL_VERSIONING
+else
+endif
+
 %.os: %.c %.o
 if AMDEP
-	if $(COMPILE.os) -c -o $@ -fpic -DPIC -DSHARED -MT $@ -MD -MP \
+	if $(COMPILE.os) -c -o $@ -fpic $(DEFS.os) -MT $@ -MD -MP \
 	  -MF "$(DEPDIR)/$*.Tpo" `test -f '$<' || echo '$(srcdir)/'`$<; \
 	then cat "$(DEPDIR)/$*.Tpo" >> "$(DEPDIR)/$*.Po"; \
 	     rm -f "$(DEPDIR)/$*.Tpo"; \
 	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
 	fi
 else
-	$(COMPILE.os) -c -o $@ -fpic -DPIC -DSHARED $<
+	$(COMPILE.os) -c -o $@ -fpic $(DEFS.os) $<
 endif
 
 CLEANFILES = *.gcno *.gcda
diff --git a/configure.ac b/configure.ac
index ed2c964..e3226f3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -241,6 +241,11 @@ AS_HELP_STRING([--disable-textrelcheck],
                [Disable textrelcheck being a fatal error]))
 AM_CONDITIONAL(FATAL_TEXTREL, [test "x$enable_textrelcheck" != "xno"])
 
+AC_ARG_ENABLE([symbol-versioning],
+AS_HELP_STRING([--disable-symbol-versioning],
+               [Disable symbol versioning in shared objects]))
+AM_CONDITIONAL(SYMBOL_VERSIONING, [test "x$enable_symbol_versioning" != "xno"])
+
 dnl The directories with content.
 
 dnl Documentation.
diff --git a/lib/eu-config.h b/lib/eu-config.h
index 3afff26..5bb21c1 100644
--- a/lib/eu-config.h
+++ b/lib/eu-config.h
@@ -163,7 +163,7 @@ asm (".section predict_data, \"aw\"; .previous\n"
 #define ELFUTILS_HEADER(name) <lib##name.h>
 
 
-#ifdef SHARED
+#ifdef SYMBOL_VERSIONING
 # define OLD_VERSION(name, version) \
   asm (".globl _compat." #version "." #name "\n" \
        "_compat." #version "." #name " = " #name "\n" \
@@ -181,8 +181,8 @@ asm (".section predict_data, \"aw\"; .previous\n"
 # define OLD_VERSION(name, version) /* Nothing for static linking.  */
 # define NEW_VERSION(name, version) /* Nothing for static linking.  */
 # define COMPAT_VERSION_NEWPROTO(name, version, prefix) \
-  error "should use #ifdef SHARED"
-# define COMPAT_VERSION(name, version, prefix) error "should use #ifdef SHARED"
+  error "should use #ifdef SYMBOL_VERSIONING"
+# define COMPAT_VERSION(name, version, prefix) error "should use #ifdef SYMBOL_VERSIONING"
 #endif
 
 
diff --git a/libdwfl/core-file.c b/libdwfl/core-file.c
index 324e9d2..bbe0899 100644
--- a/libdwfl/core-file.c
+++ b/libdwfl/core-file.c
@@ -588,7 +588,7 @@ dwfl_core_file_report (Dwfl *dwfl, Elf *elf, const char *executable)
 INTDEF (dwfl_core_file_report)
 NEW_VERSION (dwfl_core_file_report, ELFUTILS_0.158)
 
-#ifdef SHARED
+#ifdef SYMBOL_VERSIONING
 int _compat_without_executable_dwfl_core_file_report (Dwfl *dwfl, Elf *elf);
 COMPAT_VERSION_NEWPROTO (dwfl_core_file_report, ELFUTILS_0.146,
 			 without_executable)
diff --git a/libdwfl/dwfl_module_build_id.c b/libdwfl/dwfl_module_build_id.c
index 350bbf8..c9a42ca 100644
--- a/libdwfl/dwfl_module_build_id.c
+++ b/libdwfl/dwfl_module_build_id.c
@@ -101,7 +101,7 @@ dwfl_module_build_id (Dwfl_Module *mod,
 INTDEF (dwfl_module_build_id)
 NEW_VERSION (dwfl_module_build_id, ELFUTILS_0.138)
 
-#ifdef SHARED
+#ifdef SYMBOL_VERSIONING
 COMPAT_VERSION (dwfl_module_build_id, ELFUTILS_0.130, vaddr_at_end)
 
 int
diff --git a/libdwfl/dwfl_report_elf.c b/libdwfl/dwfl_report_elf.c
index 3a4ae2e..624284c 100644
--- a/libdwfl/dwfl_report_elf.c
+++ b/libdwfl/dwfl_report_elf.c
@@ -321,7 +321,7 @@ dwfl_report_elf (Dwfl *dwfl, const char *name, const char *file_name, int fd,
 INTDEF (dwfl_report_elf)
 NEW_VERSION (dwfl_report_elf, ELFUTILS_0.156)
 
-#ifdef SHARED
+#ifdef SYMBOL_VERSIONING
 Dwfl_Module *
   _compat_without_add_p_vaddr_dwfl_report_elf (Dwfl *dwfl, const char *name,
 					       const char *file_name, int fd,
-- 
1.8.1.4


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

end of thread, other threads:[~2015-05-03 18:18 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-28 17:34 Versioned symbols in elfutils and uClibc Mark Wielaard
  -- strict thread matches above, loose matches on Subject: below --
2015-05-03 18:18 Max Filippov
2015-05-01  8:52 Mark Wielaard
2015-04-29  0:35 Max Filippov
2015-04-29  0:29 Max Filippov
2015-04-28 17:35 Mark Wielaard
2015-04-28 17:35 Anthony G. Basile
2015-04-28 17:10 Mark Wielaard
2015-04-28 17:04 Mark Wielaard
2015-04-28 10:01 Max Filippov
2015-04-27  2:12 Max Filippov
2015-04-25 13:29 Anthony G. Basile
2015-04-25 13:14 Anthony G. Basile
2015-04-25  9:41 Mark Wielaard
2015-04-24 16:13 Max Filippov
2015-04-24 13:36 Mark Wielaard
2015-04-24 11:49 Anthony G. Basile
2015-04-23 22:24 Max Filippov
2015-04-23 20:56 Mark Wielaard
2015-04-23 20:20 Max Filippov
2015-04-23 19:39 Mark Wielaard
2015-04-22 21:18 Max Filippov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).