mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* Re: [ptxdist] SBOM support
  2023-09-11 13:11  7%   ` Gavin Schenk
  2023-09-11 17:08  0%     ` Christian Melki
@ 2023-09-13 16:05  0%     ` Simon Falsig
  1 sibling, 0 replies; 37+ results
From: Simon Falsig @ 2023-09-13 16:05 UTC (permalink / raw)
  To: Gavin Schenk, Michael Olbrich; +Cc: ptxdist, Jiři Vaněk

Hi Gavin, Michael,

> From: Gavin Schenk <g.schenk@eckelmann.de>
> Sent: Monday, September 11, 2023 15:11
> Hi,
> 
> > On Thu, Sep 07, 2023 at 03:03:47PM +0000, Simon Falsig wrote:
> >> I saw a post from 2021 to the mailing list on generating SBOMs from
> ptxdist.
> >> Has there been any further work on this?
> >
> > I've not worked on this and I'm not aware of any other efforts in this
> > direction.
> >
> >> We've been looking at implementing this internally - plan would be to
> >> generate the SBOM in CycloneDX format, and consume it with
> >> Dependency-Track (https://dependencytrack.org) for automatic
> >> vulnerability and license monitoring.
> >>
> >> Looks like we're quite close to having a working setup, but it'd make
> >> a lot more sense to have it upstreamed rather than as local patches,
> >> so would like to get a bit of input on the approach, and see if we
> >> can make that happen :)
> 
> we have a similar task. There is a rudimentary prototype running on our
> site. It uses licencse-complicance.yaml and a CPE-Dictionary from
> https://nvd.nist.gov/products/cpe to generate a bom.json.  This bom.json
> can than be feed into dependency tracker (We are using docker-compose for
> demonstration).
> 
> <snip bom>
> {
>     "bomFormat": "CycloneDX",
>     "specVersion": "1.4",
>     "serialNumber": "urn:uuid:f20af5d1-0480-477d-8bea-8cbcf6d9268c",
>     "components": [
>         {
>             "name": "attr",
>             "version": "2.4.47",
>             "cpe": "cpe:2.3:a:attr_project:attr:2.4.47:*:*:*:*:*:*:*",
>             "licenses": [
>                 {
>                     "license": {
>                         "id": "GPL-2.0-only"
>                     }
>                 },
>                 {
>                     "license": {
>                         "id": "LGPL-2.0-only"
>                     }
>                 }
>             ],
>             "hashes": [
>                 {
>                     "alg": "MD5",
>                     "content": "84f58dec00b60f2dc8fd1c9709291cc7"
>                 }
>             ]
>         },
>         ...
> </snip>
>

That sounds exactly like what we're working on :) I like how it also splits
up the multi-licensed specifications into separate statements. How does that
show up in dependency-track? (I just know that SPDX expressions with e.g. 
AND and OR don't really work for setting up policies.)

> 
> > I know very little about this stuff, but I'm open to add support for
> this.
> > So please sent patches once they are ready.
> >
> >> We've identified two main steps:
> >> 1. Generate the SBOM itself. A minimal version of this can be created
> from the
> >>    output of the existing fast-bsp-report in 40 lines of Python, using
> the
> >>    CycloneDX library.
> >>    I'd assume that such a script would just go into the scripts folder
> in ptxdist?
> >
> > Yes, just put it in the scripts/ folder.
> >
> 
> Our script has 110 lines python. It patches some package names that does
> not match with the db e.g.
> 
> expat -> libexpat
> gdbserver -> gdb
> kernel -> linux_kernel
> libmod -> kmod
> ...
> 
> I am unsure, if this is too error prone. Adding CPE vars to the recepies,
> where only the VERSION is variable, should be more robust.
> 
> >>    Is there a common way of tracking / documenting dependencies of such
> scripts?
> >
> > You mean Python packages used by the script? Not directly.
> 
> ptxdist-cyclonedx-bom master
>  ❯ cat requirements.txt
> pyyaml==6.0.0
> lxml==4.9.2

Yes, essentially, our current implementation needs Python3 and the
cyclonedx-bom Python library. From what I understand, this could probably
be set up using pipenv or something similar? 

> 
> > Is the SBOM something that should be created for an image or for the
> > BSP as a whole?
> 
> It should be per image imho. Because depending on configuration, layers,
> collectionconfig, content of images differs a lot. Starting from the
> image, should generate data that is 100% consistent. Not much of a
> difference to licence reports, I think.

I'm not 100% confident in the ptxdist terminology relating to image or bsp
here, but the SBOM should ideally be created based on what ends up on a
target - so I guess that's the image?
My current solution just takes this from the $PACKAGES variable, but not
sure how that works with more advanced setups than ours. Initial patchset
coming in a bit, so happy to hear about how it can be improved.

> 
> > For the license stuff I have plans to created documents for images.
> > Because those are delivered to customers, so license compliance really
> > needs to be done for each image.
> 
> And this is the same for SBOMi, as mentioned before.
> 
> > I'm not sure what makes sense. So you could either create a global
> > option and then generate the SBOM with each image. And then select
> > HOST_SYSTEM_PYTHON3_* in that option.
> > Or create an SBOM "image" for the whole BSP and select the options
> there.
> 
> One thing to keep in mind is that cyclonedx is one format, but not the
> only one. Today it is one of the most common used. But there are
> alternatives. So there might be other users who might need the sbom in
> different formats. I wonder if it is easier to adapt to other formats
> using the one, or other approach?
>

I guess this could be handled with a configuration selecting the format
to use, and just some different implementations based on that?

> 
> >> 2. To track vulnerabilities, it's necessary to track the Common
> Platform
> >>    Enumeration (CPE) name of each package (from
> >>    https://nvd.nist.gov/products/cpe).
> >>    This will allow matching packages to CVEs.
> >>    My suggestion would be to add a _CPE variable to each package (built
> >>    from whatever other variables make sense, typically _VERSION).
> >
> > Makes sense to me. From what I understand, the CPE is machine readable
> > and can be split into its components if needed, right?
> 
> I think it is. Here CPE number example for package expat:
> "cpe:2.3:a:attr_project:attr:2.4.47:*:*:*:*:*:*:*"
>                                 ^- PTXCONF_EXPAT_VERSION
> 
> >>    I managed to add this
> >>    for the fast report (extracting it to pkg_cpe in
> >>    rules/post/ptxd_make_world_common.make, and adding it to the report
> >>    in scripts/lib/ptxd_make_world_report.sh), but I wouldn't be
> >>    surprised if there are other places/report that need to track this
> >>    also for consistency?
> >
> > Just the fast and full reports are enough. Anything else in that
> > direction is legacy anyways and should be replaced with stuff based on
> > these reports anyways.
> >
> >>    Packages that specify _CPE would then have this included in their
> >>    report, and there'd be no change for the packages that don't
> >>    specify it.
> >>
> >>
> >> I'd be happy to get a bit of initial feedback on the approach. I'll
> >> have a look at putting up some initial patches in the coming days too.
> 
> I like it a lot. Need reviewers, testers, 1 mio Euro? We are willing to
> contribute.
> 
> Regards
> Gavin

Thanks! Let's see what we can put together then - I'll send in a few simple
patches in a bit, assuming that I can make this git email sending work
again...

- Simon

^ permalink raw reply	[relevance 0%]

* Re: [ptxdist] SBOM support
  2023-09-11 13:11  7%   ` Gavin Schenk
@ 2023-09-11 17:08  0%     ` Christian Melki
  2023-09-13 16:05  0%     ` Simon Falsig
  1 sibling, 0 replies; 37+ results
From: Christian Melki @ 2023-09-11 17:08 UTC (permalink / raw)
  To: ptxdist, Gavin Schenk, Michael Olbrich, Simon Falsig; +Cc: Jiři Vaněk

Shameless plug here.

We (t2data) have been developing devsecops tools for quite some time.
MAIA, our internally developed tool is capable of a lot of things.
Among them is various classifications of software with licenses, CPE,
CVE, CWE etc. Including availability of new versions etc.
Built in is also various other aspects of the development process,
beside SBOM handling.
I use MAIA to help me track my projects in ptxdist and managing change
notifications so I easier can maintain ptxdist stuff.

https://t2data.com/maia-software/

Regards,
Christian

On 9/11/23 15:11, Gavin Schenk wrote:
> Hi,
> 
>> On Thu, Sep 07, 2023 at 03:03:47PM +0000, Simon Falsig wrote:
>>> I saw a post from 2021 to the mailing list on generating SBOMs from ptxdist.
>>> Has there been any further work on this?
>>
>> I've not worked on this and I'm not aware of any other efforts in this
>> direction.
>>
>>> We've been looking at implementing this internally - plan would be to generate
>>> the SBOM in CycloneDX format, and consume it with Dependency-Track 
>>> (https://dependencytrack.org) for automatic vulnerability and license monitoring.
>>>
>>> Looks like we're quite close to having a working setup, but it'd make a lot more
>>> sense to have it upstreamed rather than as local patches, so would like to get a
>>> bit of input on the approach, and see if we can make that happen :)
> 
> we have a similar task. There is a rudimentary prototype running on our
> site. It uses licencse-complicance.yaml and a CPE-Dictionary from
> https://nvd.nist.gov/products/cpe to generate a bom.json.  This bom.json
> can than be feed into dependency tracker (We are using docker-compose
> for demonstration).
> 
> <snip bom>
> {
>     "bomFormat": "CycloneDX",
>     "specVersion": "1.4",
>     "serialNumber": "urn:uuid:f20af5d1-0480-477d-8bea-8cbcf6d9268c",
>     "components": [
>         {
>             "name": "attr",
>             "version": "2.4.47",
>             "cpe": "cpe:2.3:a:attr_project:attr:2.4.47:*:*:*:*:*:*:*",
>             "licenses": [
>                 {
>                     "license": {
>                         "id": "GPL-2.0-only"
>                     }
>                 },
>                 {
>                     "license": {
>                         "id": "LGPL-2.0-only"
>                     }
>                 }
>             ],
>             "hashes": [
>                 {
>                     "alg": "MD5",
>                     "content": "84f58dec00b60f2dc8fd1c9709291cc7"
>                 }
>             ]
>         },
>         ...
> </snip>
> 
> 
>> I know very little about this stuff, but I'm open to add support for this.
>> So please sent patches once they are ready.
>>
>>> We've identified two main steps:
>>> 1. Generate the SBOM itself. A minimal version of this can be created from the
>>>    output of the existing fast-bsp-report in 40 lines of Python, using the
>>>    CycloneDX library.
>>>    I'd assume that such a script would just go into the scripts folder in ptxdist?
>>
>> Yes, just put it in the scripts/ folder.
>>
> 
> Our script has 110 lines python. It patches some package names
> that does not match with the db e.g.
> 
> expat -> libexpat
> gdbserver -> gdb
> kernel -> linux_kernel
> libmod -> kmod
> ...
> 
> I am unsure, if this is too error prone. Adding CPE vars to the recepies,
> where only the VERSION is variable, should be more robust.
> 
>>>    Is there a common way of tracking / documenting dependencies of such scripts?
>>
>> You mean Python packages used by the script? Not directly.
> 
> ptxdist-cyclonedx-bom master 
>  ❯ cat requirements.txt 
> pyyaml==6.0.0
> lxml==4.9.2
> 
>> Is the SBOM something that should be created for an image or for the
>> BSP as a whole?
> 
> It should be per image imho. Because depending on configuration, layers,
> collectionconfig, content of images differs a lot. Starting from the
> image, should generate data that is 100% consistent. Not much of a
> difference to licence reports, I think.
> 
>> For the license stuff I have plans to created documents for images. Because
>> those are delivered to customers, so license compliance really needs to be
>> done for each image.
> 
> And this is the same for SBOMi, as mentioned before.
> 
>> I'm not sure what makes sense. So you could either create a global option
>> and then generate the SBOM with each image. And then select
>> HOST_SYSTEM_PYTHON3_* in that option.
>> Or create an SBOM "image" for the whole BSP and select the options there.
> 
> One thing to keep in mind is that cyclonedx is one format, but not the
> only one. Today it is one of the most common used. But there are
> alternatives. So there might be other users who might need the sbom in
> different formats. I wonder if it is easier to adapt to other formats
> using the one, or other approach?
> 
> 
>>> 2. To track vulnerabilities, it's necessary to track the Common Platform
>>>    Enumeration (CPE) name of each package (from https://nvd.nist.gov/products/cpe).
>>>    This will allow matching packages to CVEs.
>>>    My suggestion would be to add a _CPE variable to each package (built from
>>>    whatever other variables make sense, typically _VERSION).
>>
>> Makes sense to me. From what I understand, the CPE is machine readable and
>> can be split into its components if needed, right?
> 
> I think it is. Here CPE number example for package expat:
> "cpe:2.3:a:attr_project:attr:2.4.47:*:*:*:*:*:*:*"
>                                 ^- PTXCONF_EXPAT_VERSION
> 
>>>    I managed to add this
>>>    for the fast report (extracting it to pkg_cpe in rules/post/ptxd_make_world_common.make,
>>>    and adding it to the report in scripts/lib/ptxd_make_world_report.sh), but I
>>>    wouldn't be surprised if there are other places/report that need to track this
>>>    also for consistency?
>>
>> Just the fast and full reports are enough. Anything else in that direction
>> is legacy anyways and should be replaced with stuff based on these reports
>> anyways.
>>
>>>    Packages that specify _CPE would then have this included in their report, and
>>>    there'd be no change for the packages that don't specify it.
>>>
>>>
>>> I'd be happy to get a bit of initial feedback on the approach. I'll have a look
>>> at putting up some initial patches in the coming days too.
> 
> I like it a lot. Need reviewers, testers, 1 mio Euro? We are willing to
> contribute.
> 
> Regards
> Gavin
> 




^ permalink raw reply	[relevance 0%]

* Re: [ptxdist] SBOM support
  @ 2023-09-11 13:11  7%   ` Gavin Schenk
  2023-09-11 17:08  0%     ` Christian Melki
  2023-09-13 16:05  0%     ` Simon Falsig
  0 siblings, 2 replies; 37+ results
From: Gavin Schenk @ 2023-09-11 13:11 UTC (permalink / raw)
  To: Michael Olbrich, Simon Falsig; +Cc: ptxdist, Jiři Vaněk

Hi,

> On Thu, Sep 07, 2023 at 03:03:47PM +0000, Simon Falsig wrote:
>> I saw a post from 2021 to the mailing list on generating SBOMs from ptxdist.
>> Has there been any further work on this?
>
> I've not worked on this and I'm not aware of any other efforts in this
> direction.
>
>> We've been looking at implementing this internally - plan would be to generate
>> the SBOM in CycloneDX format, and consume it with Dependency-Track 
>> (https://dependencytrack.org) for automatic vulnerability and license monitoring.
>> 
>> Looks like we're quite close to having a working setup, but it'd make a lot more
>> sense to have it upstreamed rather than as local patches, so would like to get a
>> bit of input on the approach, and see if we can make that happen :)

we have a similar task. There is a rudimentary prototype running on our
site. It uses licencse-complicance.yaml and a CPE-Dictionary from
https://nvd.nist.gov/products/cpe to generate a bom.json.  This bom.json
can than be feed into dependency tracker (We are using docker-compose
for demonstration).

<snip bom>
{
    "bomFormat": "CycloneDX",
    "specVersion": "1.4",
    "serialNumber": "urn:uuid:f20af5d1-0480-477d-8bea-8cbcf6d9268c",
    "components": [
        {
            "name": "attr",
            "version": "2.4.47",
            "cpe": "cpe:2.3:a:attr_project:attr:2.4.47:*:*:*:*:*:*:*",
            "licenses": [
                {
                    "license": {
                        "id": "GPL-2.0-only"
                    }
                },
                {
                    "license": {
                        "id": "LGPL-2.0-only"
                    }
                }
            ],
            "hashes": [
                {
                    "alg": "MD5",
                    "content": "84f58dec00b60f2dc8fd1c9709291cc7"
                }
            ]
        },
        ...
</snip>


> I know very little about this stuff, but I'm open to add support for this.
> So please sent patches once they are ready.
>
>> We've identified two main steps:
>> 1. Generate the SBOM itself. A minimal version of this can be created from the
>>    output of the existing fast-bsp-report in 40 lines of Python, using the
>>    CycloneDX library.
>>    I'd assume that such a script would just go into the scripts folder in ptxdist?
>
> Yes, just put it in the scripts/ folder.
>

Our script has 110 lines python. It patches some package names
that does not match with the db e.g.

expat -> libexpat
gdbserver -> gdb
kernel -> linux_kernel
libmod -> kmod
...

I am unsure, if this is too error prone. Adding CPE vars to the recepies,
where only the VERSION is variable, should be more robust.

>>    Is there a common way of tracking / documenting dependencies of such scripts?
>
> You mean Python packages used by the script? Not directly.

ptxdist-cyclonedx-bom master 
 ❯ cat requirements.txt 
pyyaml==6.0.0
lxml==4.9.2

> Is the SBOM something that should be created for an image or for the
> BSP as a whole?

It should be per image imho. Because depending on configuration, layers,
collectionconfig, content of images differs a lot. Starting from the
image, should generate data that is 100% consistent. Not much of a
difference to licence reports, I think.

> For the license stuff I have plans to created documents for images. Because
> those are delivered to customers, so license compliance really needs to be
> done for each image.

And this is the same for SBOMi, as mentioned before.

> I'm not sure what makes sense. So you could either create a global option
> and then generate the SBOM with each image. And then select
> HOST_SYSTEM_PYTHON3_* in that option.
> Or create an SBOM "image" for the whole BSP and select the options there.

One thing to keep in mind is that cyclonedx is one format, but not the
only one. Today it is one of the most common used. But there are
alternatives. So there might be other users who might need the sbom in
different formats. I wonder if it is easier to adapt to other formats
using the one, or other approach?


>> 2. To track vulnerabilities, it's necessary to track the Common Platform
>>    Enumeration (CPE) name of each package (from https://nvd.nist.gov/products/cpe).
>>    This will allow matching packages to CVEs.
>>    My suggestion would be to add a _CPE variable to each package (built from
>>    whatever other variables make sense, typically _VERSION).
>
> Makes sense to me. From what I understand, the CPE is machine readable and
> can be split into its components if needed, right?

I think it is. Here CPE number example for package expat:
"cpe:2.3:a:attr_project:attr:2.4.47:*:*:*:*:*:*:*"
                                ^- PTXCONF_EXPAT_VERSION

>>    I managed to add this
>>    for the fast report (extracting it to pkg_cpe in rules/post/ptxd_make_world_common.make,
>>    and adding it to the report in scripts/lib/ptxd_make_world_report.sh), but I
>>    wouldn't be surprised if there are other places/report that need to track this
>>    also for consistency?
>
> Just the fast and full reports are enough. Anything else in that direction
> is legacy anyways and should be replaced with stuff based on these reports
> anyways.
>
>>    Packages that specify _CPE would then have this included in their report, and
>>    there'd be no change for the packages that don't specify it.
>> 
>> 
>> I'd be happy to get a bit of initial feedback on the approach. I'll have a look
>> at putting up some initial patches in the coming days too.

I like it a lot. Need reviewers, testers, 1 mio Euro? We are willing to
contribute.

Regards
Gavin



^ permalink raw reply	[relevance 7%]

* Re: [ptxdist] ptxdist go problem
       [not found]     <PA4PR02MB6639ADCA4874D798F63AD2C6DE8B9@PA4PR02MB6639.eurprd02.prod.outlook.com>
@ 2023-03-29 11:47  0% ` Alexander Dahl
  0 siblings, 0 replies; 37+ results
From: Alexander Dahl @ 2023-03-29 11:47 UTC (permalink / raw)
  To: Herczig, Adam; +Cc: Thomas.Brandt, ptxdist

Hello,

Am Mon, Mar 27, 2023 at 11:20:33AM +0000 schrieb Herczig, Adam:
> Dear support,

This is a public mailing list, no commercial support.  And it's for
ptxdist itself, not for the BSP you're trying to build.  You might
want to ask the vendor too, or at least put them in Cc?

> My name is Adam Herczig from IP Camp Kft, Hungary. My company bought a Wago plc type 750-8212 controller.
> I realized there is an sdk for c/c++ developing on github (https://github.com/WAGO/pfc-firmware-sdk-G2).
> I did everything step by step according to the readme. However when I reached "5.1) Compile all packages of PFC firmware"
> and try to run "ptxdist go -q" command I got an error
> 
> [/usr/local/lib/ptxdist-2020.08.0/rules/post/ptxd_make_world_prepare.make:20: /home/user/work/WAGO/ptxproj/platform-wago-pfcXXX/state/host-pkg-config.prepare] Error 2
> I checked the ptxd_make_world_prepare.make file in line 20 where make try to call this /home/user/work/WAGO/ptxproj/platform-wago-pfcXXX/state/host-pkg-config.prepare file
> which basically does not exist. I guess this is the meaning of Error 2. Without this file I cannot compile and I am stuck in the middle.

Try this:

    ptxdist prepare host-pkg-config

Should give you more output compared to running with the -q option for
quiet. ;-)

Maybe you want to have a look at https://www.ptxdist.org/doc/ too?

> I pulled from master branch.
> 
> My linux system is a wsl :

You mean you build on Windows?  o.O

Never tried that TBH.

> No LSB modules are available.
> Distributor ID: Ubuntu
> Description:    Ubuntu 20.04.6 LTS
> Release:        20.04
> Codename:       focal
> 
> However I tried to work over docker but got the same result.
> 
> Do you have any useful idea or this is a bug ? Have you noticed this issue previously or any similar?

FWIW: When I try to build that BSP, I got a different error:

    /mnt/data/adahl/src/pfc-firmware-sdk-G2/rules/post/dependencies-for-parallel-build.make:144: A package named pekwm does not exist

This seems to be an issue of the BSP itself, no ptxdist issue.
Opened a ticket for that:
https://github.com/WAGO/pfc-firmware-sdk-G2/issues/6

Greets
Alex

> Much appreciate any kind of answer or idea.
> 
> Best Regards,
> Ádám Herczig
> Software Developer
> [cid:image001.png@01D960AE.FCD12040]
> H-1113 Budapest
> Bocskai Street 134 - 146.
> Hungary
> +36 70 947 9484
> adam.herczig@ip-camp.com<mailto:adam.herczig@ip-camp.com>
> [signature_3082424764]
> 
> 






^ permalink raw reply	[relevance 0%]

* [ptxdist] Golang (again)
@ 2022-10-04  7:18 10% Ladislav Michl
  0 siblings, 0 replies; 37+ results
From: Ladislav Michl @ 2022-10-04  7:18 UTC (permalink / raw)
  To: ptxdist

Hi there,

I found these comments about Go support efforts:
04 Oct 2016 by Clemens Gruber:
https://www.mail-archive.com/ptxdist@pengutronix.de/msg11013.html

and 16 Apr 2021 by Enrico Weigelt:
https://www.mail-archive.com/ptxdist@pengutronix.de/msg17959.html

To my best knowledge, none of them was followed with patches.
One of the projects I'm working on is using Docker and for the sake
of simplicity I'm just deploying Docker provided statically linked
binary. So before starting over, is there anything even hackish
published somewhere?

Best regards,
	ladis



^ permalink raw reply	[relevance 10%]

* Re: [ptxdist] [PATCH 1/2] python3-gunicorn: new package
  @ 2022-05-19 16:24  9%       ` Bruno Thomsen
  0 siblings, 0 replies; 37+ results
From: Bruno Thomsen @ 2022-05-19 16:24 UTC (permalink / raw)
  To: Bruno Thomsen, ptxdist

Den ons. 18. maj 2022 kl. 15.47 skrev Michael Olbrich
<m.olbrich@pengutronix.de>:
>
> On Sat, May 14, 2022 at 12:50:33PM +0200, Bruno Thomsen wrote:
> > Den fre. 13. maj 2022 kl. 09.15 skrev Michael Olbrich
> > <m.olbrich@pengutronix.de>:
> > > On Mon, May 09, 2022 at 02:05:47PM +0200, Bruno Thomsen wrote:
> > > > Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX.

> >
> > I will send a version 2 of the patch.
>
> Thanks for digging into this. Unfortunately python3-falcon seems to have
> the same issue now :-/.
>

Looks like the same type of changes where egg packaging has been
added, and some documentation/examples/CI has been removed.

Full package diff below. Maybe using the latest version of python packages
isn't a great idea for the future as they seem pretty happy about silent fixing
archives after release :-/

/Bruno

-------8<---------

--- c9a1081d1af6df4c5d11843238dbb27b.log 2022-05-19 18:03:32.273676277 +0200
+++ 0172450908573a4449a5937810d512b9.log 2022-05-19 18:03:32.290676321 +0200
@@ -1,14 +1,4 @@
-./falcon-3.1.0/AUTHORS
e138ab040abb925116819a9992b16c325f1780a8ca5893bde7e782ce1b7778f0
-./falcon-3.1.0/BACKERS.md
29a764784d04bf0c7323300f89511e425b4a9cd8c0a6610cad0a16c14aaf6004
-./falcon-3.1.0/CHANGES.rst
d4c21f6ba9bc69bf4640ac1a6bb32b4eb5cc3555b746f0b33d26fc0abc7e21f8
-./falcon-3.1.0/CODEOFCONDUCT.md
6111a78ee608beac41dc28eaa3e74083c14861878fed6b37577ca859b0f410d1
-./falcon-3.1.0/CONTRIBUTING.md
43cd117f20a097f273a35e430dbe57bd253688ffe948388da62e03e9b6a01f3c
 ./falcon-3.1.0/.coveragerc
ce2407b0767ab9ceba1a17b1f57714dfa9c73296184910a49f5ba0d9f873744e
-./falcon-3.1.0/docker/benchmark.sh
ff56ced4941671d4cc0e12340d744649999995eac3133fcd5e3f04641a8ab288
-./falcon-3.1.0/docker/bench_py3_cython.Dockerfile
69fd3225856ee2a3c9d4c29bd28aeec6b2aea9f0faad2e5a8a3ed5f21048bbf2
-./falcon-3.1.0/docker/bench_py3.Dockerfile
a5dfb5ee3381434986a7043b109c894ae6d86168f553cdefb803ecbf419c70b9
-./falcon-3.1.0/docker/bench_pypy3.Dockerfile
84ff3cf5f7408861baeabe9df688c3422cc990599ca5e82264711d79d434fb3f
-./falcon-3.1.0/docker/Makefile
5f4c00c4feadac6437be4ce7f1e7cdebe8cf6ed42602bf5ac3610535411c4b37
 ./falcon-3.1.0/docs/api/api.rst
7786475c4d6f57a6e53d175323a400e158df36b554d70faaa796769b167572ad
 ./falcon-3.1.0/docs/api/app.rst
8a5a703bc98004a8a90cf69e09ff1e35acfac61745d01093c5e8a4926ea39294
 ./falcon-3.1.0/docs/api/cookies.rst
52af736d52549a811a8cc08cdea98e04677746ae396f09fd5a751bf2bf2aef67
@@ -46,21 +36,11 @@
 ./falcon-3.1.0/docs/community/help.rst
166a838e673f459427e5bb54d5a1fc0aed4e98269811c61efa71cc92dcd04b9c
 ./falcon-3.1.0/docs/community/index.rst
9539d70483191acb052f0e67451f5c57765ad7970ae4e858ba45cfb0f6210f0d
 ./falcon-3.1.0/docs/conf.py
8eb9d22afdb8ca50b362246111e72b667a0e4c458c6252a22b5b2d0b37d35955
-./falcon-3.1.0/docs/_content/corinne-kutz-211251.jpg
86011fd4564027c0859cb6e9a23382d6e8678b3d5e27f9bf85e48bc9ddee3253
-./falcon-3.1.0/docs/_content/govcert.png
914f0aa221efbd4026253175f6b1eb798c6ec8dd53b89340685c1c523d0d5104
-./falcon-3.1.0/docs/_content/likalo.svg
378a6ba27c20ec390970e30123d80798566ac3fe1eb000a2a6ad644887c47a8e
-./falcon-3.1.0/docs/_content/luhnar.svg
2d0e06c4e6746999166913871ab6adc4203fff5e075cec0122b7a1595132605c
-./falcon-3.1.0/docs/_content/sidebar-sponsors.html
58fd62371f1012c00a03858469229b81d7d3ba81fe584b951da7a213f9bcf88a
 ./falcon-3.1.0/docs/deploy/index.rst
ec1845bf567f8c1f73405a866da20fa595c4e7749f7c30903566afc31c373e8f
 ./falcon-3.1.0/docs/deploy/intro.rst
f53ae833979c5853011edbca29d0536d5b2236603002807aa072921faa76bcb3
 ./falcon-3.1.0/docs/deploy/nginx-uwsgi.rst
260185d71bb96fad540f565bee86466417dac36068f5b83fc635c32878a30453
-./falcon-3.1.0/docs/ext/doorway.py
3b37da02893a1f22823142a1a31b7f2181548640eb622bbbccd19681b9f4b989
-./falcon-3.1.0/docs/ext/__init__.py
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
-./falcon-3.1.0/docs/ext/private_args.py
a2eb546fc928b78d9a2f37ffd3d2ca5cafd8ca9cd6be6b2f359ab6012c22a184
-./falcon-3.1.0/docs/ext/rfc.py
ad84b67bb2f88649788b37bae48621691864ae673b98858726a92124ba761af6
 ./falcon-3.1.0/docs/index.rst
5b929e4708f1cc88b4069d941c5529367927cca1885010f043c9ff9ec26c985a
 ./falcon-3.1.0/docs/Makefile
c3a877c7077af2071c80f016c57a43e24a7b0c89bfdb000b328113fb06240ca4
-./falcon-3.1.0/docs/_newsfragments/.gitignore
902a513dd9774bf8ea61865a3ab734fb16bafa5dcaa958cd45773a8c291dffe4
 ./falcon-3.1.0/docs/_static/custom.css
aa560968e311e6bb8c68dd4e0565ead0036d10130049d8f4429b2cfa21101a30
 ./falcon-3.1.0/docs/_static/img/favicon.ico
86402570c1850f971b60ae0e6c0870abe33a9582afe454eac7e024080e7418a8
 ./falcon-3.1.0/docs/_static/img/logo.svg
69ecee3193ecacabdbd3edc6aa508beb765cd1c7b72d5bc31ebb20c46ccaa5c0
@@ -82,46 +62,6 @@
 ./falcon-3.1.0/docs/user/recipes/request-id.rst
3bcbfc91f25661c19bf0384c221e802223aa6c57ce5d67d89f53b703b9f0cea4
 ./falcon-3.1.0/docs/user/tutorial-asgi.rst
3c61f539ffd542493107b0180834ce36776fc1ea6c96dc696b420f931ab9475a
 ./falcon-3.1.0/docs/user/tutorial.rst
7a10cb54ee364569cfb4b48f99eac7a25167d0077cba4460f9e5d9424d5617cb
-./falcon-3.1.0/e2e-tests/conftest.py
ce26b317df8126c56dec9aed07343b3ddce337afd6ff4ea4c8cba1f2b1169bf9
-./falcon-3.1.0/e2e-tests/server/app.py
e51a86f64cac983112510a81f6c7e5f3a3ae2f4a6570d6845d672503dc0af89e
-./falcon-3.1.0/e2e-tests/server/chat.py
26159394eb2e45bd3acd0fefe7d6c7665cbbc3735c17314756fa5e07a26a9127
-./falcon-3.1.0/e2e-tests/server/hub.py
4d5f4a3b577ec6907a93f69f57730dda2591dc34ea8ef6a54875004b38e890d2
-./falcon-3.1.0/e2e-tests/server/__init__.py
e8767b6a13edf64f7427fd0e112875a76d397937ba768d6e4f595f9625efb756
-./falcon-3.1.0/e2e-tests/server/ping.py
239082ba8176c65bd3fa2eccf86ac15ebd1c15dc3726865384977aa590e06900
-./falcon-3.1.0/e2e-tests/static/index.html
07ffd766a3561938f0f4e8fe30fd7e66a7ae158055001b113816145e0c245f6b
-./falcon-3.1.0/e2e-tests/static/main.js
53020263ff551c1cef562b9db71feb05fcc99b96bff70878dd8a7568172be54c
-./falcon-3.1.0/e2e-tests/static/style.css
bab244efc89d0db0e2166ff4a7423087623fa2d300e4db4ba699fe292d4dbce1
-./falcon-3.1.0/e2e-tests/test_e2e.py
7a1113099bda60e66204595e708959e597177d442fca6fe4e8df5335f7db5e0a
-./falcon-3.1.0/examples/asgilook/asgilook/app.py
26e0b0622af37e5eb3b6d4b14b10413d513ffdac72acf20b36dc27b44e304efe
-./falcon-3.1.0/examples/asgilook/asgilook/asgi.py
627a9bfa2de78588e6094cdca7aeaabbe1ec2cbc3028656a825e0811ba8ceafd
-./falcon-3.1.0/examples/asgilook/asgilook/cache.py
9d44d408075cdc4f1a326158d537f2d80d5d31b893bfe82c1b54dcbc720ada0b
-./falcon-3.1.0/examples/asgilook/asgilook/config.py
fe8eb3791910f37881fd1d91401f28967c3b7ce2c043ad5b5bee9abe4657b60c
-./falcon-3.1.0/examples/asgilook/asgilook/images.py
3a316e1645a2ef84512622e2401a8a1e50baad9f1291c69bc2fbecf6c7773491
-./falcon-3.1.0/examples/asgilook/asgilook/__init__.py
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
-./falcon-3.1.0/examples/asgilook/asgilook/store.py
bf52ffbe9653ecf3182b33795a08133d0ca275c1ad5e5132da29ed3d51410a6d
-./falcon-3.1.0/examples/asgilook/.coveragerc
4a9bb5fac4afe9a5f9f34edaa90c14e36b1b6a6769163209770da57339667dc9
-./falcon-3.1.0/examples/asgilook/requirements/asgilook
c097c94e8d2bcb410bac3964e98c9e86fa3f1112e0e51f707af4a3be04dd79a6
-./falcon-3.1.0/examples/asgilook/requirements/test
975212c10a2f4eb0b51c53bda1ebdcba9f1d5fcf60090cc378d2159315d4d8ca
-./falcon-3.1.0/examples/asgilook/tests/conftest.py
7a27c702797879138bb3cbbd239c7c01e70fd50af6d35c37d18182ac3dc8c549
-./falcon-3.1.0/examples/asgilook/tests/__init__.py
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
-./falcon-3.1.0/examples/asgilook/tests/test_images.py
147e07229fd8a9350b6e3c9f84a29398184b181cc30ab82aaacc178024cf4e90
-./falcon-3.1.0/examples/asgilook/tests/test_thumbnails.py
abb1b72e00241dee760bef03203d2ae191c84c501826e7b3d245c58377d86cf1
-./falcon-3.1.0/examples/__init__.py
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
-./falcon-3.1.0/examples/look/look/app.py
7b3c0ec7a65058fdcb96986da7275af5c70e290408a974788adcab726ac94124
-./falcon-3.1.0/examples/look/look/images.py
2bfa641fee86df6333c3a4f7ae7428caa893d562497bcf165650e44455e5aa49
-./falcon-3.1.0/examples/look/look/__init__.py
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
-./falcon-3.1.0/examples/look/README.rst
3098d83ae7e081b77dcbe49be3161fa87fd4101b747dda76ea1f2da26736d554
-./falcon-3.1.0/examples/look/requirements/look
02aa377933045a36caa6bfc1f489f48f3f4a7807fa0f484d77e2d79fb87c257f
-./falcon-3.1.0/examples/look/requirements/test
e27520934ca731aca337dcd47a3f1c681ba65fa87aef818447551307daaf43f9
-./falcon-3.1.0/examples/look/tests/conftest.py
e768757aa66512b3aa35b92f416150945841b4d2dafeb707fc6067caa366493f
-./falcon-3.1.0/examples/look/tests/__init__.py
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
-./falcon-3.1.0/examples/look/tests/test_app.py
4cf0c1197ce6079a7a0260d43b388166fb4b539fcc6301948d25c0747ca94503
-./falcon-3.1.0/examples/look/tests/test_integration.py
4fcbc683c22340aeea81bf77dee154d4e5994e0161c0dd3f600d3725cca3e0ff
-./falcon-3.1.0/examples/requirements.txt
bcd630954edf5e8fc8b55e7e17a33185c7b69dc9dda19433a0f43a16a3297e99
-./falcon-3.1.0/examples/things_advanced_asgi.py
6b1e2609eb5a6bf011f9a557fc905efb181393dbea98aa54a86f400768cfd7e2
-./falcon-3.1.0/examples/things_advanced.py
1c4c55d623638c6a61431a0da585002fdc07c3dd078aeb81a77bcfedbca4fa1c
-./falcon-3.1.0/examples/things_asgi.py
34298340c4d8fe0edb3708336a285772066791ef0044062157c29d43207ac3ee
-./falcon-3.1.0/examples/things.py
1cd8d347f11f34d5fcf091c676cf5e140c7474fe3f338ad24db7fc8ddd6ee174
 ./falcon-3.1.0/falcon/api_helpers.py
a2fabd19b87d9ce118b31cfb4a011b4e15769b8e5f0f057c2d30338038d612bb
 ./falcon-3.1.0/falcon/app_helpers.py
5cd784a9fbb60aa6721d5b509f449559709015b82d42d3d852120105a16300e8
 ./falcon-3.1.0/falcon/app.py
a78c446838797973b3d98b5d6e0120c3b20de006c4a245ea01df6b63cbd4d92f
@@ -155,22 +95,15 @@
 ./falcon-3.1.0/falcon/bench/__init__.py
97e699236256802296e5be739bec501624a810c6441e02b42378e9733ef734f8
 ./falcon-3.1.0/falcon/bench/nuts/config.py
8311fc66a1f925c65dd892cc0f87a397a3200b4ff50fd945adfd269010aa3a6c
 ./falcon-3.1.0/falcon/bench/nuts/__init__.py
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
-./falcon-3.1.0/falcon/bench/nuts/MANIFEST.in
55a700352aa0d6b4c02ce8697fb68c982daf296666be38a576f288f8814ca8cf
 ./falcon-3.1.0/falcon/bench/nuts/nuts/app.py
c630e3f5f85b3d4e0bcaf61ee47bdaee848e41d2b8a0fe2ef356528173854427
 ./falcon-3.1.0/falcon/bench/nuts/nuts/controllers/__init__.py
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
 ./falcon-3.1.0/falcon/bench/nuts/nuts/controllers/root.py
463db631cd9c95eccdea5852c01bcab903387b7c868383922ab415d18a2f8d6f
 ./falcon-3.1.0/falcon/bench/nuts/nuts/__init__.py
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
 ./falcon-3.1.0/falcon/bench/nuts/nuts/model/__init__.py
2d13b1d939c3bdaff74d2a1660f18ca8f022f3015975c51c2315de4e9092fd66
-./falcon-3.1.0/falcon/bench/nuts/nuts/templates/error.html
39379b4c20fafa14e35c1f5e2601aceabebea2c283a342472e66d3300d90a883
-./falcon-3.1.0/falcon/bench/nuts/nuts/templates/index.html
b631934cbe8f26b12e4bb00c1f998ccb69a8a0250ce274a7e8d0423590c7545d
-./falcon-3.1.0/falcon/bench/nuts/nuts/templates/layout.html
c127d813dc17b8434a06026d35142331e30ed805cac5ff0888c99700566124f8
 ./falcon-3.1.0/falcon/bench/nuts/nuts/tests/config.py
fbbfa265ed25b46b22af69a2e7ee46f875186a7130b46b1ab1c089b2c776c012
 ./falcon-3.1.0/falcon/bench/nuts/nuts/tests/__init__.py
7f00ca255aa5fa02091825de382b098fc33fa4b7b2fc2f0b1ddb7e165f294e98
 ./falcon-3.1.0/falcon/bench/nuts/nuts/tests/test_functional.py
8f3bdaca3ec47d9df1566e13a5731c2a0e5e41b036c5fe2d31490e8121dfc2e3
 ./falcon-3.1.0/falcon/bench/nuts/nuts/tests/test_units.py
64b426a0e490555a96a053b66a5d5310a93704eb5821c6678fec860ac6f8b5b7
-./falcon-3.1.0/falcon/bench/nuts/public/css/style.css
6f0233edc6e53796d2571efffb8e09e09c84bd9e993cdfca75a2cbcf7c0f7c13
-./falcon-3.1.0/falcon/bench/nuts/public/images/logo.png
f592b8c59e70449065e5472c1c55c6ef8ce3753ab26a69ec91880e8da6842ff7
-./falcon-3.1.0/falcon/bench/nuts/setup.cfg
dca56d9b1d4d247f696e9369cf39beff5ed7cf32415f914af7467b7d06231d0f
 ./falcon-3.1.0/falcon/bench/nuts/setup.py
609f1cf29dd0b7512d66d2747ee4c1e123ce7028f80d777ad81355e4b03a0ee2
 ./falcon-3.1.0/falcon/bench/queues/api.py
17ee1dc91ea1c78b04a0074b28558611db103ec30b2b0bb972d34089918314ba
 ./falcon-3.1.0/falcon/bench/queues/claims.py
f8db4ce91e393d28c915c3ca79834c343f055d9bae2decb3c45d1cea9c91a8a4
@@ -185,6 +118,12 @@
 ./falcon-3.1.0/falcon/cyutil/misc.pyx
e1177b4357f4383be81b83ed835127fb3bf230a106ed6a40eed30a4fbf3ef88e
 ./falcon-3.1.0/falcon/cyutil/reader.pyx
b29099440430e8343ab9912cb589fca370cedc92d888c0d1b5c26eb8002fc6b0
 ./falcon-3.1.0/falcon/cyutil/uri.pyx
9894ace87a42fb486dd976cebb895be254c5a0b52a50d13af4a08a9280c654d3
+./falcon-3.1.0/falcon.egg-info/dependency_links.txt
01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b
+./falcon-3.1.0/falcon.egg-info/entry_points.txt
6d9ad5e52a772c84d0386a652b880cd349e90e0f8c0bd36ee660f8630faf4834
+./falcon-3.1.0/falcon.egg-info/not-zip-safe
01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b
+./falcon-3.1.0/falcon.egg-info/PKG-INFO
0ca7c3126d94c707937020951a619e4af63cf3f48e63ff8e36b2ddcdd5499187
+./falcon-3.1.0/falcon.egg-info/SOURCES.txt
00f33517768da25a905c532f9f3d91f53dc4f556d33b21bd9a9d00355c92a95b
+./falcon-3.1.0/falcon.egg-info/top_level.txt
bcd630954edf5e8fc8b55e7e17a33185c7b69dc9dda19433a0f43a16a3297e99
 ./falcon-3.1.0/falcon/errors.py
dee47840702db944de41353bcd62637b072861877272cbe0f6ae59d6b1f185ed
 ./falcon-3.1.0/falcon/forwarded.py
26a6238ebe5869379df597aa71bbda6a4013433623bcf7b09aea76f89b20c25c
 ./falcon-3.1.0/falcon/hooks.py
beb241547896aac67b6df7f65a9e8a6ff4afb0798bce514ce67cb7fea8f97357
@@ -232,45 +171,16 @@
 ./falcon-3.1.0/falcon/util/uri.py
de8583bcceeb4728eda84598f552b92425faf6d9a24fdc6c7c38783e9013e7bb
 ./falcon-3.1.0/falcon/vendor/__init__.py
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
 ./falcon-3.1.0/falcon/vendor/mimeparse/__init__.py
874c768d84f2e87c5eab71d9fd776e6066212ae4d759ff79d355fbf456185c38
-./falcon-3.1.0/falcon/vendor/mimeparse/LICENSE
89807acf2309bd285f033404ee78581602f3cd9b819a16ac2f0e5f60ff4a473e
 ./falcon-3.1.0/falcon/vendor/mimeparse/mimeparse.py
bd5bb1ec21fdb003f31b5f5502eb4961db0c5ef236f830cfc21296ae76536179
 ./falcon-3.1.0/falcon/version.py
8b99dbf50077ce1f21c593e50f2a6327f25ece01d41b85bc05ada62c4f6de25f
-./falcon-3.1.0/.github/FUNDING.yml
112558f9c8db28c9a97f91c8ad2710cf5886bbcf2e5c4d87d555bfa0ea15a6e7
-./falcon-3.1.0/.github/opencollective.yml
f5852b7f805c5fe28db415ff9279f9b642d553b6418defda569f845400730002
-./falcon-3.1.0/.github/PULL_REQUEST_TEMPLATE.md
1af90b12888cf16dfc34ba5ba8d7862c67193dcd26cc4b9f6111e24e509290bb
-./falcon-3.1.0/.github/workflows/create-wheels.yaml
3ad8b2f8c03b127dc3c3b82db74d3046f8a527ba6533544f04bc2a7e00631957
-./falcon-3.1.0/.github/workflows/mintest.yaml
4d9fe7db61600aadc16135d621b4732fa5ae9a99e3c13953d69972115f1ed3ea
-./falcon-3.1.0/.github/workflows/scripts/verify_tag.py
7eb681799579fae81cb2b80955db850917c8a9291ed6b493816ed9f6cbfe481e
-./falcon-3.1.0/.github/workflows/tests-3.5.2.yaml
9ded20001f23b75ebaa5ecda9ce5ab46ea52f6715ea9eb8361fd08e4ae399cc8
-./falcon-3.1.0/.github/workflows/tests-emulated.yaml
85f5662f871a3ee0fa65c02c6e480baf68096763ed0a6dd634b005a0ee0292da
-./falcon-3.1.0/.github/workflows/tests-mailman.yaml
025627ead5d60d9336397bf07cf639ab866f16784aba3d4a9f46809de37660e7
-./falcon-3.1.0/.github/workflows/tests.yaml
b8049cf675c9b895406dde245e6903d01739e25555fec030dcc3e631679cebc8
-./falcon-3.1.0/.gitignore
10b12b890ea39ae7720a56dd8da3d904af15bd1747d3c7385e5e980d1490fcdd
 ./falcon-3.1.0/LICENSE
cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30
-./falcon-3.1.0/logo/android-chrome-512x512.png
9a10b0bbb0c41cbbe67e7874b6dab30ea4696d94162f1c8eeed2153d01ff8178
-./falcon-3.1.0/logo/banner.jpg
5e2801b1798e9383be5f2445e48af612d70a0987a47b4b45f012192155c5b45b
-./falcon-3.1.0/logo/banner.xcf
de6017724a07d0b886bb4942ccce8a8cc0f246d1969f8bd89dd1735b1b4657a7
-./falcon-3.1.0/logo/favicon-16x16.png
fbdc2af552b2bca7732710660d9a062289f56d9aa77d0e94524fb4e0ea502eff
-./falcon-3.1.0/logo/favicon-32x32.png
fb393bd59ecd60bab95496de2f35096cd0c4e5e1bd45018496a18999e85359f2
-./falcon-3.1.0/logo/logo-alt.svg
7176e66379b97f3a0d9111857eb011768c2e6a28c45061ec9beee31988fa86ae
-./falcon-3.1.0/logo/logo.svg
69ecee3193ecacabdbd3edc6aa508beb765cd1c7b72d5bc31ebb20c46ccaa5c0
-./falcon-3.1.0/logo/mstile-150x150.png
6dcdf34eaf27e200be2182f6f41328e70c150ca80c47a49f97c197a1fde1e867
-./falcon-3.1.0/logo/mstile-310x310.png
3f447304be78b272a5d6bd5c4d7efdddfd9a4252cfabb3cebb907e3acb64a92e
-./falcon-3.1.0/logo/mstile-70x70.png
008cd70de89c7531ed610dfdc9a6b19a5d592ee2a03ae93eb32bfc894989e699
 ./falcon-3.1.0/MANIFEST.in
951addc9a29e4db42c3d8d2dcddca7e731b2111ced4405ba65a2af4b1e3bd9c3
-./falcon-3.1.0/pip.conf
be6030e23aae22ae3d1886507a72ccbe205473b23d6ca9219d4b10b8d6b4937e
+./falcon-3.1.0/PKG-INFO
0ca7c3126d94c707937020951a619e4af63cf3f48e63ff8e36b2ddcdd5499187
 ./falcon-3.1.0/pyproject.toml
aac90485e8c21b6a7d780f471cb7d21f9e0394ebc80403647a83b3d8cb9005bd
 ./falcon-3.1.0/README.rst
3fa4d2797f0583543f092781df6621945128cd2a2c1fc88741195145dc1feeca
-./falcon-3.1.0/RELEASE.md
aeabf17da6afa7470858a624807c3d0f058ec870ef931cd5f42955c2e77d319e
-./falcon-3.1.0/requirements/bench
bac4db276c8d7c8b0e1437698f1d1aeacaa9d2be785b6b3dbefb9bac81b11841
-./falcon-3.1.0/requirements/docs
f6d486ddaf22b11334c456e51b41331d27ee8b6327c2f070dbf56545e88f316c
-./falcon-3.1.0/requirements/e2e
511d9b319ea49a413a687c44c971d8f24aef2af7130162e917159d416b08a622
-./falcon-3.1.0/requirements/mintest
1d16e32baf4c342438bab995c36a8372f861c2237131fe0ca6b6c922f738b259
-./falcon-3.1.0/requirements/tests
3111abbe03b9d9997a867435e7531b4fb65a3e4bc9303a16641d5db0a317ae21
-./falcon-3.1.0/setup.cfg
cc120154cdc0a178d559494149fb448b5b8e1c83e1daa4fe272574e0e322a1a7
+./falcon-3.1.0/setup.cfg
08aa38e13b8daf9d8820bc3fef117f4153d5de9e15ee6e9451bcb860966eaa4a
 ./falcon-3.1.0/setup.py
bd5f8bae106853ffc4a49e49ed1db13e0f349c95aa1a08c9ad0c747752707ac6
 ./falcon-3.1.0/tests/asgi/_asgi_test_app.py
e303008a8ed9c141eb9f4e7aac2f5e60b611541f01a5f8320f536e199f1e4e1b
-./falcon-3.1.0/tests/asgi/_cythonized.pyx
6f49d2393141cded34a7de2b5434e331266cfb3a8e727c97b1904f551efa8835
 ./falcon-3.1.0/tests/asgi/__init__.py
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
 ./falcon-3.1.0/tests/asgi/test_asgi_conductor.py
6a86dd3cd55a13381478f12430bb27b23183ab3cc0bdd884572f6a86a4747ea0
 ./falcon-3.1.0/tests/asgi/test_asgi_helpers.py
84887cf4399931ac543c2c3e5cfa3438c47c8a987986b1d10e4f1ef4d0380c5c
@@ -371,4 +281,3 @@
 ./falcon-3.1.0/tools/testing/test_hug.sh
deacd3dbaf76e25c03ccb2fa6f63e68be059892e9679602b10418be335e3e511
 ./falcon-3.1.0/tools/towncrier_draft.py
bc8fe6426885bab916bc80a60c55f7720a8060402f2d3cc3ea81524c23c243a8
 ./falcon-3.1.0/tox.ini
2f69e7ae2c6ea05b7270d0fe36548a1febb6677a9642d1194148277f64f010db
-./falcon-3.1.0/volunteers.jpg
58777f47d32693716276f62e4747e57a2dd9c856823237554ef71a28987c5d8c



^ permalink raw reply	[relevance 9%]

* Re: [ptxdist] Docker rules
  2022-03-17 16:00 19%   ` Enrico Weigelt, metux IT consult
@ 2022-03-18  7:36 17%     ` Alexander Dahl
  0 siblings, 0 replies; 37+ results
From: Alexander Dahl @ 2022-03-18  7:36 UTC (permalink / raw)
  To: Enrico Weigelt, metux IT consult; +Cc: ptxdist

Hallo Enrico,

Am Thu, Mar 17, 2022 at 05:00:57PM +0100 schrieb Enrico Weigelt, metux IT consult:
> On 27.01.22 18:22, Alexander Dahl wrote:
> > Hello Mircea,
> > 
> > On Thu, Jan 27, 2022 at 05:37:01PM +0100, Mircea Ciocan wrote:
> > > are there any official or unofficial rules to have docker container support
> > > build with PTXDist on aarch64 platforms
> > 
> > Do you mean running Docker containers on the target?  Or buildung a
> > ptxdist based BSP in a Docker container?  AFAIK there's neither one or
> > the other.
> 
> actually did exactly this (both docker on the target as well as building
> docker images via ptxdist) about a year ago ... not sure wether my
> patches reached this list ...

Could not find them at https://lore.ptxdist.org/ptxdist/?q=docker …
(also not with different search terms).

Sure you send it?  I could also not find it in my personal archive.

Alex

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

^ permalink raw reply	[relevance 17%]

* Re: [ptxdist] Docker rules
  2022-01-27 17:22 21% ` Alexander Dahl
  2022-01-28 11:01 20%   ` Michael Olbrich
  2022-01-28 15:18 20%   ` Mircea Ciocan
@ 2022-03-17 16:00 19%   ` Enrico Weigelt, metux IT consult
  2022-03-18  7:36 17%     ` Alexander Dahl
  2 siblings, 1 reply; 37+ results
From: Enrico Weigelt, metux IT consult @ 2022-03-17 16:00 UTC (permalink / raw)
  To: ptxdist

On 27.01.22 18:22, Alexander Dahl wrote:
> Hello Mircea,
> 
> On Thu, Jan 27, 2022 at 05:37:01PM +0100, Mircea Ciocan wrote:
>> are there any official or unofficial rules to have docker container support
>> build with PTXDist on aarch64 platforms
> 
> Do you mean running Docker containers on the target?  Or buildung a
> ptxdist based BSP in a Docker container?  AFAIK there's neither one or
> the other.

actually did exactly this (both docker on the target as well as building
docker images via ptxdist) about a year ago ... not sure wether my
patches reached this list ...


--mtx


> 
>> or I have to painfully dissect the
>> Yocto's virtualization layer ?
> 
> If you're looking for inspiration for Docker on the target, you might
> as well checkout the buildroot project [1].  That is more or less
> similar to ptxdist conceptually, and IIRC it has support for Docker on
> the target.  Look out for package/docker* in their tree.
> 
> Greets
> Alex
> 
> [1] https://www.buildroot.org/
> 
> 
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

-- 
---
Hinweis: unverschlüsselte E-Mails können leicht abgehört und manipuliert
werden ! Für eine vertrauliche Kommunikation senden Sie bitte ihren
GPG/PGP-Schlüssel zu.
---
Enrico Weigelt, metux IT consult
Free software and Linux embedded engineering
info@metux.net -- +49-151-27565287

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

^ permalink raw reply	[relevance 19%]

* [ptxdist] [PATCH] libnice: version bump 0.1.16 -> 0.1.18
@ 2022-02-22 10:59 10% Philipp Zabel
  0 siblings, 0 replies; 37+ results
From: Philipp Zabel @ 2022-02-22 10:59 UTC (permalink / raw)
  To: ptxdist

Switch to Meson build system.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
 rules/libnice.in   |  4 +---
 rules/libnice.make | 30 +++++++++++++-----------------
 2 files changed, 14 insertions(+), 20 deletions(-)

diff --git a/rules/libnice.in b/rules/libnice.in
index 8aeb56f3c2f9..ab10b43a983b 100644
--- a/rules/libnice.in
+++ b/rules/libnice.in
@@ -3,9 +3,7 @@
 config LIBNICE
 	tristate
 	prompt "libnice"
-	# for autogen.sh
-	select HOST_GTK_DOC
-
+	select HOST_MESON
 	select GLIB
 	select GSTREAMER1
 	select OPENSSL
diff --git a/rules/libnice.make b/rules/libnice.make
index f9efde424d9c..f0b985a9f75f 100644
--- a/rules/libnice.make
+++ b/rules/libnice.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LIBNICE) += libnice
 #
 # Paths and names
 #
-LIBNICE_VERSION	:= 0.1.16
-LIBNICE_MD5	:= 5ad936c43d3c6d33117b2c64982f2fd9
+LIBNICE_VERSION	:= 0.1.18
+LIBNICE_MD5	:= 408482fa4bab7c6b884b0fb9ad57a038
 LIBNICE		:= libnice-$(LIBNICE_VERSION)
 LIBNICE_SUFFIX	:= tar.gz
 LIBNICE_URL	:= https://libnice.freedesktop.org/releases/$(LIBNICE).$(LIBNICE_SUFFIX)
@@ -28,23 +28,19 @@ LIBNICE_LICENSE	:= MPL-1.1 OR LGPL-2.1-only
 # ----------------------------------------------------------------------------
 
 #
-# autoconf
+# meson
 #
-LIBNICE_CONF_TOOL	:= autoconf
+LIBNICE_CONF_TOOL	:= meson
 LIBNICE_CONF_OPT	:= \
-	$(CROSS_AUTOCONF_USR) \
-	--enable-assert \
-	--enable-compile-warnings=yes \
-	--disable-gupnp \
-	--disable-coverage \
-	--disable-static-plugins \
-	--disable-gtk-doc \
-	--disable-gtk-doc-html \
-	--disable-gtk-doc-pdf \
-	--disable-introspection \
-	--with-crypto-library=openssl \
-	--with-gstreamer \
-	--without-gstreamer-0.10
+	$(CROSS_MESON_USR) \
+	-Dcrypto-library=openssl \
+	-Dexamples=disabled \
+	-Dgstreamer=enabled \
+	-Dgtk_doc=disabled \
+	-Dgupnp=disabled \
+	-Dignored-network-interface-prefix=["docker", "veth", "virbr", "vnet"] \
+	-Dintrospection=disabled \
+	-Dtests=disabled
 
 # ----------------------------------------------------------------------------
 # Target-Install
-- 
2.30.2


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[relevance 10%]

* Re: [ptxdist] Docker rules
  2022-01-27 17:22 21% ` Alexander Dahl
  2022-01-28 11:01 20%   ` Michael Olbrich
@ 2022-01-28 15:18 20%   ` Mircea Ciocan
  2022-03-17 16:00 19%   ` Enrico Weigelt, metux IT consult
  2 siblings, 0 replies; 37+ results
From: Mircea Ciocan @ 2022-01-28 15:18 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 2121 bytes --]

On 27.01.22 18:22, Alexander Dahl wrote:
> Hello Mircea,
>
> On Thu, Jan 27, 2022 at 05:37:01PM +0100, Mircea Ciocan wrote:
>> are there any official or unofficial rules to have docker container support
>> build with PTXDist on aarch64 platforms
> Do you mean running Docker containers on the target?  Or buildung a
> ptxdist based BSP in a Docker container?  AFAIK there's neither one or
> the other.
>
>> or I have to painfully dissect the
>> Yocto's virtualization layer ?
> If you're looking for inspiration for Docker on the target, you might
> as well checkout the buildroot project [1].  That is more or less
> similar to ptxdist conceptually, and IIRC it has support for Docker on
> the target.  Look out for package/docker* in their tree.
>
> Greets
> Alex
>
> [1] https://www.buildroot.org/
Hello everybody and first of all thanks Alexander, indeed I need to be 
able to run docker images on the target.

I don't disagree that docker is overkill for many things, but the 
customer uses docker images for some application distribution and other 
competing platforms supports it.

The mention of buildroot really helped, and to also answer to some 
"answers", that boil down mostly to "why would you need such a 
thing...", we are talking here about an aarch64 platform, with full 
TF-A, OP-TEE, 3GiB RAM and tons of eMMC, that supports natively 
virtualization. A typical docker image for this platform is around 5MiB.

So running docker images there is not some kind of crazy stuff, but it 
is presented like this: "...sure it should work, we use it since years 
since RPi2 devices, have a look...". So the times of Arm 920t or similar 
are coming to an end and will be a great thing if PTXDist will support 
running docker containers in the default rules at least for 64-bit 
architectures.

I, of course, do not suggest to drop everything and integrate docker 
support, but maybe consider it as feature for the near future and not 
black-listed it by default, it's definitely here to stay.

Best regards and a nice and relaxing weekend,

Mircea









[-- Attachment #1.2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4266 bytes --]

[-- Attachment #2: Type: text/plain, Size: 181 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

^ permalink raw reply	[relevance 20%]

* Re: [ptxdist] Docker rules
  2022-01-28 11:01 20%   ` Michael Olbrich
@ 2022-01-28 11:15  9%     ` Felix Mellmann
  2022-01-28 11:15  9%     ` Felix Mellmann
  2022-01-28 12:40  9%     ` Christian Melki
  2 siblings, 0 replies; 37+ results
From: Felix Mellmann @ 2022-01-28 11:15 UTC (permalink / raw)
  To: ptxdist


On 28.01.22 12:01, Michael Olbrich wrote:
> Hi,
>
> On Thu, Jan 27, 2022 at 06:22:28PM +0100, Alexander Dahl wrote:
>> On Thu, Jan 27, 2022 at 05:37:01PM +0100, Mircea Ciocan wrote:
>>> are there any official or unofficial rules to have docker container support
>>> build with PTXDist on aarch64 platforms
>> Do you mean running Docker containers on the target?  Or buildung a
>> ptxdist based BSP in a Docker container?  AFAIK there's neither one or
>> the other.
> I don't know of any either.
>
> The most important questions here is, what exactly do you want to achieve?
>
> In my experience, Docker is mostly a buzzword that comes from the
> management with the hope that everything will be magically better
> afterwards. Without a clear understanding what problem should be solved.
Full acknowledge!
>
> So I would recommend that you look take a look at you problem and verify if
> Docker or any other container manager is actually what you need.
>
> I'm sure there are real use-cases out there where Docker is the right tool,
> but I've yet to come in touch in one for PTXdist.
> There is a reason why there are no Docker rules in PTXdist so far :-).

I think the other way round is a more common usecase - having 
Dockerfiles along with the PTXdist tarball which could be used to set up 
working environments out of PTXdist and the latest OSELAS toolchain. 
Every 2 years whenever there is a new Ubuntu LTS I need to set up a 
Dockerfile to maintain older releases, especially when the used PTXdist 
and OSELAS toolchain would not build anymore on the newer Ubuntu.

If someone is interested I could share my commonly used Dockerfile for 
this usecase.

>
> Regards.
> Michael
>

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[relevance 9%]

* Re: [ptxdist] Docker rules
  2022-01-28 11:01 20%   ` Michael Olbrich
  2022-01-28 11:15  9%     ` Felix Mellmann
  2022-01-28 11:15  9%     ` Felix Mellmann
@ 2022-01-28 12:40  9%     ` Christian Melki
  2 siblings, 0 replies; 37+ results
From: Christian Melki @ 2022-01-28 12:40 UTC (permalink / raw)
  To: ptxdist

If machine is powerful enough, I'd try running a lightweight distro 
image in QEMU, natively. QEMU is available in ptxdist an I have run 
system-emulations on ARM64 machines. The performance hit is not that bad 
nowdays. That way you can have (easier) access to all the modern 
infrastructure packages required for checking all the fancy buzzwords 
boxes. :)

I don't think embedded environment projects have the manpower or the 
interest to maintain functional packages of all the 
infrastructure-thingies that have exploded the last few years.

But all this depends on what you're trying to achieve, as Michael 
already pointed out.

My .02.
Regards,
Christian

On 1/28/22 12:01 PM, Michael Olbrich wrote:
> Hi,
> 
> On Thu, Jan 27, 2022 at 06:22:28PM +0100, Alexander Dahl wrote:
>> On Thu, Jan 27, 2022 at 05:37:01PM +0100, Mircea Ciocan wrote:
>>> are there any official or unofficial rules to have docker container support
>>> build with PTXDist on aarch64 platforms
>>
>> Do you mean running Docker containers on the target?  Or buildung a
>> ptxdist based BSP in a Docker container?  AFAIK there's neither one or
>> the other.
> 
> I don't know of any either.
> 
> The most important questions here is, what exactly do you want to achieve?
> 
> In my experience, Docker is mostly a buzzword that comes from the
> management with the hope that everything will be magically better
> afterwards. Without a clear understanding what problem should be solved.
> 
> So I would recommend that you look take a look at you problem and verify if
> Docker or any other container manager is actually what you need.
> 
> I'm sure there are real use-cases out there where Docker is the right tool,
> but I've yet to come in touch in one for PTXdist.
> There is a reason why there are no Docker rules in PTXdist so far :-).
> 
> Regards.
> Michael
> 

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[relevance 9%]

* Re: [ptxdist] Docker rules
  2022-01-28 11:01 20%   ` Michael Olbrich
  2022-01-28 11:15  9%     ` Felix Mellmann
@ 2022-01-28 11:15  9%     ` Felix Mellmann
  2022-01-28 12:40  9%     ` Christian Melki
  2 siblings, 0 replies; 37+ results
From: Felix Mellmann @ 2022-01-28 11:15 UTC (permalink / raw)
  To: ptxdist


On 28.01.22 12:01, Michael Olbrich wrote:
> Hi,
>
> On Thu, Jan 27, 2022 at 06:22:28PM +0100, Alexander Dahl wrote:
>> On Thu, Jan 27, 2022 at 05:37:01PM +0100, Mircea Ciocan wrote:
>>> are there any official or unofficial rules to have docker container support
>>> build with PTXDist on aarch64 platforms
>> Do you mean running Docker containers on the target?  Or buildung a
>> ptxdist based BSP in a Docker container?  AFAIK there's neither one or
>> the other.
> I don't know of any either.
>
> The most important questions here is, what exactly do you want to achieve?
>
> In my experience, Docker is mostly a buzzword that comes from the
> management with the hope that everything will be magically better
> afterwards. Without a clear understanding what problem should be solved.
Full acknowledge!
>
> So I would recommend that you look take a look at you problem and verify if
> Docker or any other container manager is actually what you need.
>
> I'm sure there are real use-cases out there where Docker is the right tool,
> but I've yet to come in touch in one for PTXdist.
> There is a reason why there are no Docker rules in PTXdist so far :-).

I think the other way round is a more common usecase - having 
Dockerfiles along with the PTXdist tarball which could be used to set up 
working environments out of PTXdist and the latest OSELAS toolchain. 
Every 2 years whenever there is a new Ubuntu LTS I need to set up a 
Dockerfile to maintain older releases, especially when the used PTXdist 
and OSELAS toolchain would not build anymore on the newer Ubuntu.

If someone is interested I could share my commonly used Dockerfile for 
this usecase.
>
> Regards.
> Michael
>

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[relevance 9%]

* Re: [ptxdist] Docker rules
  2022-01-27 17:22 21% ` Alexander Dahl
@ 2022-01-28 11:01 20%   ` Michael Olbrich
  2022-01-28 11:15  9%     ` Felix Mellmann
                       ` (2 more replies)
  2022-01-28 15:18 20%   ` Mircea Ciocan
  2022-03-17 16:00 19%   ` Enrico Weigelt, metux IT consult
  2 siblings, 3 replies; 37+ results
From: Michael Olbrich @ 2022-01-28 11:01 UTC (permalink / raw)
  To: ptxdist

Hi,

On Thu, Jan 27, 2022 at 06:22:28PM +0100, Alexander Dahl wrote:
> On Thu, Jan 27, 2022 at 05:37:01PM +0100, Mircea Ciocan wrote:
> > are there any official or unofficial rules to have docker container support
> > build with PTXDist on aarch64 platforms 
> 
> Do you mean running Docker containers on the target?  Or buildung a
> ptxdist based BSP in a Docker container?  AFAIK there's neither one or
> the other.

I don't know of any either.

The most important questions here is, what exactly do you want to achieve?

In my experience, Docker is mostly a buzzword that comes from the
management with the hope that everything will be magically better
afterwards. Without a clear understanding what problem should be solved.

So I would recommend that you look take a look at you problem and verify if
Docker or any other container manager is actually what you need.

I'm sure there are real use-cases out there where Docker is the right tool,
but I've yet to come in touch in one for PTXdist.
There is a reason why there are no Docker rules in PTXdist so far :-).

Regards.
Michael

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[relevance 20%]

* Re: [ptxdist] Docker rules
  2022-01-27 16:37 17% [ptxdist] Docker rules Mircea Ciocan
@ 2022-01-27 17:22 21% ` Alexander Dahl
  2022-01-28 11:01 20%   ` Michael Olbrich
                     ` (2 more replies)
  0 siblings, 3 replies; 37+ results
From: Alexander Dahl @ 2022-01-27 17:22 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 1038 bytes --]

Hello Mircea,

On Thu, Jan 27, 2022 at 05:37:01PM +0100, Mircea Ciocan wrote:
> are there any official or unofficial rules to have docker container support
> build with PTXDist on aarch64 platforms 

Do you mean running Docker containers on the target?  Or buildung a
ptxdist based BSP in a Docker container?  AFAIK there's neither one or
the other.

> or I have to painfully dissect the
> Yocto's virtualization layer ?

If you're looking for inspiration for Docker on the target, you might
as well checkout the buildroot project [1].  That is more or less
similar to ptxdist conceptually, and IIRC it has support for Docker on
the target.  Look out for package/docker* in their tree.

Greets
Alex

[1] https://www.buildroot.org/

-- 
/"\ ASCII RIBBON | »With the first link, the chain is forged. The first
\ / CAMPAIGN     | speech censured, the first thought forbidden, the
 X  AGAINST      | first freedom denied, chains us all irrevocably.«
/ \ HTML MAIL    | (Jean-Luc Picard, quoting Judge Aaron Satie)

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 181 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

^ permalink raw reply	[relevance 21%]

* [ptxdist] Docker rules
@ 2022-01-27 16:37 17% Mircea Ciocan
  2022-01-27 17:22 21% ` Alexander Dahl
  0 siblings, 1 reply; 37+ results
From: Mircea Ciocan @ 2022-01-27 16:37 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 272 bytes --]

Hello everybody,

are there any official or unofficial rules to have docker container 
support build with PTXDist on aarch64 platforms or I have to painfully 
dissect the Yocto's virtualization layer ?

Any advice is appreciated.


Best regards,

Mircea




[-- Attachment #1.2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4266 bytes --]

[-- Attachment #2: Type: text/plain, Size: 181 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

^ permalink raw reply	[relevance 17%]

* Re: [ptxdist] host-elf-h-compat: Upstream server seems to be unstable
  @ 2021-08-16  9:05  7% ` Roland Hieber
  0 siblings, 0 replies; 37+ results
From: Roland Hieber @ 2021-08-16  9:05 UTC (permalink / raw)
  To: Felix Mellmann; +Cc: Bernhard Walle, ptxdist

(+Cc Bernhard Walle)

On Sun, Aug 15, 2021 at 10:47:14AM +0200, Felix Mellmann wrote:
> Hi,
> 
> I've just encountered, that retrieving the sources of the host-elf-h-compat
> package is currently not possible:
> 
> --2021-08-15 10:35:13-- https://bwalle.de/programme/elf-h-compat-0.2.tar.bz2
> Resolving bwalle.de (bwalle.de)... 92.204.55.145, 2a00:1158:5:491::
> Connecting to bwalle.de (bwalle.de)|92.204.55.145|:443... connected.
> ERROR: cannot verify bwalle.de's certificate, issued by
> 'CN=webslave.ispgateway.de,O=ispgateway,L=Ismaing,ST=Bavaria,C=DE':
>   Self-signed certificate encountered.
>     ERROR: certificate common name 'webslave.ispgateway.de' doesn't match
> requested host name 'bwalle.de'.
> To connect to bwalle.de insecurely, use `--no-check-certificate'.
> 
> The package itself was added in 2012 (commit e929e0) and got no essential
> update in between.

From its README:

    Q: This package is a nightmare to main[t]ain...
    A: No, because ELF is standardized and doesn't change every month.

So, yes ;-)

> Maybe it can be dropped nowadays since elf.h is part of
> the libc6-dev package (at least for Debian oldstable and newer, Ubuntu
> bionic and newer) which might be set as a dependency for ptxdist configure
> script.
> 
> What is you oppinion?

I agree. The earliest that Michael was still build-testing until
recently [1] was CentOS 7, but even that already has elf.h. When reading
the log message for commit e929e0765, it seems to me that the package
was added for the use case when PTXdist is not used on Linux – back then
there were some people who were using it on Cygwin I think – but I guess
nowadays you would just fire up an Ubuntu VM or Docker container or
something.

[1]: https://lore.ptxdist.org/ptxdist/20210805120945.GF21333@pengutronix.de

 - Roland

-- 
Roland Hieber, Pengutronix e.K.          | r.hieber@pengutronix.de     |
Steuerwalder Str. 21                     | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686         | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

^ permalink raw reply	[relevance 7%]

* Re: [ptxdist] problem configuring python3
       [not found]               ` <CAMwGMjxjrsXFa1LqQ7YqkdQh2tB227V08OTbeh=iUYKZuQLHyw@mail.gmail.com>
@ 2021-06-15 14:18  0%             ` Michael Olbrich
  0 siblings, 0 replies; 37+ results
From: Michael Olbrich @ 2021-06-15 14:18 UTC (permalink / raw)
  To: ptxdist

On Tue, Jun 15, 2021 at 10:13:58AM -0400, Jon Ringle wrote:
> On Tue, Jun 15, 2021 at 9:54 AM Michael Olbrich <m.olbrich@pengutronix.de>
> wrote:
> > On Tue, Jun 15, 2021 at 08:17:36AM -0400, Jon Ringle wrote:
> > > On Tue, Jun 15, 2021 at 8:08 AM Michael Olbrich <
> > m.olbrich@pengutronix.de>
> > > wrote:
> > > > On Tue, Jun 15, 2021 at 07:16:32AM -0400, Jon Ringle wrote:
> > > > > On Tue, Jun 15, 2021 at 2:11 AM Michael Olbrich <
> > > > m.olbrich@pengutronix.de>
> > > > > wrote:
> > > > > > On Mon, Jun 14, 2021 at 05:57:36PM -0400, Jon Ringle wrote:
> > > > > > > It seems like I'm having a problem with python3.7m in
> > sysroot-host
> > > > trying
> > > > > > > to use the host libm. I'm not sure if the issue is with ptxdist
> > or
> > > > with
> > > > > > the
> > > > > > > docker container image I use for building the ptxdist bsp.
> > > > > > >
> > > > > > > -----------------------
> > > > > > > target: python3.prepare
> > > > > > > -----------------------
> > > > > > >
> > > > > > > checking for git... found
> > > > > > > checking build system type... x86_64-host-linux-gnu
> > > > > > > checking host system type... arm-v5te-linux-gnueabi
> > > > > > > checking for python3.7... python3.7
> > > > > > > checking for python interpreter for cross build... python3.7:
> > > > > > > /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found
> > > > (required
> > > > > > > by /src/build/platform-ec1k/sysroot-host/bin/../lib/l
> > > > > > > ibpython3.7m.so.1.0)
> > > > > >
> > > > > > This looks strange. I think it's trying to execute
> > > > > > /src/build/platform-ec1k/sysroot-host/bin/python3.7 and fails. That
> > > > should
> > > > > > not happen. Can you execute that manually?
> > > > > > For some reason the glibc that is used does not match the libm from
> > > > your
> > > > > > system. Maybe there is a version mismatch in the docker container?
> > > > > >
> > > > > >
> > > > > I fails in the same way executing manually within a ptxdist bash
> > shell:
> > > > > [ptx] jringle@-arm-v5te-linux-gnueabi:~/build$
> > > > > /src/build/platform-ec1k/sysroot-host/bin/python3.7
> > > > > /src/build/platform-ec1k/sysroot-host/bin/python3.7:
> > > > > /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found
> > (required
> > > > > by /src/build/platform-ec1k/sysroot-host/bin/../lib/libpython3
> > > > > .7m.so.1.0)
> > > >
> > > > What's the output of
> > > >
> > > > $ ldd /src/build/platform-ec1k/sysroot-host/bin/python3.7
> > > > $ ldd /usr/bin/python3.7
> > > >
> > > >
> > > jringle@-arm-v5te-linux-gnueabi:~/build$ ldd
> > > /src/build/platform-ec1k/sysroot-host/bin/python3.7
> > > /src/build/platform-ec1k/sysroot-host/bin/python3.7:
> > > /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required
> > > by /src/build/platform-ec1k/sysroot-host/bin/../lib/libpython3
> > > .7m.so.1.0)
> > >
> > >        linux-vdso.so.1 (0x00007ffffb3b1000)
> > >        libpython3.7m.so.1.0 =>
> > > /src/build/platform-ec1k/sysroot-host/bin/../lib/libpython3.7m.so.1.0
> > > (0x00007f0ccabe4000)
> > >        libcrypt.so.1 => /lib/x86_64-linux-gnu/libcrypt.so.1
> > > (0x00007f0ccaba0000)
> > >        libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0
> > > (0x00007f0ccab7f000)
> > >        libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2
> > (0x00007f0ccab7a000)
> > >        libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1
> > > (0x00007f0ccab75000)
> > >        libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f0cca9f2000)
> > >        libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f0cca82f000)
> > >        /lib64/ld-linux-x86-64.so.2 (0x00007f0ccaef4000)
> > > jringle@-arm-v5te-linux-gnueabi:~/build$ ldd /usr/bin/python3.7
> > >        linux-vdso.so.1 (0x00007ffd9bbf8000)
> > >        libcrypt.so.1 => /lib/x86_64-linux-gnu/libcrypt.so.1
> > > (0x00007f85dffc0000)
> > >        libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0
> > > (0x00007f85dff9f000)
> > >        libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2
> > (0x00007f85dff9a000)
> > >        libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1
> > > (0x00007f85dff95000)
> > >        libexpat.so.1 => /lib/x86_64-linux-gnu/libexpat.so.1
> > > (0x00007f85dff58000)
> > >        libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f85dfd3a000)
> > >        libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f85dfbb5000)
> > >        libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f85df9f4000)
> > >        /lib64/ld-linux-x86-64.so.2 (0x00007f85e0006000)
> >
> > This looks ok. What about:
> >
> > $ ls -l /lib/x86_64-linux-gnu/libm.so.6 /lib/x86_64-linux-gnu/libc.so.6
> >
> >
> jringle@-arm-v5te-linux-gnueabi:~/build$ ls -l
> /lib/x86_64-linux-gnu/libm.so.6 /lib/x86_64-linux-gnu/libc.so.6
> lrwxrwxrwx 1 root root 12 May  1  2019 /lib/x86_64-linux-gnu/libc.so.6 ->
> libc-2.28.so
> 
> lrwxrwxrwx 1 root root 12 May  1  2019 /lib/x86_64-linux-gnu/libm.so.6 ->
> libm-2.28.so
> 
> jringle@-arm-v5te-linux-gnueabi:~/build$ ls -l
> /lib/x86_64-linux-gnu/lib{c,m}-*
> -rwxr-xr-x 1 root root 1824496 May  1  2019 /lib/x86_64-linux-gnu/
> libc-2.28.so
> -rw-r--r-- 1 root root 1579448 May  1  2019 /lib/x86_64-linux-gnu/
> libm-2.28.so
> 
> I'm not sure why it would be looking for GLIBC_2.29

I'm out of ideas.

Michael

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[relevance 0%]

* Re: [ptxdist] problem configuring python3
       [not found]           ` <CAMwGMjyVmD0Zc-swQjtBQcMXrQQNpBFAXuWWNY47nCDbNvvP9Q@mail.gmail.com>
@ 2021-06-15 13:54  0%         ` Michael Olbrich
       [not found]               ` <CAMwGMjxjrsXFa1LqQ7YqkdQh2tB227V08OTbeh=iUYKZuQLHyw@mail.gmail.com>
  0 siblings, 1 reply; 37+ results
From: Michael Olbrich @ 2021-06-15 13:54 UTC (permalink / raw)
  To: ptxdist

On Tue, Jun 15, 2021 at 08:17:36AM -0400, Jon Ringle wrote:
> On Tue, Jun 15, 2021 at 8:08 AM Michael Olbrich <m.olbrich@pengutronix.de>
> wrote:
> > On Tue, Jun 15, 2021 at 07:16:32AM -0400, Jon Ringle wrote:
> > > On Tue, Jun 15, 2021 at 2:11 AM Michael Olbrich <
> > m.olbrich@pengutronix.de>
> > > wrote:
> > > > On Mon, Jun 14, 2021 at 05:57:36PM -0400, Jon Ringle wrote:
> > > > > It seems like I'm having a problem with python3.7m in sysroot-host
> > trying
> > > > > to use the host libm. I'm not sure if the issue is with ptxdist or
> > with
> > > > the
> > > > > docker container image I use for building the ptxdist bsp.
> > > > >
> > > > > -----------------------
> > > > > target: python3.prepare
> > > > > -----------------------
> > > > >
> > > > > checking for git... found
> > > > > checking build system type... x86_64-host-linux-gnu
> > > > > checking host system type... arm-v5te-linux-gnueabi
> > > > > checking for python3.7... python3.7
> > > > > checking for python interpreter for cross build... python3.7:
> > > > > /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found
> > (required
> > > > > by /src/build/platform-ec1k/sysroot-host/bin/../lib/l
> > > > > ibpython3.7m.so.1.0)
> > > >
> > > > This looks strange. I think it's trying to execute
> > > > /src/build/platform-ec1k/sysroot-host/bin/python3.7 and fails. That
> > should
> > > > not happen. Can you execute that manually?
> > > > For some reason the glibc that is used does not match the libm from
> > your
> > > > system. Maybe there is a version mismatch in the docker container?
> > > >
> > > >
> > > I fails in the same way executing manually within a ptxdist bash shell:
> > > [ptx] jringle@-arm-v5te-linux-gnueabi:~/build$
> > > /src/build/platform-ec1k/sysroot-host/bin/python3.7
> > > /src/build/platform-ec1k/sysroot-host/bin/python3.7:
> > > /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required
> > > by /src/build/platform-ec1k/sysroot-host/bin/../lib/libpython3
> > > .7m.so.1.0)
> >
> > What's the output of
> >
> > $ ldd /src/build/platform-ec1k/sysroot-host/bin/python3.7
> > $ ldd /usr/bin/python3.7
> >
> >
> jringle@-arm-v5te-linux-gnueabi:~/build$ ldd
> /src/build/platform-ec1k/sysroot-host/bin/python3.7
> /src/build/platform-ec1k/sysroot-host/bin/python3.7:
> /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required
> by /src/build/platform-ec1k/sysroot-host/bin/../lib/libpython3
> .7m.so.1.0)
> 
>        linux-vdso.so.1 (0x00007ffffb3b1000)
>        libpython3.7m.so.1.0 =>
> /src/build/platform-ec1k/sysroot-host/bin/../lib/libpython3.7m.so.1.0
> (0x00007f0ccabe4000)
>        libcrypt.so.1 => /lib/x86_64-linux-gnu/libcrypt.so.1
> (0x00007f0ccaba0000)
>        libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0
> (0x00007f0ccab7f000)
>        libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f0ccab7a000)
>        libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1
> (0x00007f0ccab75000)
>        libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f0cca9f2000)
>        libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f0cca82f000)
>        /lib64/ld-linux-x86-64.so.2 (0x00007f0ccaef4000)
> jringle@-arm-v5te-linux-gnueabi:~/build$ ldd /usr/bin/python3.7
>        linux-vdso.so.1 (0x00007ffd9bbf8000)
>        libcrypt.so.1 => /lib/x86_64-linux-gnu/libcrypt.so.1
> (0x00007f85dffc0000)
>        libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0
> (0x00007f85dff9f000)
>        libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f85dff9a000)
>        libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1
> (0x00007f85dff95000)
>        libexpat.so.1 => /lib/x86_64-linux-gnu/libexpat.so.1
> (0x00007f85dff58000)
>        libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f85dfd3a000)
>        libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f85dfbb5000)
>        libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f85df9f4000)
>        /lib64/ld-linux-x86-64.so.2 (0x00007f85e0006000)

This looks ok. What about:

$ ls -l /lib/x86_64-linux-gnu/libm.so.6 /lib/x86_64-linux-gnu/libc.so.6

Michael


-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[relevance 0%]

* Re: [ptxdist] problem configuring python3
       [not found]       ` <CAMwGMjzYuSL0UkfU1YYG+wjw6bngL4Evjf5c9xSuDmwfxYyLZA@mail.gmail.com>
@ 2021-06-15 12:08  0%     ` Michael Olbrich
       [not found]           ` <CAMwGMjyVmD0Zc-swQjtBQcMXrQQNpBFAXuWWNY47nCDbNvvP9Q@mail.gmail.com>
  0 siblings, 1 reply; 37+ results
From: Michael Olbrich @ 2021-06-15 12:08 UTC (permalink / raw)
  To: ptxdist

On Tue, Jun 15, 2021 at 07:16:32AM -0400, Jon Ringle wrote:
> On Tue, Jun 15, 2021 at 2:11 AM Michael Olbrich <m.olbrich@pengutronix.de>
> wrote:
> 
> > On Mon, Jun 14, 2021 at 05:57:36PM -0400, Jon Ringle wrote:
> > > It seems like I'm having a problem with python3.7m in sysroot-host trying
> > > to use the host libm. I'm not sure if the issue is with ptxdist or with
> > the
> > > docker container image I use for building the ptxdist bsp.
> > >
> > > -----------------------
> > > target: python3.prepare
> > > -----------------------
> > >
> > > checking for git... found
> > > checking build system type... x86_64-host-linux-gnu
> > > checking host system type... arm-v5te-linux-gnueabi
> > > checking for python3.7... python3.7
> > > checking for python interpreter for cross build... python3.7:
> > > /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required
> > > by /src/build/platform-ec1k/sysroot-host/bin/../lib/l
> > > ibpython3.7m.so.1.0)
> >
> > This looks strange. I think it's trying to execute
> > /src/build/platform-ec1k/sysroot-host/bin/python3.7 and fails. That should
> > not happen. Can you execute that manually?
> > For some reason the glibc that is used does not match the libm from your
> > system. Maybe there is a version mismatch in the docker container?
> >
> >
> I fails in the same way executing manually within a ptxdist bash shell:
> [ptx] jringle@-arm-v5te-linux-gnueabi:~/build$
> /src/build/platform-ec1k/sysroot-host/bin/python3.7
> /src/build/platform-ec1k/sysroot-host/bin/python3.7:
> /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required
> by /src/build/platform-ec1k/sysroot-host/bin/../lib/libpython3
> .7m.so.1.0)

What's the output of

$ ldd /src/build/platform-ec1k/sysroot-host/bin/python3.7
$ ldd /usr/bin/python3.7

Michael


-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[relevance 0%]

* Re: [ptxdist] problem configuring python3
       [not found]     <CAMwGMjwgv1kQotakLPtFV_+_C4mSQQtfJ+EbrQrN5rQDaa=JtA@mail.gmail.com>
@ 2021-06-15  6:10  8% ` Michael Olbrich
       [not found]       ` <CAMwGMjzYuSL0UkfU1YYG+wjw6bngL4Evjf5c9xSuDmwfxYyLZA@mail.gmail.com>
  0 siblings, 1 reply; 37+ results
From: Michael Olbrich @ 2021-06-15  6:10 UTC (permalink / raw)
  To: ptxdist

On Mon, Jun 14, 2021 at 05:57:36PM -0400, Jon Ringle wrote:
> It seems like I'm having a problem with python3.7m in sysroot-host trying
> to use the host libm. I'm not sure if the issue is with ptxdist or with the
> docker container image I use for building the ptxdist bsp.
> 
> -----------------------
> target: python3.prepare
> -----------------------
> 
> checking for git... found
> checking build system type... x86_64-host-linux-gnu
> checking host system type... arm-v5te-linux-gnueabi
> checking for python3.7... python3.7
> checking for python interpreter for cross build... python3.7:
> /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required
> by /src/build/platform-ec1k/sysroot-host/bin/../lib/l
> ibpython3.7m.so.1.0)

This looks strange. I think it's trying to execute
/src/build/platform-ec1k/sysroot-host/bin/python3.7 and fails. That should
not happen. Can you execute that manually?
For some reason the glibc that is used does not match the libm from your
system. Maybe there is a version mismatch in the docker container?

Michael

> 
> 'python3' must depend on 'host-system-python3' for 'python3'!
> 
> 
> 'python3' must depend on 'host-system-python / host-system-python3' for
> 'python'!
> 
> configure: error: python3.7 interpreter not found
> 
> -Jon

> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[relevance 8%]

* Re: [ptxdist] Ptxdist lightweight packaging usecase.
  2021-01-20 17:39  9% [ptxdist] Ptxdist lightweight packaging usecase Christian Melki
  2021-01-21  6:38  0% ` Denis Osterland-Heim
@ 2021-01-21 12:07  7% ` Michael Olbrich
  1 sibling, 0 replies; 37+ results
From: Michael Olbrich @ 2021-01-21 12:07 UTC (permalink / raw)
  To: ptxdist

Hi,

On Wed, Jan 20, 2021 at 06:39:29PM +0100, Christian Melki wrote:
> I'd like to package (docker) a complete ptxdist build environment for a
> target platform but as light as possible. Since most application developers
> do not care about platform stuff, but still need to build images from time
> to time.

What exactly do you want to do in the docker? Just create images? Compile
selected packages?

> So now I have this question: Can I purge build and still produce results?
> 
> If I build a platform and remove src, platform-X/build-target,
> platform-X/build-host the actual storage requirements for a docker becomes
> _far_ less. All state are kept so I'd want the user to be able to do clean
> && compile for his rules. Also I'd like to be able to do a complete go &&
> images.

If a package is done and not rebuilt, then you don't need the corresponding
directory in build-target / build-host and packages/.

> The major caveat seems to be the sources directory. If I whipe the sources,
> ptxdist tries to rebuild stuff, even if there is no file (not changed,
> missing) and all states are completed. Get, prepare, compile, install etc.

There is a dependency on the source archive. However, it's a "existence
only" dependency, so the timestamp of the file does not matter. It should
be possible to replace all the source archives with empty files.

> Is there a proper way ptxdist can accomodate this usecase? I don't find it
> unresonable. There is little point in keeping everything or every user
> producing every bit of the result.
> Storage requirements is only like 10% of the original. Far easier to keep
> complete states of releases as fast checkpoints for minor corrections.

I think, with the right tricks this should already be possible. But only
if you are very careful. As soon as some dependency triggers a rebuilt then
it will break apart with strange errors. And you'll probably need to
rebuild most of the BSP. And changing that is quite complex.

Michael

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

^ permalink raw reply	[relevance 7%]

* Re: [ptxdist] Ptxdist lightweight packaging usecase.
  2021-01-20 17:39  9% [ptxdist] Ptxdist lightweight packaging usecase Christian Melki
@ 2021-01-21  6:38  0% ` Denis Osterland-Heim
  2021-01-21 12:07  7% ` Michael Olbrich
  1 sibling, 0 replies; 37+ results
From: Denis Osterland-Heim @ 2021-01-21  6:38 UTC (permalink / raw)
  To: ptxdist

Hi,

I am not 100% if I got your point.

If you want to speed-up the ptxdist build you may have a look at https://www.ptxdist.org/doc/daily_work_section.html#using-pre-built-archives

If you want to create an environment for application developers where they can compile the application without ptxdist,
you just need to provide the `platform-XXX/sysroot-target` and a bunch of variables depending on the build-system.

Regards, Denis

Am Mittwoch, den 20.01.2021, 18:39 +0100 schrieb Christian Melki:
> Hi.
>
> I'd like to package (docker) a complete ptxdist build environment for a
> target platform but as light as possible. Since most application
> developers do not care about platform stuff, but still need to build
> images from time to time.
>
> So now I have this question: Can I purge build and still produce results?
>
> If I build a platform and remove src, platform-X/build-target,
> platform-X/build-host the actual storage requirements for a docker
> becomes _far_ less. All state are kept so I'd want the user to be able
> to do clean && compile for his rules. Also I'd like to be able to do a
> complete go && images.
>
> The major caveat seems to be the sources directory. If I whipe the
> sources, ptxdist tries to rebuild stuff, even if there is no file (not
> changed, missing) and all states are completed. Get, prepare, compile,
> install etc.
>
> Is there a proper way ptxdist can accomodate this usecase? I don't find
> it unresonable. There is little point in keeping everything or every
> user producing every bit of the result.
> Storage requirements is only like 10% of the original. Far easier to
> keep complete states of releases as fast checkpoints for minor corrections.
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
Diehl Connectivity Solutions GmbH
Geschäftsführung: Horst Leonberger
Sitz der Gesellschaft: Nürnberg - Registergericht: Amtsgericht
Nürnberg: HRB 32315

________________________________

Der Inhalt der vorstehenden E-Mail ist nicht rechtlich bindend. Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte Informationen.
Informieren Sie uns bitte, wenn Sie diese E-Mail faelschlicherweise erhalten haben. Bitte loeschen Sie in diesem Fall die Nachricht.
Jede unerlaubte Form der Reproduktion, Bekanntgabe, Aenderung, Verteilung und/oder Publikation dieser E-Mail ist strengstens untersagt.

- Informationen zum Datenschutz, insbesondere zu Ihren Rechten, erhalten Sie unter:

https://www.diehl.com/group/de/transparenz-und-informationspflichten/

The contents of the above mentioned e-mail is not legally binding. This e-mail contains confidential and/or legally protected information. Please inform us if you have received this e-mail by
mistake and delete it in such a case. Each unauthorized reproduction, disclosure, alteration, distribution and/or publication of this e-mail is strictly prohibited.

- For general information on data protection and your respective rights please visit:

https://www.diehl.com/group/en/transparency-and-information-obligations/


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

^ permalink raw reply	[relevance 0%]

* [ptxdist] Ptxdist lightweight packaging usecase.
@ 2021-01-20 17:39  9% Christian Melki
  2021-01-21  6:38  0% ` Denis Osterland-Heim
  2021-01-21 12:07  7% ` Michael Olbrich
  0 siblings, 2 replies; 37+ results
From: Christian Melki @ 2021-01-20 17:39 UTC (permalink / raw)
  To: ptxdist

Hi.

I'd like to package (docker) a complete ptxdist build environment for a 
target platform but as light as possible. Since most application 
developers do not care about platform stuff, but still need to build 
images from time to time.

So now I have this question: Can I purge build and still produce results?

If I build a platform and remove src, platform-X/build-target, 
platform-X/build-host the actual storage requirements for a docker 
becomes _far_ less. All state are kept so I'd want the user to be able 
to do clean && compile for his rules. Also I'd like to be able to do a 
complete go && images.

The major caveat seems to be the sources directory. If I whipe the 
sources, ptxdist tries to rebuild stuff, even if there is no file (not 
changed, missing) and all states are completed. Get, prepare, compile, 
install etc.

Is there a proper way ptxdist can accomodate this usecase? I don't find 
it unresonable. There is little point in keeping everything or every 
user producing every bit of the result.
Storage requirements is only like 10% of the original. Far easier to 
keep complete states of releases as fast checkpoints for minor corrections.

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

^ permalink raw reply	[relevance 9%]

* Re: [ptxdist] ptxdist: support podman
  2019-10-15 13:35 10% [ptxdist] ptxdist: support podman Bruno Thomsen
@ 2019-10-15 23:00  7% ` Andreas Friesen
  0 siblings, 0 replies; 37+ results
From: Andreas Friesen @ 2019-10-15 23:00 UTC (permalink / raw)
  To: ptxdist

Hi

> I am currently migrating our containerized CI pipelines from docker (moby) to
> podman as it's more secure[1]. But ptxdist refuse to run as "root", but in reality
> it's running with less privileges then the user that started it.
>
> ptxdist: error: refusing to run PTXdist as root

Yesterday I had the same problem, but with docker container...

creating a buildbot user solves the problem:

--8<--- Dockefile
FROM ubuntu:18.04
...

RUN groupadd -r buildbot && useradd -r -g buildbot buildbot -m -d /buildbot
USER buildbot
## END
-->8--- Dockerfile

> Is it possible to do an extra podman check?
>
> I found "/run/.containerenv" documented as an official flag to detect that a program
> is in a container.
>
> Bruno
>
> [1] https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcloudnweb.dev%2F2019%2F06%2Freplacing-docker-with-podman-power-of-podman%2F&amp;data=02%7C01%7Candreas.friesen%40hbkworld.com%7Cb1fdce80d12a425cb8d808d7517496dd%7C6cce74a3397545e09893b072988b30b6%7C0%7C1%7C637067433499587697&amp;sdata=ElDMLtqmeC0MCpolB%2FJBOY4ychVC0nZLilAPXqPSZAo%3D&amp;reserved=0
> [2] https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcontainers%2Flibpod%2Fblob%2Fmaster%2Fdocs%2Fpodman-run.1.md&amp;data=02%7C01%7Candreas.friesen%40hbkworld.com%7Cb1fdce80d12a425cb8d808d7517496dd%7C6cce74a3397545e09893b072988b30b6%7C0%7C1%7C637067433499587697&amp;sdata=%2FiB%2Bm9OI18uE8Tq0FH%2FHpJ8DeX0ZTEZ%2F0sLmNzDlFxQ%3D&amp;reserved=0
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de


--
Andreas Friesen
R&D Embedded Control Software
Tel.   : +49 6151-803445
Fax    : +49 6151-8039445
E-Mail : andreas.friesen@hbkworld.com
Web    : www.hbkworld.com
Hottinger Baldwin Messtechnik GmbH, Im Tiefen See 45, 64293 Darmstadt, Germany | www.hbm.com Registered as GmbH (German limited liability corporation) in the commercial register at the local court of Darmstadt, HRB 1147 Company domiciled in Darmstadt | Managing Directors: Thomas Lippok & Jens Wiegand | Chairman of the board: Joe Vorih Als Gesellschaft mit beschränkter Haftung eingetragen im Handelsregister des Amtsgerichts Darmstadt unter HRB 1147 Sitz der Gesellschaft: Darmstadt | Geschäftsführung: Thomas Lippok & Jens Wiegand | Aufsichtsratsvorsitzender: Joe Vorih The information in this email is confidential. It is intended solely for the addressee. If you are not the intended recipient, please let me know and delete this email. Die in dieser E-Mail enthaltene Information ist vertraulich und lediglich für den Empfänger bestimmt. Sollten Sie nicht der eigentliche Empfänger sein, informieren Sie mich bitte kurz und löschen diese E-Mail.

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 7%]

* [ptxdist] ptxdist: support podman
@ 2019-10-15 13:35 10% Bruno Thomsen
  2019-10-15 23:00  7% ` Andreas Friesen
  0 siblings, 1 reply; 37+ results
From: Bruno Thomsen @ 2019-10-15 13:35 UTC (permalink / raw)
  To: ptxdist

Hi

I am currently migrating our containerized CI pipelines from docker (moby) to
podman as it's more secure[1]. But ptxdist refuse to run as "root", but in reality
it's running with less privileges then the user that started it.

ptxdist: error: refusing to run PTXdist as root

Is it possible to do an extra podman check?

I found "/run/.containerenv" documented as an official flag to detect that a program
is in a container.

Bruno

[1] https://cloudnweb.dev/2019/06/replacing-docker-with-podman-power-of-podman/
[2] https://github.com/containers/libpod/blob/master/docs/podman-run.1.md
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 10%]

* [ptxdist] OSELAS.Toolchain 2019.09.0 - incorrect install path
@ 2019-09-19  3:56  7% Rüdiger, Christoph
  0 siblings, 0 replies; 37+ results
From: Rüdiger, Christoph @ 2019-09-19  3:56 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 1741 bytes --]

Hi everyone,

I discovered an issue in the 2019.09.0 OSELAS toolchain where the installation does not happen into the correct path at /opt/OSELAS.Toolchain-2019.09.0/... What happens instead is that everything gets installed into a package in the platform-... directory, but the things never make it from there into the /opt/ directory.

I've attached the logfile for building and installing just the cross-binutils in a clean OSELAS-2019.09.0 project.

From what I see, ptxdist creates the packages as it usually does, but for whatever reason does not install it on the host.

How is this supposed to happen? What is going wrong here?

I can reproduce it in a fresh Ubuntu Docker container by just installing ptxdist-2019.09.0 and using this to build OSELAS 2019.09.0.

Best regards,/Freundliche Grüße

Christoph Rüdiger
Digital Operations Architect
ET/DTX-DO

T: +49 201 844 - 537878, M: +49 152 3828 0376, christoph.ruediger@thyssenkrupp.com

thyssenkrupp Elevator AG, thyssenkrupp Allee 1, 45143 Essen, Germany, www.thyssenkrupp-elevator.com<http://www.thyssenkrupp-elevator.com/>

Vorsitzender des Aufsichtsrats/Chairman of the Supervisory Board: Guido Kerkhoff
Vorstand/Executive Board: Peter Walker (Vorsitzender/Chairman), Ercan Keles, Dr. Detlef Hunsdiek
Sitz der Gesellschaft/Company domicile: Düsseldorf, Registergericht/Commercial register: Düsseldorf HR B 47444

This e-mail (including any attachments) may contain confidential and/or privileged information. Any unauthorized
use or dissemination of this message in whole or in part is strictly prohibited. If you are not the intended recipient
(or have received this e-mail in error) please notify the sender immediately and destroy this e-mail.


[-- Attachment #1.2: Type: text/html, Size: 6794 bytes --]

[-- Attachment #2: logfile --]
[-- Type: application/octet-stream, Size: 310600 bytes --]

# -*- mode:outline; outline-regexp:"{{{" -*-
# vim: set fdm=marker fdl=1:

{{{ 2019-09-19T03:26:32+0000 /usr/local/lib/ptxdist-2019.09.0/bin/ptxdist install cross-binutils

---------------------------------------------------------------
target: cross-binutils.7c8c0a09309fcde8a7fc2fabbf112b5b.srchash
---------------------------------------------------------------

finished target cross-binutils.7c8c0a09309fcde8a7fc2fabbf112b5b.srchash

--------------------------
target: cross-binutils.get
--------------------------

finished target cross-binutils.get

------------------------------
target: cross-binutils.extract
------------------------------

extract: pkg_src=OSELAS.Toolchain-2019.09.0/src/binutils-2.32.tar.bz2
extract: pkg_extract_dir=OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32

pkg_patch_dir:     'OSELAS.Toolchain-2019.09.0/patches/binutils-2.32'
pkg_patch_series:  'OSELAS.Toolchain-2019.09.0/patches/binutils-2.32/series'

patchin: patch: apply 'OSELAS.Toolchain-2019.09.0/patches/binutils-2.32/series'
applying '0100-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch'
patching file ld/emultempl/elf32.em
Hunk #2 succeeded at 1748 (offset -5 lines).
patchin: patch: done

finished target cross-binutils.extract

------------------------------
target: host-fake-makeinfo.get
------------------------------

finished target host-fake-makeinfo.get

----------------------------------
target: host-fake-makeinfo.extract
----------------------------------

patchin: no patches found
finished target host-fake-makeinfo.extract

------------------------
target: host-chrpath.get
------------------------

finished target host-chrpath.get

----------------------------
target: host-chrpath.extract
----------------------------

extract: pkg_src=OSELAS.Toolchain-2019.09.0/src/chrpath-0.16.tar.gz
extract: pkg_extract_dir=OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16
patchin: no patches found
finished target host-chrpath.extract

---------------------------------
target: host-chrpath.extract.post
---------------------------------

finished target host-chrpath.extract.post

-------------------------------------------------------------
target: host-chrpath.3868031df503311006abe0615f686984.cfghash
-------------------------------------------------------------

finished target host-chrpath.3868031df503311006abe0615f686984.cfghash

----------------------------
target: host-chrpath.prepare
----------------------------

ptxdist: executing: PATH=/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/lib/wrapper:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/sbin:/usr/local/lib/ptxdist-2019.09.0/bin:/usr/local/lib/ptxdist-2014.12.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PKGCONFIG_WHITELIST_HOST='' PKGCONFIG_WHITELIST_TARGET='' PKGCONFIG_WHITELIST_SRC='host-chrpath' SYSROOT='/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host' V=0 VERBOSE= KBUILD_BUILD_TIMESTAMP=2019-09-01T00:00:00+00:00 KBUILD_BUILD_USER=ptxdist KBUILD_BUILD_HOST=ptxdist PTXDIST_ICECC= enable_option_checking=fatal enable_maintainer_mode=no enable_static=no CC="gcc" CXX="g++" PYTHONPATH="/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/lib/python2.7/site-packages" ./configure --prefix=

checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking elf.h usability... yes
checking elf.h presence... yes
checking for elf.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking for unistd.h... (cached) yes
checking link.h usability... yes
checking link.h presence... yes
checking for link.h... yes
checking sys/link.h usability... no
checking sys/link.h presence... no
checking for sys/link.h... no
checking for an ANSI C-conforming const... yes
checking whether byte ordering is bigendian... no
checking size of void *... 8
checking for getopt_long... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating testsuite/Makefile
config.status: creating deb/Makefile
config.status: creating config.h
config.status: executing depfiles commands
Configure status:
-----------------
 CC     = gcc
 CFLAGS = -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wcomments -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes
 LDRPATH= -Wl,-rpath,

finished target host-chrpath.prepare

----------------------------
target: host-chrpath.compile
----------------------------

ptxdist: executing: PATH=/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/lib/wrapper:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/sbin:/usr/local/lib/ptxdist-2019.09.0/bin:/usr/local/lib/ptxdist-2014.12.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PKGCONFIG_WHITELIST_HOST='' PKGCONFIG_WHITELIST_TARGET='' PKGCONFIG_WHITELIST_SRC='host-chrpath' SYSROOT='/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host' V=0 VERBOSE= KBUILD_BUILD_TIMESTAMP=2019-09-01T00:00:00+00:00 KBUILD_BUILD_USER=ptxdist KBUILD_BUILD_HOST=ptxdist  make -C /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16  -j16  

make[1]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16'
make  all-recursive
make[2]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16'
Making all in testsuite
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16/testsuite'
gcc -Wl,-rpath,/usr/local/lib -o prog prog.c
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16/testsuite'
Making all in deb
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16/deb'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16/deb'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16'
gcc -DHAVE_CONFIG_H -I.     -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wcomments -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -MT chrpath.o -MD -MP -MF .deps/chrpath.Tpo -c -o chrpath.o chrpath.c
gcc -DHAVE_CONFIG_H -I.     -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wcomments -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -MT killrpath.o -MD -MP -MF .deps/killrpath.Tpo -c -o killrpath.o killrpath.c
gcc -DHAVE_CONFIG_H -I.     -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wcomments -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
gcc -DHAVE_CONFIG_H -I.     -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wcomments -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -MT elf.o -MD -MP -MF .deps/elf.Tpo -c -o elf.o elf.c
mv -f .deps/killrpath.Tpo .deps/killrpath.Po
mv -f .deps/main.Tpo .deps/main.Po
mv -f .deps/elf.Tpo .deps/elf.Po
mv -f .deps/chrpath.Tpo .deps/chrpath.Po
gcc  -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wcomments -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes   -o chrpath chrpath.o killrpath.o main.o elf.o  
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16'
make[2]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16'
make[1]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16'
finished target host-chrpath.compile

----------------------------
target: host-chrpath.install
----------------------------

ptxdist: executing: PATH=/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/lib/wrapper:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/sbin:/usr/local/lib/ptxdist-2019.09.0/bin:/usr/local/lib/ptxdist-2014.12.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PKGCONFIG_WHITELIST_HOST='' PKGCONFIG_WHITELIST_TARGET='' PKGCONFIG_WHITELIST_SRC='host-chrpath' SYSROOT='/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host' V=0 VERBOSE= KBUILD_BUILD_TIMESTAMP=2019-09-01T00:00:00+00:00 KBUILD_BUILD_USER=ptxdist KBUILD_BUILD_HOST=ptxdist   make -C /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16 DESTDIR="/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-chrpath-0.16" INSTALL_ROOT="/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-chrpath-0.16" install -j1
make[1]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16'
Making install in testsuite
make[2]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16/testsuite'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16/testsuite'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16/testsuite'
make[2]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16/testsuite'
Making install in deb
make[2]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16/deb'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16/deb'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16/deb'
make[2]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16/deb'
make[2]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16'
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-chrpath-0.16/bin'
  /usr/local/lib/ptxdist-2019.09.0/bin/install -c chrpath '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-chrpath-0.16/bin'
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-chrpath-0.16/doc/chrpath-0.16'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 AUTHORS COPYING ChangeLog INSTALL NEWS README '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-chrpath-0.16/doc/chrpath-0.16'
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-chrpath-0.16/share/man/man1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 chrpath.1 '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-chrpath-0.16/share/man/man1'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16'
make[2]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16'
make[1]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/chrpath-0.16'
finished target host-chrpath.install

---------------------------------
target: host-chrpath.install.pack
---------------------------------

finished target host-chrpath.install.pack

---------------------------
target: host-chrpath.report
---------------------------

Copy licenses for package: 'osi-conform/host-chrpath'...
finished target host-chrpath.report

---------------------------------
target: host-chrpath.install.post
---------------------------------

finished target host-chrpath.install.post

----------------------------------
target: virtual-host-tools.install
----------------------------------

finished target virtual-host-tools.install

---------------------------------------
target: host-fake-makeinfo.extract.post
---------------------------------------

finished target host-fake-makeinfo.extract.post

-------------------------------------------------------------------
target: host-fake-makeinfo.e05f0c3bcfe1ac90332bf7ba3137f404.cfghash
-------------------------------------------------------------------

finished target host-fake-makeinfo.e05f0c3bcfe1ac90332bf7ba3137f404.cfghash

----------------------------------
target: host-fake-makeinfo.prepare
----------------------------------

finished target host-fake-makeinfo.prepare

----------------------------------
target: host-fake-makeinfo.compile
----------------------------------

finished target host-fake-makeinfo.compile

----------------------------------
target: host-fake-makeinfo.install
----------------------------------

install -d /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-fake-makeinfo/bin
echo 'if [ "${1}" == "--version" ]; then  echo "makeinfo (GNU texinfo) 5.2"; fi' > /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-fake-makeinfo/bin/makeinfo
chmod +x /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-fake-makeinfo/bin/makeinfo
finished target host-fake-makeinfo.install

---------------------------------------
target: host-fake-makeinfo.install.pack
---------------------------------------

finished target host-fake-makeinfo.install.pack

---------------------------------
target: host-fake-makeinfo.report
---------------------------------

Package to be ignored: metapackage for example
finished target host-fake-makeinfo.report

---------------------------------------
target: host-fake-makeinfo.install.post
---------------------------------------

finished target host-fake-makeinfo.install.post

---------------------
target: host-zlib.get
---------------------

finished target host-zlib.get

-------------------------
target: host-zlib.extract
-------------------------

extract: pkg_src=OSELAS.Toolchain-2019.09.0/src/zlib-1.2.11.tar.xz
extract: pkg_extract_dir=OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/zlib-1.2.11
patchin: no patches found
finished target host-zlib.extract

------------------------------
target: host-zlib.extract.post
------------------------------

finished target host-zlib.extract.post

----------------------------------------------------------
target: host-zlib.86a31178622896a1fa549e79e54cd9b5.cfghash
----------------------------------------------------------

finished target host-zlib.86a31178622896a1fa549e79e54cd9b5.cfghash

-------------------------
target: host-zlib.prepare
-------------------------

ptxdist: executing: PATH=/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/lib/wrapper:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/sbin:/usr/local/lib/ptxdist-2019.09.0/bin:/usr/local/lib/ptxdist-2014.12.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PKGCONFIG_WHITELIST_HOST='' PKGCONFIG_WHITELIST_TARGET='' PKGCONFIG_WHITELIST_SRC='host-zlib' SYSROOT='/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host' V=0 VERBOSE= KBUILD_BUILD_TIMESTAMP=2019-09-01T00:00:00+00:00 KBUILD_BUILD_USER=ptxdist KBUILD_BUILD_HOST=ptxdist PTXDIST_ICECC= enable_option_checking=fatal enable_maintainer_mode=no enable_static=no CC="gcc" CXX="g++" PYTHONPATH="/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/lib/python2.7/site-packages" ./configure --prefix= --static

Building static library libz.a version 1.2.11 with gcc.
Checking for size_t... Yes.
Checking for off64_t... Yes.
Checking for fseeko... Yes.
Checking for strerror... Yes.
Checking for unistd.h... Yes.
Checking for stdarg.h... Yes.
Checking whether to use vs[n]printf() or s[n]printf()... using vs[n]printf().
Checking for vsnprintf() in stdio.h... Yes.
Checking for return value of vsnprintf()... Yes.
Checking for attribute(visibility) support... Yes.
finished target host-zlib.prepare

-------------------------
target: host-zlib.compile
-------------------------

ptxdist: executing: PATH=/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/lib/wrapper:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/sbin:/usr/local/lib/ptxdist-2019.09.0/bin:/usr/local/lib/ptxdist-2014.12.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PKGCONFIG_WHITELIST_HOST='' PKGCONFIG_WHITELIST_TARGET='' PKGCONFIG_WHITELIST_SRC='host-zlib' SYSROOT='/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host' V=0 VERBOSE= KBUILD_BUILD_TIMESTAMP=2019-09-01T00:00:00+00:00 KBUILD_BUILD_USER=ptxdist KBUILD_BUILD_HOST=ptxdist  make -C /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/zlib-1.2.11  -j16  

make[1]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/zlib-1.2.11'
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -c -o example.o test/example.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o adler32.o adler32.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o crc32.o crc32.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o deflate.o deflate.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o infback.o infback.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o inffast.o inffast.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o inflate.o inflate.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o inftrees.o inftrees.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o trees.o trees.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o zutil.o zutil.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o compress.o compress.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o uncompr.o uncompr.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o gzclose.o gzclose.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o gzlib.o gzlib.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o gzread.o gzread.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o gzwrite.o gzwrite.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -c -o minigzip.o test/minigzip.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -D_FILE_OFFSET_BITS=64 -c -o example64.o test/example.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -D_FILE_OFFSET_BITS=64 -c -o minigzip64.o test/minigzip.c
ar rc libz.a adler32.o crc32.o deflate.o infback.o inffast.o inflate.o inftrees.o trees.o zutil.o compress.o uncompr.o gzclose.o gzlib.o gzread.o gzwrite.o 
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o example example.o -L. libz.a
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o minigzip minigzip.o -L. libz.a
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o example64 example64.o -L. libz.a
gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o minigzip64 minigzip64.o -L. libz.a
make[1]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/zlib-1.2.11'
finished target host-zlib.compile

-------------------------
target: host-zlib.install
-------------------------

ptxdist: executing: PATH=/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/lib/wrapper:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/sbin:/usr/local/lib/ptxdist-2019.09.0/bin:/usr/local/lib/ptxdist-2014.12.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PKGCONFIG_WHITELIST_HOST='' PKGCONFIG_WHITELIST_TARGET='' PKGCONFIG_WHITELIST_SRC='host-zlib' SYSROOT='/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host' V=0 VERBOSE= KBUILD_BUILD_TIMESTAMP=2019-09-01T00:00:00+00:00 KBUILD_BUILD_USER=ptxdist KBUILD_BUILD_HOST=ptxdist   make -C /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/zlib-1.2.11 DESTDIR="/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11" INSTALL_ROOT="/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11" install -j1
make[1]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/zlib-1.2.11'
rm -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/lib/libz.a
cp libz.a /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/lib
chmod 644 /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/lib/libz.a
rm -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/share/man/man3/zlib.3
cp zlib.3 /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/share/man/man3
chmod 644 /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/share/man/man3/zlib.3
rm -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/lib/pkgconfig/zlib.pc
cp zlib.pc /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/lib/pkgconfig
chmod 644 /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/lib/pkgconfig/zlib.pc
rm -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/include/zlib.h /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/include/zconf.h
cp zlib.h zconf.h /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/include
chmod 644 /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/include/zlib.h /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/host-zlib-1.2.11/include/zconf.h
make[1]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-host/zlib-1.2.11'
finished target host-zlib.install

------------------------------
target: host-zlib.install.pack
------------------------------

finished target host-zlib.install.pack

------------------------
target: host-zlib.report
------------------------

Copy licenses for package: 'osi-conform/host-zlib'...
finished target host-zlib.report

------------------------------
target: host-zlib.install.post
------------------------------

finished target host-zlib.install.post

-----------------------------------
target: cross-binutils.extract.post
-----------------------------------

pkg_patch_autogen: '<none>'

finished target cross-binutils.extract.post

---------------------------------------------------------------
target: cross-binutils.863ccd1efebaeabc59323dc3631bc2a6.cfghash
---------------------------------------------------------------

finished target cross-binutils.863ccd1efebaeabc59323dc3631bc2a6.cfghash

------------------------------
target: cross-binutils.prepare
------------------------------

pkg_deprecated_builddir="/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build"

ptxdist: executing: PATH=/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-cross/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-cross/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sbin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-target/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/lib/wrapper:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/sbin:/usr/local/lib/ptxdist-2019.09.0/bin:/usr/local/lib/ptxdist-2014.12.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PKGCONFIG_WHITELIST_HOST='zlib' PKGCONFIG_WHITELIST_TARGET='' PKGCONFIG_WHITELIST_SRC='cross-binutils' SYSROOT='/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-cross' V=0 VERBOSE= KBUILD_BUILD_TIMESTAMP=2019-09-01T00:00:00+00:00 KBUILD_BUILD_USER=ptxdist KBUILD_BUILD_HOST=ptxdist PTXDIST_ICECC= enable_option_checking=fatal enable_maintainer_mode=no enable_static=no CC="gcc" CXX="g++" PYTHONPATH="/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/lib/python2.7/site-packages" CFLAGS="-ggdb3 -O2" CXXFLAGS="-ggdb3 -O2" ../binutils-2.32/configure --build=x86_64-host-linux-gnu --host=x86_64-host-linux-gnu --target=arm-v7a-linux-gnueabihf --prefix=/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized --with-build-sysroot=/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-cross/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-arm-v7a-linux-gnueabihf --with-sysroot=/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-arm-v7a-linux-gnueabihf --with-lib-path="=/../arm-v7a-linux-gnueabihf/lib:=/lib:=/usr/lib" --enable-gold --enable-ld=default --disable-werror --disable-nls --enable-threads --enable-plugins

checking build system type... x86_64-host-linux-gnu
checking host system type... x86_64-host-linux-gnu
checking target system type... arm-v7a-linux-gnueabihf
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... /usr/local/lib/ptxdist-2019.09.0/bin/sed
checking for gawk... gawk
checking for x86_64-host-linux-gnu-gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking whether g++ accepts -static-libstdc++ -static-libgcc... yes
checking for x86_64-host-linux-gnu-gnatbind... no
checking for gnatbind... no
checking for x86_64-host-linux-gnu-gnatmake... no
checking for gnatmake... no
checking whether compiler driver understands Ada... no
checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
checking for objdir... .libs
checking for isl 0.15 or later... no
required isl version is 0.15 or later
checking for default BUILD_CONFIG... 
checking for --enable-vtable-verify... no
checking for bison... bison -y
checking for bison... bison
checking for gm4... no
checking for gnum4... no
checking for m4... m4
checking for flex... flex
checking for flex... flex
checking for makeinfo... makeinfo
checking for expect... no
checking for runtest... no
checking for x86_64-host-linux-gnu-ar... no
checking for ar... ar
checking for x86_64-host-linux-gnu-as... no
checking for as... as
checking for x86_64-host-linux-gnu-dlltool... no
checking for dlltool... no
checking for x86_64-host-linux-gnu-ld... no
checking for ld... ld
checking for x86_64-host-linux-gnu-lipo... no
checking for lipo... no
checking for x86_64-host-linux-gnu-nm... no
checking for nm... nm
checking for x86_64-host-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for x86_64-host-linux-gnu-strip... no
checking for strip... strip
checking for x86_64-host-linux-gnu-windres... no
checking for windres... no
checking for x86_64-host-linux-gnu-windmc... no
checking for windmc... no
checking for x86_64-host-linux-gnu-objcopy... no
checking for objcopy... objcopy
checking for x86_64-host-linux-gnu-objdump... no
checking for objdump... objdump
checking for x86_64-host-linux-gnu-readelf... no
checking for readelf... readelf
checking for arm-v7a-linux-gnueabihf-cc... no
checking for arm-v7a-linux-gnueabihf-gcc... arm-v7a-linux-gnueabihf-gcc
checking for arm-v7a-linux-gnueabihf-c++... no
checking for arm-v7a-linux-gnueabihf-g++... no
checking for arm-v7a-linux-gnueabihf-cxx... no
checking for arm-v7a-linux-gnueabihf-gxx... no
checking for arm-v7a-linux-gnueabihf-gcc... arm-v7a-linux-gnueabihf-gcc
checking for arm-v7a-linux-gnueabihf-gfortran... no
checking for arm-v7a-linux-gnueabihf-gccgo... no
checking for arm-v7a-linux-gnueabihf-ar... no
checking for arm-v7a-linux-gnueabihf-as... no
checking for arm-v7a-linux-gnueabihf-dlltool... no
checking for arm-v7a-linux-gnueabihf-ld... no
checking for arm-v7a-linux-gnueabihf-lipo... no
checking for arm-v7a-linux-gnueabihf-nm... no
checking for arm-v7a-linux-gnueabihf-objcopy... no
checking for arm-v7a-linux-gnueabihf-objdump... no
checking for arm-v7a-linux-gnueabihf-ranlib... no
checking for arm-v7a-linux-gnueabihf-readelf... no
checking for arm-v7a-linux-gnueabihf-strip... no
checking for arm-v7a-linux-gnueabihf-windres... no
checking for arm-v7a-linux-gnueabihf-windmc... no
checking where to find the target ar... just compiled
checking where to find the target as... just compiled
checking where to find the target cc... pre-installed
checking where to find the target c++... pre-installed
checking where to find the target c++ for libstdc++... pre-installed
checking where to find the target dlltool... just compiled
checking where to find the target gcc... pre-installed
checking where to find the target gfortran... pre-installed
checking where to find the target gccgo... pre-installed
checking where to find the target ld... just compiled
checking where to find the target lipo... pre-installed
checking where to find the target nm... just compiled
checking where to find the target objcopy... just compiled
checking where to find the target objdump... just compiled
checking where to find the target ranlib... just compiled
checking where to find the target readelf... just compiled
checking where to find the target strip... just compiled
checking where to find the target windres... just compiled
checking where to find the target windmc... just compiled
checking whether to enable maintainer-specific portions of Makefiles... no
configure: creating ./config.status
config.status: creating Makefile
finished target cross-binutils.prepare

------------------------------
target: cross-binutils.compile
------------------------------

ptxdist: executing: PATH=/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-cross/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-cross/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sbin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-target/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/lib/wrapper:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/sbin:/usr/local/lib/ptxdist-2019.09.0/bin:/usr/local/lib/ptxdist-2014.12.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PKGCONFIG_WHITELIST_HOST='zlib' PKGCONFIG_WHITELIST_TARGET='' PKGCONFIG_WHITELIST_SRC='cross-binutils' SYSROOT='/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-cross' V=0 VERBOSE= KBUILD_BUILD_TIMESTAMP=2019-09-01T00:00:00+00:00 KBUILD_BUILD_USER=ptxdist KBUILD_BUILD_HOST=ptxdist  make -C /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build  -j16  

make[1]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build'
make[2]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build'
make[2]: Nothing to be done for 'all-target'.
mkdir -p -- ./zlib
mkdir -p -- ./intl
Configuring in ./zlib
Configuring in ./intl
mkdir -p -- ./libiberty
Configuring in ./libiberty
mkdir -p -- ./etc
Configuring in ./etc
configure: creating cache ./config.cache
configure: creating cache ./config.cache
checking for x86_64-host-linux-gnu-gcc... gcc
configure: creating cache ./config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for makeinfo... makeinfo --split-size=5000000
checking build system type... checking for perl... perl
configure: creating cache ./config.cache
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
checking whether the C compiler works... configure: updating cache ./config.cache
x86_64-host-linux-gnu
checking host system type... checking build system type... configure: creating ./config.status
yes
checking for C compiler default output file name... a.out
checking for suffix of executables... x86_64-host-linux-gnu
checking target system type... x86_64-host-linux-gnu
checking host system type... x86_64-host-linux-gnu
checking for x86_64-host-linux-gnu-ar... ar
checking for x86_64-host-linux-gnu-ranlib... ranlib
checking whether to install libiberty headers and static library... no
configure: target_header_dir = 
checking for x86_64-host-linux-gnu-gcc... gcc
arm-v7a-linux-gnueabihf
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
checking whether build environment is sane... 
yes
checking whether we are cross compiling... checking for a thread-safe mkdir -p... /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
config.status: creating Makefile
no
checking for suffix of object files... checking whether to enable maintainer-specific portions of Makefiles... no
checking for x86_64-host-linux-gnu-gcc... gcc
checking whether the C compiler works... o
checking whether we are using the GNU C compiler... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... checking whether the C compiler works... make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/etc'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/etc'

checking whether we are cross compiling... none needed
checking how to run the C preprocessor... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... no
checking for suffix of object files... gcc -E

checking whether we are cross compiling... o
checking whether we are using the GNU C compiler... checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... yes
/usr/bin/grep -E
checking whether gcc accepts -g... checking for ANSI C header files... no
checking for suffix of object files... yes
checking for gcc option to accept ISO C89... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... none needed
checking how to run the C preprocessor... yes
checking for gcc option to accept ISO C89... gcc -E
yes
checking for sys/types.h... checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... none needed
/usr/bin/grep -E
checking for ANSI C header files... checking whether gcc understands -c and -o together... yes
checking for sys/stat.h... yes
checking for style of include used by make... GNU
checking dependency style of gcc... yes
checking for stdlib.h... gcc3
checking how to print strings... yes
yes
checking for sys/types.h... checking for string.h... printf
checking for a sed that does not truncate output... /usr/local/lib/ptxdist-2019.09.0/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... yes
yes
checking for sys/stat.h... checking for memory.h... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
checking for x86_64-host-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for x86_64-host-linux-gnu-ar... ar
checking for x86_64-host-linux-gnu-strip... no
checking for strip... strip
checking for x86_64-host-linux-gnu-ranlib... ranlib
checking command to parse nm output from gcc object... yes
yes
checking for stdlib.h... checking for strings.h... yes
checking for string.h... yes
checking for inttypes.h... ok
yes
checking for memory.h... yes
checking how to run the C preprocessor... checking for stdint.h... yes
gcc -E
checking for strings.h... yes
checking for unistd.h... checking for ANSI C header files... yes
checking for inttypes.h... yes
checking minix/config.h usability... yes
checking for stdint.h... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for unistd.h... yes
checking for sys/types.h... yes
checking whether make sets $(MAKE)... yes
checking minix/config.h usability... yes
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
checking whether NLS is requested... no
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... yes
/usr/bin/msgmerge
checking for sys/stat.h... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... checking build system type... yes
checking for stdlib.h... x86_64-host-linux-gnu
checking host system type... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... yes
checking for string.h... no
x86_64-host-linux-gnu
checking for x86_64-host-linux-gnu-ranlib... ranlib
checking for library containing strerror... checking whether gcc supports -W... yes
checking whether gcc supports -Wall... yes
checking for memory.h... none required
checking for an ANSI C-conforming const... yes
checking whether gcc supports -Wwrite-strings... yes
checking for inline... yes
yes
checking whether gcc supports -Wc++-compat... checking for strings.h... inline
checking for off_t... yes
checking whether gcc supports -Wstrict-prototypes... yes
checking for inttypes.h... yes
checking whether gcc supports -Wshadow=local... yes
yes
checking whether gcc supports -pedantic ... checking for stdint.h... yes
checking for size_t... yes
checking whether gcc and cc understand -c and -o together... yes
checking for unistd.h... yes
yes
checking for dlfcn.h... checking for working alloca.h... yes
checking for an ANSI C-conforming const... yes
checking for alloca... yes
checking for inline... yes
checking for objdir... .libs
inline
checking whether byte ordering is bigendian... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... checking if gcc supports -fno-rtti -fno-exceptions... yes
no
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... checking for getpagesize... checking for sys/file.h... yes
checking if gcc static flag -static works... yes
yes
checking for working mmap... checking for sys/param.h... yes
checking for limits.h... yes
checking for stdlib.h... (cached) yes
yes
checking if gcc supports -c -o file.o... checking for malloc.h... yes
checking for string.h... (cached) yes
yes
checking for unistd.h... (cached) yes
checking whether we are using the GNU C Library 2.1 or newer... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... checking for strings.h... (cached) yes
yes
checking whether integer division by zero raises SIGFPE... checking for sys/time.h... yes
checking whether -lc should be explicitly linked in... yes
checking for time.h... yes
checking for sys/resource.h... no
checking dynamic linker characteristics... yes
checking for inttypes.h... yes
checking for sys/stat.h... (cached) yes
checking for sys/mman.h... yes
yes
checking for stdint.h... checking for fcntl.h... yes
checking for alloca.h... yes
checking for unsigned long long... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C preprocessor... gcc -E
checking for sys/pstat.h... no
checking for sys/sysmp.h... yes
checking for inttypes.h... checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
no
checking for sys/sysinfo.h... checking for sys/param.h... yes
yes
checking for machine/hal_sysinfo.h... checking whether the inttypes.h PRIxNN macros are broken... no
checking for sys/table.h... no
checking for ld used by GCC... yes
checking for getpagesize... ld
checking if the linker (ld) is GNU ld... no
yes
checking for shared library run path origin... checking for sys/sysctl.h... no
checking for sys/systemcfg.h... yes
checking for working mmap... no
checking for stdint.h... (cached) yes
done
checking for stdio_ext.h... checking argz.h usability... yes
checking for process.h... yes
checking argz.h presence... no
checking for sys/prctl.h... yes
checking for argz.h... yes
yes
checking for sys/wait.h that is POSIX.1 compatible... checking limits.h usability... yes
checking for memcpy... yes
checking whether time.h and sys/time.h may both be included... yes
checking limits.h presence... yes
checking for strerror... yes
checking for limits.h... yes
yes
checking whether errno must be declared... checking locale.h usability... no
checking size of int... yes
checking for unistd.h... (cached) yes
yes
checking locale.h presence... yes
checking for locale.h... yes
checking nl_types.h usability... configure: updating cache ./config.cache
checking that generated files are newer than configure... done
configure: creating ./config.status
4
checking size of long... yes
checking nl_types.h presence... yes
checking for nl_types.h... yes
checking malloc.h usability... 8
checking size of size_t... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking stddef.h usability... 8
checking for long long... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for feof_unlocked... yes
yes
checking size of long long... checking for fgets_unlocked... yes
checking for getc_unlocked... 8
checking for a 64-bit type... uint64_t
checking for intptr_t... yes
checking for getcwd... yes
checking for getegid... yes
checking for uintptr_t... yes
checking for geteuid... yes
checking for getgid... yes
checking for ssize_t... yes
checking for getuid... yes
checking for mempcpy... yes
checking for pid_t... config.status: creating Makefile
config.status: executing depfiles commands
yes
checking for munmap... yes
checking for putenv... config.status: executing libtool commands
yes
checking for library containing strerror... yes
checking for setenv... none required
checking for asprintf... make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/zlib'
yes
checking for setlocale...   CC       libz_a-adler32.o
  CC       libz_a-compress.o
  CC       libz_a-crc32.o
yes
  CC       libz_a-deflate.o
  CC       libz_a-gzread.o
  CC       libz_a-gzwrite.o
  CC       libz_a-gzlib.o
  CC       libz_a-gzclose.o
  CC       libz_a-infback.o
  CC       libz_a-inffast.o
  CC       libz_a-inftrees.o
checking for atexit...   CC       libz_a-inflate.o
  CC       libz_a-trees.o
  CC       libz_a-uncompr.o
yes
yes
true "AR_FLAGS=rc" "CC_FOR_BUILD=gcc" "CFLAGS=-ggdb3 -O2" "CXXFLAGS=-ggdb3 -O2" "CFLAGS_FOR_BUILD=-ggdb3 -O2" "CFLAGS_FOR_TARGET=-g -O2" "INSTALL=/usr/local/lib/ptxdist-2019.09.0/bin/install -c" "INSTALL_DATA=/usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644" "INSTALL_PROGRAM=/usr/local/lib/ptxdist-2019.09.0/bin/install -c" "INSTALL_SCRIPT=/usr/local/lib/ptxdist-2019.09.0/bin/install -c" "LDFLAGS=-static-libstdc++ -static-libgcc " "LIBCFLAGS=-ggdb3 -O2" "LIBCFLAGS_FOR_TARGET=-g -O2" "MAKE=make" "MAKEINFO=makeinfo --split-size=5000000 --split-size=5000000 " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/bash" "EXPECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS=" "exec_prefix=/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized" "infodir=/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/info" "libdir=/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/lib" "prefix=/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized" "tooldir=/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf" "AR=ar" "AS=as" "CC=gcc" "CXX=g++" "LD=ld" "LIBCFLAGS=-ggdb3 -O2" "NM=nm" "PICFLAG=" "RANLIB=ranlib" "DESTDIR=" DO=all multi-do # make
  CC       libz_a-zutil.o
checking for stpcpy... checking for basename... yes
checking for strcasecmp... yes
checking for bcmp... yes
checking for strdup... yes
checking for bcopy... yes
checking for strtoul... yes
checking for bsearch... yes
checking for tsearch... yes
checking for bzero... yes
checking for __argz_count... yes
yes
checking for calloc... checking for __argz_stringify... yes
yes
checking for __argz_next... checking for clock... yes
checking for __fsetlocking... yes
checking for ffs... yes
checking for iconv... yes
checking for getcwd...   AR       libz.a
ar: `u' modifier ignored since `D' is the default (see `U')
yes
yes
checking for iconv declaration... checking for getpagesize... make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/zlib'

         extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for nl_langinfo and CODESET... yes
checking for gettimeofday... yes
checking for LC_MESSAGES... yes
checking for index... yes
checking for bison... bison
checking version of bison... 3.4.1, ok
checking whether NLS is requested... no
checking whether to use NLS... no
checking for aclocal... no
checking for autoconf... no
checking for autoheader... no
yes
checking for insque... configure: updating cache ./config.cache
configure: creating ./config.status
yes
checking for memchr... yes
checking for memcmp... config.status: creating Makefile
yes
config.status: creating config.intl
checking for memcpy... config.status: creating config.h
config.status: executing default-1 commands
yes
checking for memmem... make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/intl'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/intl'
mkdir -p -- ./gas
mkdir -p -- ./gold
mkdir -p -- ./ld
Configuring in ./gas
Configuring in ./gold
mkdir -p -- ./binutils
yes
Configuring in ./ld
Configuring in ./binutils
checking for memmove... mkdir -p -- ./gprof
Configuring in ./gprof
yes
checking for mempcpy... yes
checking for memset... yes
checking for mkstemps... yes
checking for putenv... configure: creating cache ./config.cache
configure: creating cache ./config.cache
configure: creating cache ./config.cache
configure: creating cache ./config.cache
yes
checking build system type... checking for random... checking build system type... configure: creating cache ./config.cache
checking build system type... checking build system type... x86_64-host-linux-gnu
checking host system type... x86_64-host-linux-gnu
checking host system type... checking build system type... x86_64-host-linux-gnu
checking host system type... yes
checking for rename... x86_64-host-linux-gnu
checking host system type... x86_64-host-linux-gnu
checking target system type... x86_64-host-linux-gnu
checking target system type... x86_64-host-linux-gnu
checking host system type... x86_64-host-linux-gnu
checking target system type... x86_64-host-linux-gnu
checking target system type... arm-v7a-linux-gnueabihf
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
checking whether build environment is sane... arm-v7a-linux-gnueabihf
x86_64-host-linux-gnu
checking for x86_64-host-linux-gnu-gcc... checking target system type... gcc
yes
yes
arm-v7a-linux-gnueabihf
checking for x86_64-host-linux-gnu-gcc... gcc
checking for rindex... arm-v7a-linux-gnueabihf
checking for x86_64-host-linux-gnu-gcc... gcc
arm-v7a-linux-gnueabihf
checking for a thread-safe mkdir -p... checking for x86_64-host-linux-gnu-gcc... gcc
/usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... checking whether the C compiler works... yes
checking whether make supports nested variables... yes
checking whether the C compiler works... yes
checking for style of include used by make... checking for setenv... GNU
checking for x86_64-host-linux-gnu-gcc... gcc
checking whether the C compiler works... checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... yes
yes
checking for C compiler default output file name... a.out
checking for suffix of executables... checking whether the C compiler works... checking for snprintf... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... 
checking whether we are cross compiling... 
checking whether we are cross compiling... yes
checking for C compiler default output file name... a.out

checking for suffix of executables... checking whether we are cross compiling... yes
no
checking for suffix of object files... checking for sigsetmask... no
checking for suffix of object files... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
o
checking whether we are using the GNU C compiler... checking for stpcpy... yes
checking whether gcc accepts -g... o
checking whether we are using the GNU C compiler... no
checking for suffix of object files... yes
checking whether gcc accepts -g... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... o
checking whether we are using the GNU C compiler... yes
checking for gcc option to accept ISO C89... yes
checking for stpncpy... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking whether gcc accepts -g... none needed
checking whether gcc understands -c and -o together... none needed
checking whether gcc understands -c and -o together... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
yes
checking for library containing strerror... checking for strcasecmp... yes
checking for library containing strerror... none needed
checking whether gcc understands -c and -o together... yes
checking for library containing strerror... yes
checking for library containing strerror... none required
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
checking whether build environment is sane... yes
yes
checking for strchr... none required
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
checking whether build environment is sane... yes
none required
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
checking whether build environment is sane... checking for a thread-safe mkdir -p... yes
checking dependency style of gcc... yes
/usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... none required
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
checking whether build environment is sane... yes
yes
checking for style of include used by make... checking for a thread-safe mkdir -p... GNU
checking whether make supports nested variables... /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for a thread-safe mkdir -p... yes
/usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... checking for a thread-safe mkdir -p... checking dependency style of gcc... /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p
checking for gawk... yes
gawk
checking whether make sets $(MAKE)... checking for strdup... checking for style of include used by make... yes
GNU
checking whether make supports nested variables... yes
checking for style of include used by make... yes
GNU
checking for style of include used by make... checking whether make supports nested variables... checking dependency style of gcc... GNU
yes
checking whether make supports nested variables... checking dependency style of gcc... yes
gcc3
checking how to run the C preprocessor... checking dependency style of gcc... yes
gcc3
checking for strncasecmp... gcc -E
checking whether to enable maintainer-specific portions of Makefiles... no
checking for x86_64-host-linux-gnu-gcc... (cached) gcc
gcc3
checking for x86_64-host-linux-gnu-gcc... (cached) gcc
gcc3
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... gcc3
checking for x86_64-host-linux-gnu-gcc... (cached) gcc
/usr/bin/grep -E
checking for ANSI C header files... checking for x86_64-host-linux-gnu-gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
yes
checking for strndup... checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking how to run the C preprocessor... checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) checking whether we are using the GNU C compiler... none needed
(cached) yes
checking whether gcc understands -c and -o together... checking whether gcc accepts -g... (cached) yes
(cached) checking how to run the C preprocessor... yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking how to run the C preprocessor... checking whether we are using the GNU C++ compiler... yes
checking for strnlen... gcc -E
gcc -E
gcc -E
yes
checking whether g++ accepts -g... yes
checking dependency style of g++... checking for grep that handles long lines and -e... checking for grep that handles long lines and -e... checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep
checking for egrep... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... /usr/bin/grep -E
checking for ANSI C header files... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for strrchr... yes
checking for sys/types.h... gcc3
checking for grep that handles long lines and -e... /usr/bin/grep
checking how to run the C preprocessor... yes
yes
checking for sys/stat.h... checking for strstr... gcc -E
yes
checking for stdlib.h... yes
checking for strtod... checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
yes
checking for sys/types.h... yes
checking for sys/types.h... checking for sys/types.h... yes
checking for string.h... yes
checking for strtol... yes
yes
yes
checking for sys/stat.h... checking for sys/stat.h... checking for sys/stat.h... yes
checking for memory.h... yes
yes
yes
checking for strtoul... yes
checking for stdlib.h... checking for stdlib.h... checking for stdlib.h... yes
checking for strings.h... yes
checking for sys/types.h... yes
yes
yes
yes
checking for string.h... checking for strtoll... checking for string.h... checking for string.h... yes
checking for inttypes.h... yes
checking for sys/stat.h... yes
yes
yes
yes
checking for memory.h... checking for memory.h... checking for memory.h... checking for strtoull... yes
checking for stdint.h... yes
checking for stdlib.h... yes
checking for strings.h... yes
yes
yes
checking for strings.h... checking for strings.h... checking for strverscmp... yes
checking for unistd.h... yes
yes
checking for string.h... yes
yes
checking for inttypes.h... checking for inttypes.h... checking for inttypes.h... yes
checking for tmpnam... yes
checking minix/config.h usability... yes
yes
checking for stdint.h... checking for memory.h... yes
yes
checking for stdint.h... checking for stdint.h... yes
no
checking minix/config.h presence... checking for vasprintf... yes
yes
checking for strings.h... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... checking for unistd.h... yes
yes
checking for unistd.h... checking for unistd.h... yes
yes
checking for vfprintf... checking for inttypes.h... yes
checking minix/config.h usability... yes
checking for dlfcn.h... yes
yes
checking minix/config.h usability... checking minix/config.h usability... yes
yes
checking for vprintf... checking for stdint.h... no
checking minix/config.h presence... no
checking minix/config.h presence... yes
checking for windows.h... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
yes
checking for unistd.h... checking for vsnprintf... no
checking for library containing dlsym... yes
checking how to print strings... yes
checking how to print strings... yes
checking how to print strings... yes
checking minix/config.h usability... yes
checking for vsprintf... printf
checking for a sed that does not truncate output... /usr/local/lib/ptxdist-2019.09.0/bin/sed
printf
checking for a sed that does not truncate output... checking for fgrep... /usr/local/lib/ptxdist-2019.09.0/bin/sed
/usr/bin/grep -F
checking for ld used by gcc... checking for fgrep... printf
checking for a sed that does not truncate output... /usr/bin/grep -F
checking for ld used by gcc... /usr/local/lib/ptxdist-2019.09.0/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... ld
checking if the linker (ld) is GNU ld... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... no
checking minix/config.h presence... -ldl
yes
BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... checking for waitpid... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... 1572864
-r
checking whether the shell understands some XSI constructs... checking for x86_64-host-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for x86_64-host-linux-gnu-ar... ar
checking for x86_64-host-linux-gnu-strip... checking for ld option to reload object files... -r
no
checking for x86_64-host-linux-gnu-objdump... checking for strip... objdump
checking how to recognize dependent libraries... strip
checking for x86_64-host-linux-gnu-ranlib... ranlib
pass_all
checking for x86_64-host-linux-gnu-ar... checking command to parse nm output from gcc object... ar
checking for x86_64-host-linux-gnu-strip... no
checking for strip... strip
checking for x86_64-host-linux-gnu-ranlib... ranlib
checking command to parse nm output from gcc object... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
checking for x86_64-host-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for x86_64-host-linux-gnu-ar... ar
checking for x86_64-host-linux-gnu-strip... no
checking for strip... strip
checking for x86_64-host-linux-gnu-ranlib... ranlib
checking command to parse nm output from gcc object... checking for x86_64-host-linux-gnu-nm... nm
checking for x86_64-host-linux-gnu-gcc... (cached) gcc
yes
checking for setproctitle... yes
checking how to print strings... checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking dependency style of gcc... (cached) gcc3
printf
checking for a sed that does not truncate output... /usr/local/lib/ptxdist-2019.09.0/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... ok
no
checking whether alloca needs Cray hooks... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... no
checking stack direction for C alloca... ok
ok
checking whether we are using the GNU C++ compiler... checking for dlfcn.h... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... checking for dlfcn.h... checking for dlfcn.h... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
checking for x86_64-host-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
yes
checking for x86_64-host-linux-gnu-ar... checking whether g++ accepts -g... ar
checking for x86_64-host-linux-gnu-strip... no
checking for strip... strip
checking for x86_64-host-linux-gnu-ranlib... ranlib
checking command to parse nm output from gcc object... -1
checking for vfork.h... yes
checking for objdir... .libs
no
yes
checking dependency style of g++... checking for fork... yes
checking for objdir... yes
checking for objdir... .libs
.libs
yes
checking for vfork... ok
gcc3
checking for bison... bison -y
checking for x86_64-host-linux-gnu-ranlib... ranlib
checking whether ln -s works... yes
checking whether NLS is requested... no
checking whether NLS is requested... no
checking if gcc supports -fno-rtti -fno-exceptions... checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking if gcc supports -fno-rtti -fno-exceptions... checking if gcc supports -fno-rtti -fno-exceptions... checking for xgettext... checking for dlfcn.h... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking for working fork... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... checking whether byte ordering is bigendian... yes
checking if gcc static flag -static works... yes
checking for objdir... yes
checking if gcc static flag -static works... .libs
yes
checking if gcc static flag -static works... yes
checking for working vfork... (cached) yes
checking for _doprnt... yes
checking if gcc supports -c -o file.o... no
checking whether static linking works... checking if gcc supports -fno-rtti -fno-exceptions... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... no
checking for sys_errlist... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking if gcc static flag -static works... yes
checking whether -lc should be explicitly linked in... yes
yes
checking for gcc >= 4.1... checking for sys_nerr... yes
no
checking dynamic linker characteristics... no
checking dynamic linker characteristics... no
checking dynamic linker characteristics... checking whether gcc supports -fmerge-constants... yes
checking for sys_siglist... yes
checking if gcc supports -c -o file.o... yes
checking for thread support... yes
checking for glibc >= 2.4... yes
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... checking for external symbol _system_configuration... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for dlfcn.h... (cached) yes
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... checking for windows.h... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for dlfcn.h... (cached) yes
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking whether -lc should be explicitly linked in... checking for windows.h... yes
checking for omp support... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for dlfcn.h... (cached) yes
checking for windows.h... no
checking for __fsetlocking... yes
no
checking dynamic linker characteristics... no
checking for library containing dlsym... no
checking for library containing dlsym... checking for glibc >= 2.9... no
yes
checking for library containing dlsym... checking for canonicalize_file_name... yes
checking for -frandom-seed support... yes
checking for glibc ifunc support... yes
checking for dup3... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
-ldl
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... -ldl
checking for special C compiler options needed for large files... no
checking how to run the C++ preprocessor... checking for _FILE_OFFSET_BITS value needed for large files... -ldl
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... yes
no
no
checking for setmode... checking how to compare bootstrapped objects... checking for getrlimit... g++ -E
cmp --ignore-initial=16 $$f1 $$f2
no
both
yes
no
checking whether NLS is requested... no
checking whether NLS is requested... no
checking for getrusage... checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144
checking whether byte ordering is bigendian... checking for msgmerge... Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144
checking for bison... bison -y
checking for flex... flex
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144
/usr/bin/msgmerge
checking sys/mman.h usability... checking lex output file root... lex.yy
checking lex library... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking sys/gmon_out.h usability... checking for getsysinfo... checking for ld used by g++... ld -m elf_x86_64
checking if the linker (ld -m elf_x86_64) is GNU ld... yes
yes
checking sys/mman.h presence... checking whether the g++ linker (ld -m elf_x86_64) supports shared libraries... yes
checking sys/gmon_out.h presence... yes
checking for sys/mman.h... yes
yes
checking for chsize... no
checking for gettimeofday... (cached) yes
yes
checking for sys/gmon_out.h... yes
checking for a known getopt prototype in unistd.h... no
checking for on_exit... checking for bison... bison -y
checking for flex... flex
yes
checking for library containing fabs... checking lex output file root... lex.yy
checking lex library... no
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... checking for mmap... yes
checking for pipe2... yes
checking if g++ static flag -static works... yes
checking for link... yes
checking for psignal... -lm
yes
checking if g++ supports -c -o file.o... yes
checking for pread... yes
checking for pstat_getdynamic... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for dlfcn.h... (cached) yes
checking for windows.h... yes
checking for ftruncate... no
configure: updating cache ./config.cache
checking for pstat_getstatic... checking that generated files are newer than configure... done
configure: creating ./config.status
yes
no
checking for ffsll... checking for library containing dlsym... no
checking for realpath... yes
checking mremap with MREMAP_MAYMOVE... yes
checking for setrlimit... -ldl
yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... checking for a sed that does not truncate output... /usr/local/lib/ptxdist-2019.09.0/bin/sed
checking whether gcc is Clang... no
checking whether pthreads work with -pthread... no
yes
checking for sbrk... yes
checking for joinable pthread attribute... yes
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144
checking for LC_MESSAGES... checking for spawnve... -lfl
checking whether yytext is a pointer... PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking whether NLS is requested... no
checking whether NLS is requested... no
checking for msgfmt... no
/usr/bin/msgfmt
checking for gmsgfmt... checking for spawnvpe... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
yes
checking whether basename is declared... checking for bison... bison -y
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... no
checking for strerror... -lfl
checking whether yytext is a pointer... yes
yes
checking for strsignal... checking whether ffs is declared... yes
checking for sysconf... yes
checking whether asprintf is declared... yes
checking for sysctl... yes
yes
checking whether NLS is requested... no
checking whether NLS is requested... no
checking for msgfmt... checking whether vasprintf is declared... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
yes
checking for sysmp... checking whether to enable maintainer-specific portions of Makefiles... no
checking for x86_64-host-linux-gnu-ranlib... (cached) ranlib
checking size of long... yes
checking whether snprintf is declared... no
checking for table... yes
8
checking for long long... checking whether vsnprintf is declared... no
checking for times... yes
checking whether NLS is requested... no
checking whether NLS is requested... no
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
yes
config.status: creating Makefile
yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether strverscmp is declared... checking for wait3... checking for string.h... (cached) yes
config.status: creating po/Makefile.in
checking for stdlib.h... (cached) yes
checking for memory.h... (cached) yes
yes
checking for strings.h... (cached) yes
checking size of long long... config.status: creating gconfig.h
checking for unistd.h... (cached) yes
yes
config.status: executing depfiles commands
checking errno.h usability... checking for wait4... yes
yes
yes
checking errno.h presence... checking whether basename is declared... 8
yes
checking for errno.h... yes
checking for string.h... (cached) yes
config.status: executing libtool commands
checking for sys/types.h... (cached) yes
checking how to run the C++ preprocessor... checking for strings.h... (cached) yes
checking limits.h usability... checking for stdlib.h... (cached) yes
config.status: executing default-1 commands
checking for unistd.h... (cached) yes
checking fcntl.h usability... config.status: creating po/POTFILES
yes
config.status: creating po/Makefile
g++ -E
-lfl
checking whether yytext is a pointer... checking whether ffs is declared... yes
checking limits.h presence... yes
checking for limits.h... yes
yes
checking fcntl.h presence... checking locale.h usability... checking unordered_set usability... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking whether asprintf is declared... yes
checking locale.h presence... yes
checking for locale.h... yes
yes
checking sys/file.h presence... checking time.h usability... yes
checking for sys/file.h... yes
checking limits.h usability... yes
checking whether vasprintf is declared... yes
checking limits.h presence... yes
checking for limits.h... yes
checking locale.h usability... yes
checking whether snprintf is declared... yes
checking unordered_set presence... yes
checking for unordered_set... yes
checking unordered_map usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for sys/stat.h... (cached) yes
checking whether string.h and strings.h may both be included... yes
checking whether compiling a cross-assembler... yes
checking for size_t... yes
yes
checking locale.h presence... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking how to compare bootstrapped objects... yes
checking unordered_map presence... checking whether vsnprintf is declared... cmp --ignore-initial=16 $$f1 $$f2
checking for string.h... yes
(cached) checking for locale.h... yes
yes
checking sys/param.h usability... checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
yes
checking for unordered_map... yes
checking elf-hints.h usability... yes
checking tr1/unordered_set usability... checking whether calloc is declared... yes
checking sys/param.h presence... no
checking elf-hints.h presence... yes
checking for sys/param.h... yes
yes
checking for working alloca.h... checking wchar.h usability... no
checking for elf-hints.h... no
checking limits.h usability... yes
checking whether getenv is declared... yes
checking for alloca... yes
checking wchar.h presence... yes
checking limits.h presence... yes
checking for wchar.h... yes
yes
checking for inline... checking for sys/wait.h that is POSIX.1 compatible... yes
yes
checking for limits.h... yes
checking whether getopt is declared... checking locale.h usability... yes
checking tr1/unordered_set presence... inline
checking for unlink... yes
checking whether string.h and strings.h may both be included... yes
checking for tr1/unordered_set... yes
checking tr1/unordered_map usability... yes
checking locale.h presence... yes
yes
yes
checking for size_t... checking for sbrk... yes
checking for locale.h... yes
checking whether malloc is declared... checking sys/param.h usability... yes
yes
checking for setlocale... checking whether realloc is declared... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
yes
checking fcntl.h usability... checking for strsignal... yes
checking tr1/unordered_map presence... yes
checking for working alloca.h... yes
checking whether sbrk is declared... yes
checking for tr1/unordered_map... yes
checking ext/hash_map usability... yes
checking for LC_MESSAGES... yes
checking for alloca... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking whether strtol is declared... yes
checking for working assert macro... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for getpagesize... yes
checking sys/file.h presence... yes
checking whether declaration is required for errno... yes
checking whether strtoul is declared... yes
checking for sys/file.h... yes
checking sys/time.h usability... yes
checking for working mmap... no
checking for a known getopt prototype in unistd.h... yes
yes
checking sys/time.h presence... checking whether strtoll is declared... yes
checking for sys/time.h... yes
checking for sys/stat.h... (cached) yes
yes
checking whether declaration is required for environ... checking whether string.h and strings.h may both be included... yes
yes
checking for sbrk... checking whether strtoull is declared... yes
checking for glob... no
checking whether declaration is required for ffs... yes
checking for utimes... yes
yes
checking for mkstemp... checking whether strverscmp is declared... no
checking whether declaration is required for free... yes
checking ext/hash_map presence... yes
yes
checking for setmode... checking for realpath... yes
checking whether strnlen is declared... no
checking whether declaration is required for malloc... yes
checking for ext/hash_map... yes
no
yes
checking ext/hash_set usability... checking for getc_unlocked... checking for sbrk... yes
checking whether canonicalize_file_name must be declared... yes
no
checking whether declaration is required for sbrk... yes
checking for strcoll... checking for setlocale... no
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
yes
checking for sys/param.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... checking for setlocale... yes
no
checking whether declaration is required for strstr... checking for waitpid... yes
checking for mkstemp... yes
no
checking for open... checking whether free is declared... yes
checking for working strncmp... yes
checking for mkdtemp... yes
checking for lseek... yes
yes
checking for mbstate_t... checking whether getenv is declared... yes
yes
checking for library containing frexp... yes
configure: updating cache ./config.cache
checking for close... configure: creating ./config.status
yes
checking whether malloc is declared... none required
checking for LC_MESSAGES... yes
checking for dirent.h that defines DIR... yes
yes
checking for time_t in time.h... yes
checking ext/hash_set presence... checking whether mempcpy is declared... yes
checking for library containing opendir... yes
checking for time_t in sys/types.h... none required
checking for stdlib.h... (cached) yes
yes
checking for ext/hash_set... yes
yes
checking byteswap.h usability... checking for unistd.h... (cached) yes
config.status: creating Makefile
yes
checking for a known getopt prototype in unistd.h... checking whether realloc is declared... checking for sys/param.h... (cached) yes
checking for getpagesize... config.status: creating testsuite/Makefile
yes
checking for utime.h... config.status: creating config.h
yes
checking for working mmap... yes
checking byteswap.h presence... config.status: executing default commands
yes
yes
checking for byteswap.h... yes
checking for windows.h... (cached) no
checking for dlfcn.h... (cached) yes
checking for library containing dlopen... yes
checking whether stpcpy is declared... checking whether asprintf is declared... none required
checking for mallinfo... yes
yes
mkdir -p -- ./opcodes
checking whether strstr is declared... make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/libiberty'
if [ x"" != x ] && [ ! -d pic ]; then \
  mkdir pic; \
else true; fi
if [ x"" != x ] && [ ! -d noasan ]; then \
  mkdir noasan; \
else true; fi
Configuring in ./opcodes
echo ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./rust-demangle.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o > required-list
checking whether environ is declared... mkdir -p -- ./bfd
yes
checking for library containing dlopen... Configuring in ./bfd
touch stamp-picdir
touch stamp-noasandir
yes
checking for posix_fallocate... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/regex.c -o pic/regex.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/cplus-dem.c -o pic/cplus-dem.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/cp-demangle.c -o pic/cp-demangle.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/md5.c -o pic/md5.o; \
else true; fi
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/libiberty/testsuite'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/libiberty/testsuite'
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/sha1.c -o pic/sha1.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/alloca.c -o pic/alloca.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/argv.c -o pic/argv.o; \
else true; fi
yes
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/cplus-dem.c -o noasan/cplus-dem.o; \
else true; fi
none required
checking for a known getopt prototype in unistd.h... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/regex.c -o noasan/regex.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/choose-temp.c -o pic/choose-temp.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/concat.c -o pic/concat.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/cp-demint.c -o pic/cp-demint.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/md5.c -o noasan/md5.o; \
else true; fi
checking whether fprintf is declared... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/cp-demangle.c -o noasan/cp-demangle.o; \
else true; fi
checking whether vsnprintf is declared... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/sha1.c -o noasan/sha1.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/alloca.c -o noasan/alloca.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/argv.c -o noasan/argv.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/cplus-dem.c -o cplus-dem.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/regex.c -o regex.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/choose-temp.c -o noasan/choose-temp.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/concat.c -o noasan/concat.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/cp-demint.c -o noasan/cp-demint.o; \
else true; fi
yes
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/md5.c -o md5.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/cp-demangle.c -o cp-demangle.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/sha1.c -o sha1.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/alloca.c -o alloca.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/argv.c -o argv.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/concat.c -o concat.o
checking for fallocate... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/choose-temp.c -o choose-temp.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/cp-demint.c -o cp-demint.o
yes
yes
yes
checking whether strstr is declared... checking whether getc_unlocked is declared... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/crc32.c -o pic/crc32.o; \
else true; fi
checking whether asprintf is declared... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/crc32.c -o noasan/crc32.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/d-demangle.c -o pic/d-demangle.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/dwarfnames.c -o pic/dwarfnames.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/dyn-string.c -o pic/dyn-string.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/d-demangle.c -o noasan/d-demangle.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/dwarfnames.c -o noasan/dwarfnames.o; \
else true; fi
checking whether free is declared... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/crc32.c -o crc32.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/fdmatch.c -o pic/fdmatch.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/dyn-string.c -o noasan/dyn-string.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/d-demangle.c -o d-demangle.o
yes
checking for readv... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/dwarfnames.c -o dwarfnames.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/fdmatch.c -o noasan/fdmatch.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/dyn-string.c -o dyn-string.o
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/fibheap.c -o pic/fibheap.o; \
else true; fi
checking for struct tm.tm_gmtoff in time.h... checking whether getenv is declared... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/fdmatch.c -o fdmatch.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/filename_cmp.c -o pic/filename_cmp.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/fibheap.c -o noasan/fibheap.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/filename_cmp.c -o noasan/filename_cmp.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/floatformat.c -o pic/floatformat.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/fnmatch.c -o pic/fnmatch.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/fibheap.c -o fibheap.o
checking for sysconf... checking whether sbrk is declared... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/filename_cmp.c -o filename_cmp.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/floatformat.c -o noasan/floatformat.o; \
else true; fi
In file included from /usr/include/string.h:494,
                 from ../../binutils-2.32/libiberty/dyn-string.c:38:
In function 'strncpy',
    inlined from 'dyn_string_insert_cstr' at ../../binutils-2.32/libiberty/dyn-string.c:280:3:
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/fnmatch.c -o noasan/fnmatch.o; \
else true; fi
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: '__builtin_strncpy' output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation]
  106 |   return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest));
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../binutils-2.32/libiberty/dyn-string.c: In function 'dyn_string_insert_cstr':
../../binutils-2.32/libiberty/dyn-string.c:272:16: note: length computed here
  272 |   int length = strlen (src);
      |                ^~~~~~~~~~~~
yes
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/floatformat.c -o floatformat.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/fopen_unlocked.c -o pic/fopen_unlocked.o; \
else true; fi
yes
checking for struct stat.st_mtim.tv_sec in sys/stat.h... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/getopt.c -o pic/getopt.o; \
else true; fi
checking whether sbrk is declared... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/fnmatch.c -o fnmatch.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/getopt1.c -o pic/getopt1.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/fopen_unlocked.c -o noasan/fopen_unlocked.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/getopt.c -o noasan/getopt.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/fopen_unlocked.c -o fopen_unlocked.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/getopt1.c -o noasan/getopt1.o; \
else true; fi
yes
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/getopt.c -o getopt.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/getopt1.c -o getopt1.o
yes
checking whether getenv is declared... checking for times... configure: creating cache ./config.cache
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/getpwd.c -o pic/getpwd.o; \
else true; fi
configure: creating cache ./config.cache
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/getruntime.c -o pic/getruntime.o; \
else true; fi
checking whether snprintf is declared... checking build system type... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/hashtab.c -o pic/hashtab.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/getpwd.c -o noasan/getpwd.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/hex.c -o pic/hex.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/getruntime.c -o noasan/getruntime.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/hashtab.c -o noasan/hashtab.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/getpwd.c -o getpwd.o
checking build system type... x86_64-host-linux-gnu
checking host system type... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/hex.c -o noasan/hex.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/getruntime.c -o getruntime.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/hashtab.c -o hashtab.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/lbasename.c -o pic/lbasename.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/hex.c -o hex.o
yes
x86_64-host-linux-gnu
checking host system type... x86_64-host-linux-gnu
checking target system type... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/lbasename.c -o noasan/lbasename.o; \
else true; fi
checking whether environ is declared... arm-v7a-linux-gnueabihf
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/lbasename.c -o lbasename.o
x86_64-host-linux-gnu
checking target system type... checking for x86_64-host-linux-gnu-gcc... gcc
arm-v7a-linux-gnueabihf
checking for x86_64-host-linux-gnu-gcc... gcc
checking whether the C compiler works... yes
checking whether stpcpy is declared... checking whether the C compiler works... yes
checking for struct stat.st_mtim.tv_nsec in sys/stat.h... yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/lrealpath.c -o pic/lrealpath.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/make-relative-prefix.c -o pic/make-relative-prefix.o; \
else true; fi
checking for mkdtemp... yes
checking for C compiler default output file name... a.out
yes
checking for C compiler default output file name... a.out
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/make-temp-file.c -o pic/make-temp-file.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/objalloc.c -o pic/objalloc.o; \
else true; fi
checking for suffix of executables... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/obstack.c -o pic/obstack.o; \
else true; fi
checking for suffix of executables... yes
yes
checking whether ANSI C string concatenation works... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/partition.c -o pic/partition.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/lrealpath.c -o noasan/lrealpath.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/make-relative-prefix.c -o noasan/make-relative-prefix.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/pexecute.c -o pic/pexecute.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/make-temp-file.c -o noasan/make-temp-file.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/objalloc.c -o noasan/objalloc.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/physmem.c -o pic/physmem.o; \
else true; fi
checking whether strnlen is declared... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/lrealpath.c -o lrealpath.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/make-relative-prefix.c -o make-relative-prefix.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/obstack.c -o noasan/obstack.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/partition.c -o noasan/partition.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/pexecute.c -o noasan/pexecute.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/make-temp-file.c -o make-temp-file.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/objalloc.c -o objalloc.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/physmem.c -o noasan/physmem.o; \
else true; fi
yes
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/obstack.c -o obstack.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/partition.c -o partition.o
configure: updating cache ./config.cache
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/pexecute.c -o pexecute.o
yes
checking that generated files are newer than configure... done
configure: creating ./config.status
checking size of void *... 
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/physmem.c -o physmem.o

checking whether we are cross compiling... checking whether basename is declared... (cached) yes
checking whether we are cross compiling... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/pex-common.c -o pic/pex-common.o; \
else true; fi
checking whether ffs is declared... (cached) yes
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/pex-one.c -o pic/pex-one.o; \
else true; fi
checking whether asprintf is declared... checking whether strstr is declared... (cached) yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/pex-common.c -o noasan/pex-common.o; \
else true; fi
no
checking for suffix of object files... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/pex-unix.c -o pic/pex-unix.o; \
else true; fi
checking whether vasprintf is declared... (cached) yes
no
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/pex-common.c -o pex-common.o
checking for suffix of object files... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/pex-one.c -o noasan/pex-one.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/pex-unix.c -o noasan/pex-unix.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/vprintf-support.c -o pic/vprintf-support.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/rust-demangle.c -o pic/rust-demangle.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/safe-ctype.c -o pic/safe-ctype.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/simple-object.c -o pic/simple-object.o; \
else true; fi
checking whether snprintf is declared... (cached) yes
8
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/pex-one.c -o pex-one.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/pex-unix.c -o pex-unix.o
o
checking whether we are using the GNU C compiler... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/vprintf-support.c -o noasan/vprintf-support.o; \
else true; fi
checking whether vsnprintf is declared... (cached) yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/rust-demangle.c -o noasan/rust-demangle.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/safe-ctype.c -o noasan/safe-ctype.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/simple-object.c -o noasan/simple-object.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/simple-object-coff.c -o pic/simple-object-coff.o; \
else true; fi
o
checking whether we are using the GNU C compiler... checking whether strverscmp is declared... (cached) yes
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/rust-demangle.c -o rust-demangle.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/safe-ctype.c -o safe-ctype.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/vprintf-support.c -o vprintf-support.o
checking whether vsnprintf is declared... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/simple-object.c -o simple-object.o
checking whether strndup is declared... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/simple-object-coff.c -o noasan/simple-object-coff.o; \
else true; fi
yes
checking whether gcc accepts -g... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/simple-object-coff.c -o simple-object-coff.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/simple-object-elf.c -o pic/simple-object-elf.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/simple-object-mach-o.c -o pic/simple-object-mach-o.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/simple-object-xcoff.c -o pic/simple-object-xcoff.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/simple-object-elf.c -o noasan/simple-object-elf.o; \
else true; fi
checking iconv.h usability... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/sort.c -o pic/sort.o; \
else true; fi
yes
checking whether gcc accepts -g... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/simple-object-mach-o.c -o noasan/simple-object-mach-o.o; \
else true; fi
configure: updating cache ./config.cache
yes
checking for gcc option to accept ISO C89... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/simple-object-xcoff.c -o noasan/simple-object-xcoff.o; \
else true; fi
checking that generated files are newer than configure... done
configure: creating ./config.status
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/simple-object-mach-o.c -o simple-object-mach-o.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/simple-object-elf.c -o simple-object-elf.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/spaces.c -o pic/spaces.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/sort.c -o noasan/sort.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/simple-object-xcoff.c -o simple-object-xcoff.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/splay-tree.c -o pic/splay-tree.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/stack-limit.c -o pic/stack-limit.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/sort.c -o sort.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/spaces.c -o noasan/spaces.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/strerror.c -o pic/strerror.o; \
else true; fi
yes
checking iconv.h presence... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/splay-tree.c -o noasan/splay-tree.o; \
else true; fi
checking whether memmem is declared... yes
checking for gcc option to accept ISO C89... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/spaces.c -o spaces.o
none needed
checking whether gcc understands -c and -o together... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/stack-limit.c -o noasan/stack-limit.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/strerror.c -o noasan/strerror.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/strsignal.c -o pic/strsignal.o; \
else true; fi
yes
checking for iconv.h... yes
checking for ld used by GCC... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/stack-limit.c -o stack-limit.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/splay-tree.c -o splay-tree.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/strerror.c -o strerror.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/strsignal.c -o noasan/strsignal.o; \
else true; fi
ld -m elf_x86_64
checking if the linker (ld -m elf_x86_64) is GNU ld... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/timeval-utils.c -o pic/timeval-utils.o; \
else true; fi
yes
checking for shared library run path origin... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/strsignal.c -o strsignal.o
none needed
checking whether gcc understands -c and -o together... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/timeval-utils.c -o noasan/timeval-utils.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/unlink-if-ordinary.c -o pic/unlink-if-ordinary.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/xasprintf.c -o pic/xasprintf.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/timeval-utils.c -o timeval-utils.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/unlink-if-ordinary.c -o noasan/unlink-if-ordinary.o; \
else true; fi
yes
checking for library containing strerror... yes
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/xatexit.c -o pic/xatexit.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/xasprintf.c -o noasan/xasprintf.o; \
else true; fi
checking whether ::std::tr1::unordered_map::rehash is usable.... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/unlink-if-ordinary.c -o unlink-if-ordinary.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/xexit.c -o pic/xexit.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/xasprintf.c -o xasprintf.o
done
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/xatexit.c -o noasan/xatexit.o; \
else true; fi
checking for iconv... if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/xexit.c -o noasan/xexit.o; \
else true; fi
yes
checking for library containing strerror... gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/xatexit.c -o xatexit.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/xmalloc.c -o pic/xmalloc.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/xexit.c -o xexit.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/xmemdup.c -o pic/xmemdup.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/xstrdup.c -o pic/xstrdup.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/xmalloc.c -o noasan/xmalloc.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/xstrerror.c -o pic/xstrerror.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/xmemdup.c -o noasan/xmemdup.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/xstrdup.c -o noasan/xstrdup.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/xstrerror.c -o noasan/xstrerror.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/xmalloc.c -o xmalloc.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/xstrndup.c -o pic/xstrndup.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/xmemdup.c -o xmemdup.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/xstrdup.c -o xstrdup.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/xstrerror.c -o xstrerror.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/xvasprintf.c -o pic/xvasprintf.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/xstrndup.c -o noasan/xstrndup.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/xvasprintf.c -o noasan/xvasprintf.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE  ../../binutils-2.32/libiberty/setproctitle.c -o pic/setproctitle.o; \
else true; fi
none required
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
checking whether build environment is sane... yes
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/xstrndup.c -o xstrndup.o
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/xvasprintf.c -o xvasprintf.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE   ../../binutils-2.32/libiberty/setproctitle.c -o noasan/setproctitle.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -ggdb3 -O2  -I. -I../../binutils-2.32/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic  -D_GNU_SOURCE ../../binutils-2.32/libiberty/setproctitle.c -o setproctitle.o
checking for a thread-safe mkdir -p... /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
yes
checking whether std::tr1::hash<off_t> is defined... checking for style of include used by make... GNU
checking whether make supports nested variables... yes
yes
checking for iconv declaration... checking dependency style of gcc... none required
checking for a BSD-compatible install... /usr/local/lib/ptxdist-2019.09.0/bin/install -c
checking whether build environment is sane... yes

         extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for a thread-safe mkdir -p... /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
gcc3
checking whether make supports nested variables... checking for x86_64-host-linux-gnu-ar... ar
checking for x86_64-host-linux-gnu-ranlib... ranlib
checking for x86_64-host-linux-gnu-gcc... (cached) gcc
yes
checking dependency style of gcc... configure: updating cache ./config.cache
checking that generated files are newer than configure... done
configure: creating ./config.status
rm -f ./libiberty.a pic/./libiberty.a noasan/./libiberty.a
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking how to run the C preprocessor... ar rc ./libiberty.a \
  ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./rust-demangle.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o  ./setproctitle.o
gcc3
checking for x86_64-host-linux-gnu-gcc... (cached) gcc
gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... yes
checking whether we can use attributes with template functions... /usr/bin/grep -E
checking for ANSI C header files... checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking how to run the C preprocessor... ranlib ./libiberty.a
yes
checking for struct stat::st_mtim.... gcc -E
yes
checking locale.h usability... checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... if [ x"" != x ]; then \
  cd pic; \
  ar rc ./libiberty.a \
    ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./rust-demangle.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o  ./setproctitle.o; \
  ranlib ./libiberty.a; \
  cd ..; \
else true; fi; \
if [ x"" != x ]; then \
  cd noasan; \
  ar rc ./libiberty.a \
    ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./rust-demangle.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o  ./setproctitle.o; \
  ranlib ./libiberty.a; \
  cd ..; \
else true; fi
/usr/bin/grep -E
checking for ANSI C header files... make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/libiberty'
yes
checking locale.h presence... yes
checking for locale.h... yes
checking for setlocale... yes
checking for sys/types.h... yes
checking for LC_MESSAGES... yes
checking for sys/stat.h... yes
checking for sys/types.h... config.status: creating .gdbinit
yes
checking whether to enable maintainer-specific portions of Makefiles... no
config.status: creating Makefile
yes
yes
checking for stdlib.h... configure: updating cache ./config.cache
checking for sys/stat.h... config.status: creating doc/Makefile
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating po/Makefile.in
yes
checking for string.h... yes
checking for stdlib.h... config.status: creating config.h
config.status: executing depfiles commands
yes
checking for memory.h... yes
checking for string.h... yes
checking for strings.h... yes
checking for memory.h... config.status: creating Makefile
config.status: creating testsuite/Makefile
yes
checking for inttypes.h... yes
checking for strings.h... config.status: creating po/Makefile.in
yes
config.status: creating config.h
checking for stdint.h... yes
config.status: executing depfiles commands
checking for inttypes.h... yes
yes
checking for unistd.h... checking for stdint.h... config.status: creating Makefile
config.status: creating po/Makefile.in
yes
yes
checking minix/config.h usability... config.status: creating Makefile
checking for unistd.h... config.status: creating config.h
config.status: creating doc/Makefile
config.status: executing depfiles commands
config.status: executing libtool commands
no
checking minix/config.h presence... config.status: creating po/Makefile.in
config.status: executing default-1 commands
yes
checking minix/config.h usability... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... config.status: creating config.h
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: executing default commands
config.status: executing depfiles commands
no
checking minix/config.h presence... yes
checking how to print strings... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... printf
checking for a sed that does not truncate output... /usr/local/lib/ptxdist-2019.09.0/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... yes
checking for x86_64-host-linux-gnu-ar... ar
checking for x86_64-host-linux-gnu-ranlib... ranlib
checking how to print strings... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
printf
checking for a sed that does not truncate output... /usr/local/lib/ptxdist-2019.09.0/bin/sed
checking for ld option to reload object files... -r
checking for x86_64-host-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for fgrep... checking for x86_64-host-linux-gnu-ar... (cached) ar
checking for x86_64-host-linux-gnu-strip... no
checking for strip... strip
checking for x86_64-host-linux-gnu-ranlib... (cached) ranlib
checking command to parse nm output from gcc object... /usr/bin/grep -F
checking for ld used by gcc... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... config.status: executing libtool commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
checking for x86_64-host-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for x86_64-host-linux-gnu-ar... (cached) ar
checking for x86_64-host-linux-gnu-strip... no
checking for strip... strip
checking for x86_64-host-linux-gnu-ranlib... (cached) ranlib
checking command to parse nm output from gcc object... ok
checking for dlfcn.h... config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
ok
yes
checking for objdir... checking for dlfcn.h... .libs
yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... checking if gcc supports -fno-rtti -fno-exceptions... yes
checking if gcc static flag -static works... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... config.status: executing libtool commands
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... config.status: executing default-1 commands
yes
checking if gcc supports -c -o file.o... yes
checking dynamic linker characteristics... config.status: executing default commands
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
no
checking for dlopen... Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether to install libbfd... no
checking whether NLS is requested... no
checking whether NLS is requested... no
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... no
checking for dlopen in -ldl... /usr/bin/msgmerge
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
yes
checking whether a program can dlopen itself... checking limits.h usability... yes
checking whether a statically linked program can dlopen itself... yes
checking limits.h presence... yes
checking for limits.h... yes
checking whether string.h and strings.h may both be included... yes
checking whether basename is declared... no
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for dlfcn.h... (cached) yes
checking for windows.h... yes
checking whether stpcpy is declared... no
checking for library containing dlsym... yes
checking for sigsetjmp... 
checking linker --as-needed support... yes
checking for cos in -lm... -ldl
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... yes
no
configure: updating cache ./config.cache
checking that generated files are newer than configure... done
configure: creating ./config.status
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether to install libbfd... no
checking whether NLS is requested... no
checking whether NLS is requested... no
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for long double... yes
checking for long long... yes
checking size of long long... 8
checking size of void *... 8
checking size of long... 8
checking alloca.h usability... yes
checking alloca.h presence... yes
checking for alloca.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for unistd.h... (cached) yes
checking wchar.h usability... config.status: creating Makefile
config.status: creating po/Makefile.in
yes
checking wchar.h presence... yes
checking for wchar.h... yes
config.status: creating config.h
checking wctype.h usability... config.status: executing depfiles commands
yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for sys/stat.h... (cached) yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... config.status: executing libtool commands
yes
checking for sys/resource.h... yes
looking for a compliant stdint.h in stdint.h, checking for uintmax_t... config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
yes
checking for uintptr_t... yes
checking for int_least32_t... yes
checking for int_fast32_t... yes
checking for uint64_t... yes
checking what to include in bfd_stdint.h... stdint.h (already complete)
checking whether time.h and sys/time.h may both be included... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking whether string.h and strings.h may both be included... yes
checking for fcntl... yes
checking for getpagesize... yes
checking for setitimer... yes
checking for sysconf... yes
checking for fdopen... yes
checking for getuid... yes
checking for getgid... yes
checking for fileno... yes
checking for fls... no
checking for strtoull... yes
checking for getrlimit... yes
checking whether basename is declared... yes
checking whether ftello is declared... yes
checking whether ftello64 is declared... yes
checking whether fseeko is declared... yes
checking whether fseeko64 is declared... yes
checking whether ffs is declared... yes
checking whether free is declared... yes
checking whether getenv is declared... yes
checking whether malloc is declared... yes
checking whether realloc is declared... yes
checking whether stpcpy is declared... yes
checking whether strstr is declared... yes
checking whether asprintf is declared... yes
checking whether vasprintf is declared... yes
checking whether snprintf is declared... yes
checking whether vsnprintf is declared... yes
checking whether strnlen is declared... yes
checking compiler support for hidden visibility... yes
checking linker --as-needed support... yes
checking for cos in -lm... yes
checking for gcc version with buggy 64-bit support... no
checking for ftello... yes
checking for ftello64... yes
checking for fseeko... yes
checking for fseeko64... yes
checking for fopen64... yes
checking size of off_t... 8
checking file_ptr type... BFD_HOST_64_BIT
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... yes
checking for getpagesize... (cached) yes
checking for working mmap... yes
checking for madvise... yes
checking for mprotect... yes
configure: updating cache ./config.cache
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating bfd-in3.h
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: executing bfd_stdint.h commands
config.status: executing default commands
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
rm -f elf32-target.h
rm -f elf64-target.h
rm -f targmatch.h
creating bfdver.h
/usr/local/lib/ptxdist-2019.09.0/bin/sed -e s/NN/64/g < ../../binutils-2.32/bfd/elfxx-target.h > elf64-target.new
/usr/local/lib/ptxdist-2019.09.0/bin/sed -f ../../binutils-2.32/bfd/targmatch.sed < ../../binutils-2.32/bfd/config.bfd > targmatch.new
/usr/local/lib/ptxdist-2019.09.0/bin/sed -e s/NN/32/g < ../../binutils-2.32/bfd/elfxx-target.h > elf32-target.new
Making info in doc
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd/doc'
gcc -o chw$$ -ggdb3 -O2 \
    -I.. -I../../../binutils-2.32/bfd/doc/.. -I../../../binutils-2.32/bfd/doc/../../include -I../../../binutils-2.32/bfd/doc/../../intl -I../../intl ../../../binutils-2.32/bfd/doc/chew.c; \
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change \
  chw$$ chew; \
touch chew.stamp
mv -f elf64-target.new elf64-target.h
mv -f targmatch.new targmatch.h
mv -f elf32-target.new elf32-target.h
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../aoutx.h >aoutx.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../archive.c >archive.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../archures.c >archures.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../bfd.c >bfd.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../cache.c >cache.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../coffcode.h >coffcode.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../corefile.c >core.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../elf.c >elf.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../elfcode.h >elfcode.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../format.c >format.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../libbfd.c >libbfd.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../bfdwin.c >bfdwin.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../bfdio.c >bfdio.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../opncls.c >opncls.tmp
test -e aoutx.texi || test ! -f ../../../binutils-2.32/bfd/doc/aoutx.texi || cp -p ../../../binutils-2.32/bfd/doc/aoutx.texi .
test -e archive.texi || test ! -f ../../../binutils-2.32/bfd/doc/archive.texi || cp -p ../../../binutils-2.32/bfd/doc/archive.texi .
test -e archures.texi || test ! -f ../../../binutils-2.32/bfd/doc/archures.texi || cp -p ../../../binutils-2.32/bfd/doc/archures.texi .
test -e bfdt.texi || test ! -f ../../../binutils-2.32/bfd/doc/bfdt.texi || cp -p ../../../binutils-2.32/bfd/doc/bfdt.texi .
test -e cache.texi || test ! -f ../../../binutils-2.32/bfd/doc/cache.texi || cp -p ../../../binutils-2.32/bfd/doc/cache.texi .
test -e coffcode.texi || test ! -f ../../../binutils-2.32/bfd/doc/coffcode.texi || cp -p ../../../binutils-2.32/bfd/doc/coffcode.texi .
test -e core.texi || test ! -f ../../../binutils-2.32/bfd/doc/core.texi || cp -p ../../../binutils-2.32/bfd/doc/core.texi .
test -e elf.texi || test ! -f ../../../binutils-2.32/bfd/doc/elf.texi || cp -p ../../../binutils-2.32/bfd/doc/elf.texi .
test -e elfcode.texi || test ! -f ../../../binutils-2.32/bfd/doc/elfcode.texi || cp -p ../../../binutils-2.32/bfd/doc/elfcode.texi .
test -e format.texi || test ! -f ../../../binutils-2.32/bfd/doc/format.texi || cp -p ../../../binutils-2.32/bfd/doc/format.texi .
test -e libbfd.texi || test ! -f ../../../binutils-2.32/bfd/doc/libbfd.texi || cp -p ../../../binutils-2.32/bfd/doc/libbfd.texi .
test -e bfdwin.texi || test ! -f ../../../binutils-2.32/bfd/doc/bfdwin.texi || cp -p ../../../binutils-2.32/bfd/doc/bfdwin.texi .
test -e bfdio.texi || test ! -f ../../../binutils-2.32/bfd/doc/bfdio.texi || cp -p ../../../binutils-2.32/bfd/doc/bfdio.texi .
test -e opncls.texi || test ! -f ../../../binutils-2.32/bfd/doc/opncls.texi || cp -p ../../../binutils-2.32/bfd/doc/opncls.texi .
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change aoutx.tmp aoutx.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change archive.tmp archive.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change archures.tmp archures.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change bfd.tmp bfdt.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change cache.tmp cache.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change coffcode.tmp coffcode.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change core.tmp core.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change elf.tmp elf.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change elfcode.tmp elfcode.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change format.tmp format.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change libbfd.tmp libbfd.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change bfdwin.tmp bfdwin.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change bfdio.tmp bfdio.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change opncls.tmp opncls.texi
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../reloc.c >reloc.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../section.c >section.tmp
touch bfdt.stamp
touch aoutx.stamp
touch archive.stamp
touch core.stamp
touch elf.stamp
touch cache.stamp
test -e reloc.texi || test ! -f ../../../binutils-2.32/bfd/doc/reloc.texi || cp -p ../../../binutils-2.32/bfd/doc/reloc.texi .
touch archures.stamp
touch format.stamp
touch coffcode.stamp
touch elfcode.stamp
touch bfdwin.stamp
test -e section.texi || test ! -f ../../../binutils-2.32/bfd/doc/section.texi || cp -p ../../../binutils-2.32/bfd/doc/section.texi .
touch libbfd.stamp
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change reloc.tmp reloc.texi
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../syms.c >syms.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../targets.c >targets.tmp
touch bfdio.stamp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../init.c >init.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../hash.c >hash.tmp
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../linker.c >linker.tmp
touch opncls.stamp
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change section.tmp section.texi
./chew -f ../../../binutils-2.32/bfd/doc/doc.str < ../../../binutils-2.32/bfd/doc/../mmo.c >mmo.tmp
test -e syms.texi || test ! -f ../../../binutils-2.32/bfd/doc/syms.texi || cp -p ../../../binutils-2.32/bfd/doc/syms.texi .
test -e targets.texi || test ! -f ../../../binutils-2.32/bfd/doc/targets.texi || cp -p ../../../binutils-2.32/bfd/doc/targets.texi .
test -e init.texi || test ! -f ../../../binutils-2.32/bfd/doc/init.texi || cp -p ../../../binutils-2.32/bfd/doc/init.texi .
test -e hash.texi || test ! -f ../../../binutils-2.32/bfd/doc/hash.texi || cp -p ../../../binutils-2.32/bfd/doc/hash.texi .
test -e linker.texi || test ! -f ../../../binutils-2.32/bfd/doc/linker.texi || cp -p ../../../binutils-2.32/bfd/doc/linker.texi .
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change syms.tmp syms.texi
test -e mmo.texi || test ! -f ../../../binutils-2.32/bfd/doc/mmo.texi || cp -p ../../../binutils-2.32/bfd/doc/mmo.texi .
touch reloc.stamp
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change targets.tmp targets.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change init.tmp init.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change hash.tmp hash.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change linker.tmp linker.texi
/bin/bash ../../../binutils-2.32/bfd/doc/../../move-if-change mmo.tmp mmo.texi
touch section.stamp
touch syms.stamp
touch targets.stamp
touch linker.stamp
touch init.stamp
touch hash.stamp
touch mmo.stamp
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd/doc'
Making info in po
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd/po'
( if test 'x../../../binutils-2.32/bfd/po' != 'x.'; then \
    posrcprefix='../../../binutils-2.32/bfd/'; \
  else \
    posrcprefix="../"; \
  fi; \
  rm -f SRC-POTFILES-t SRC-POTFILES \
    && (sed -e '/^#/d' \
            -e '/^[ 	]*$/d' \
	    -e "s@.*@	$posrcprefix& \\\\@" < ../../../binutils-2.32/bfd/po/SRC-POTFILES.in \
	| sed -e '$s/\\$//') > SRC-POTFILES-t \
    && chmod a-w SRC-POTFILES-t \
    && mv SRC-POTFILES-t SRC-POTFILES )
( rm -f BLD-POTFILES-t BLD-POTFILES \
    && (sed -e '/^#/d' \
            -e '/^[ 	]*$/d' \
	    -e "s@.*@	../& \\\\@" < ../../../binutils-2.32/bfd/po/BLD-POTFILES.in \
	| sed -e '$s/\\$//') > BLD-POTFILES-t \
    && chmod a-w BLD-POTFILES-t \
    && mv BLD-POTFILES-t BLD-POTFILES )
cd .. \
  && CONFIG_FILES=po/Makefile.in:po/Make-in \
     CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating po/Makefile.in
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: executing bfd_stdint.h commands
config.status: executing default commands
make[4]: Nothing to be done for 'info'.
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd/po'
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
make[4]: Nothing to be done for 'info-am'.
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
make  all-recursive
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
Making all in doc
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd/doc'
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd/doc'
Making all in po
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd/po'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd/po'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
rm -f bfd-tmp.h
rm -f tofiles
cp bfd-in3.h bfd-tmp.h
f=""; \
for i in elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo elf32-gen.lo plugin.lo cpu-arm.lo cpu-plugin.lo  archive64.lo ; do \
  case " $f " in \
    *" $i "*) ;; \
    *) f="$f $i" ;; \
  esac ; \
done ; \
echo $f > tofiles
/bin/bash ../../binutils-2.32/bfd/../move-if-change tofiles ofiles
/bin/bash ../../binutils-2.32/bfd/../move-if-change bfd-tmp.h bfd.h
touch stamp-ofiles
rm -f bfd-tmp.h
touch stmp-bfd-h
/bin/bash ./libtool --silent --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-2.32/bfd  -DBINDIR='"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin"' -I. -I../../binutils-2.32/bfd -I../../binutils-2.32/bfd/../include  -DHAVE_arm_elf32_le_vec -DHAVE_arm_elf32_fdpic_le_vec -DHAVE_arm_elf32_be_vec -DHAVE_arm_elf32_fdpic_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -I../../binutils-2.32/bfd/../zlib -ggdb3 -O2 -MT archures.lo -MD -MP -MF .deps/archures.Tpo -c -o archures.lo -DDEFAULT_VECTOR=arm_elf32_le_vec -DSELECT_VECS='&arm_elf32_le_vec,&arm_elf32_fdpic_le_vec,&arm_elf32_be_vec,&arm_elf32_fdpic_be_vec,&elf32_le_vec,&elf32_be_vec,&plugin_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch,&bfd_plugin_arch' ../../binutils-2.32/bfd/archures.c
  CC       archive.lo
  CC       bfdio.lo
  CC       bfd.lo
  CC       bfdwin.lo
  CC       compress.lo
  CC       cache.lo
  CC       coff-bfd.lo
  CC       format.lo
  CC       elf-properties.lo
  CC       corefile.lo
  CC       hash.lo
  CC       init.lo
  CC       linker.lo
  CC       merge.lo
  CC       libbfd.lo
  CC       opncls.lo
  CC       reloc.lo
  CC       section.lo
  CC       simple.lo
  CC       stab-syms.lo
mv -f .deps/archures.Tpo .deps/archures.Plo
  CC       stabs.lo
/bin/bash ./libtool --silent --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-2.32/bfd  -DBINDIR='"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin"' -I. -I../../binutils-2.32/bfd -I../../binutils-2.32/bfd/../include  -DHAVE_arm_elf32_le_vec -DHAVE_arm_elf32_fdpic_le_vec -DHAVE_arm_elf32_be_vec -DHAVE_arm_elf32_fdpic_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -I../../binutils-2.32/bfd/../zlib -ggdb3 -O2 -MT targets.lo -MD -MP -MF .deps/targets.Tpo -c -o targets.lo -DDEFAULT_VECTOR=arm_elf32_le_vec -DSELECT_VECS='&arm_elf32_le_vec,&arm_elf32_fdpic_le_vec,&arm_elf32_be_vec,&arm_elf32_fdpic_be_vec,&elf32_le_vec,&elf32_be_vec,&plugin_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch,&bfd_plugin_arch' ../../binutils-2.32/bfd/targets.c
  CC       syms.lo
  CC       ihex.lo
  CC       binary.lo
  CC       srec.lo
  CC       tekhex.lo
  CC       elf32-arm.lo
  CC       verilog.lo
  CC       elf32.lo
  CC       elf-nacl.lo
mv -f .deps/targets.Tpo .deps/targets.Plo
  CC       elf-vxworks.lo
  CC       elflink.lo
  CC       elf.lo
  CC       elf-attrs.lo
/bin/bash ./libtool --silent --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-2.32/bfd  -DBINDIR='"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin"' -I. -I../../binutils-2.32/bfd -I../../binutils-2.32/bfd/../include  -DHAVE_arm_elf32_le_vec -DHAVE_arm_elf32_fdpic_le_vec -DHAVE_arm_elf32_be_vec -DHAVE_arm_elf32_fdpic_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -I../../binutils-2.32/bfd/../zlib -ggdb3 -O2 -MT dwarf2.lo -MD -MP -MF .deps/dwarf2.Tpo -c -o dwarf2.lo -DDEBUGDIR=\"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/lib/debug\" ../../binutils-2.32/bfd/dwarf2.c
  CC       elf-eh-frame.lo
  CC       elf-strtab.lo
  CC       dwarf1.lo
  CC       elf32-gen.lo
  CC       cpu-arm.lo
  CC       plugin.lo
  CC       archive64.lo
  CC       cpu-plugin.lo
mv -f .deps/dwarf2.Tpo .deps/dwarf2.Plo
  CCLD     libbfd.la
libtooldir=`/bin/bash ./libtool --config | /usr/local/lib/ptxdist-2019.09.0/bin/sed -n -e 's/^objdir=//p'`; \
if [ -f $libtooldir/libbfd.a ]; then \
  cp $libtooldir/libbfd.a libbfd.tmp; \
  ranlib libbfd.tmp; \
  /bin/bash ../../binutils-2.32/bfd/../move-if-change libbfd.tmp libbfd.a; \
else true; fi
touch stamp-lib
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes'
make  all-recursive
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes'
Making all in .
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes'
/bin/bash ./libtool --silent --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-2.32/opcodes  -I. -I../../binutils-2.32/opcodes -I../bfd -I../../binutils-2.32/opcodes/../include -I../../binutils-2.32/opcodes/../bfd    -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -ggdb3 -O2 -MT disassemble.lo -MD -MP -MF .deps/disassemble.Tpo -c -o disassemble.lo  -DARCH_arm ../../binutils-2.32/opcodes/disassemble.c
  CC       dis-buf.lo
  CC       arm-dis.lo
  CC       dis-init.lo
mv -f .deps/disassemble.Tpo .deps/disassemble.Plo
  CCLD     libopcodes.la
libtooldir=`/bin/bash ./libtool --config | sed -n -e 's/^objdir=//p'`; \
if [ -f $libtooldir/libopcodes.a ]; then \
  cp $libtooldir/libopcodes.a libopcodes.tmp; \
  ranlib libopcodes.tmp; \
  /bin/bash ../../binutils-2.32/opcodes/../move-if-change libopcodes.tmp libopcodes.a; \
else true; fi
touch stamp-lib
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes'
Making all in po
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes/po'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes/po'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas'
make  all-recursive
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas'
Making all in doc
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas/doc'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas/doc'
Making all in po
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas/po'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas/po'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas'
  CC       app.o
  CC       atof-generic.o
  CC       compress-debug.o
  CC       cond.o
  CC       as.o
  CC       depend.o
  CC       dw2gencfi.o
  CC       dwarf2dbg.o
  CC       ehopt.o
  CC       ecoff.o
  CC       expr.o
  CC       flonum-copy.o
  CC       flonum-mult.o
  CC       flonum-konst.o
  CC       frags.o
  CC       hash.o
  CC       input-scrub.o
  CC       input-file.o
  CC       listing.o
  CC       literal.o
  CC       macro.o
  CC       messages.o
  CC       output-file.o
  CC       remap.o
  CC       read.o
  CC       sb.o
  CC       stabs.o
  CC       subsegs.o
  CC       symbols.o
  CC       write.o
  CC       config/tc-arm.o
  CC       config/obj-elf.o
  CC       config/atof-ieee.o
  CCLD     as-new
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
if [ -r sysinfo.c ]; then \
  gcc -c -I. -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -I../../binutils-2.32/binutils/../zlib -ggdb3 -O2  sysinfo.c ; \
else \
  gcc -c -I. -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -I../../binutils-2.32/binutils/../zlib -ggdb3 -O2  ../../binutils-2.32/binutils/sysinfo.c ; \
fi
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
Making info in doc
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/doc'
if test -f cxxfilt.man; then \
  man=cxxfilt.man; \
else \
  man=../../../binutils-2.32/binutils/doc/cxxfilt.man; \
fi; \
sed -e 's/@PROGRAM@/c++filt/' \
    -e 's/cxxfilt/c++filt/' < $man \
	> c++filt.1
make  all-recursive
gcc -c -I. -I../../binutils-2.32/binutils -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -I../../binutils-2.32/binutils/../zlib -ggdb3 -O2  ../../binutils-2.32/binutils/syslex_wrap.c
make  all-recursive
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/doc'
Making info in po
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/po'
make[4]: Nothing to be done for 'info'.
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/po'
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
make[4]: Nothing to be done for 'info-am'.
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
Making all in po
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof/po'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof/po'
Making all in po
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/po'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/po'
Making all in testsuite
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/testsuite'
Makefile:3957: warning: overriding recipe for target 'incremental_comdat_test_1'
Makefile:3949: warning: ignoring old recipe for target 'incremental_comdat_test_1'
Makefile:3969: warning: overriding recipe for target 'incremental_common_test_1'
Makefile:3961: warning: ignoring old recipe for target 'incremental_common_test_1'
Makefile:3981: warning: overriding recipe for target 'incremental_copy_test'
Makefile:3973: warning: ignoring old recipe for target 'incremental_copy_test'
Makefile:3993: warning: overriding recipe for target 'incremental_test_2'
Makefile:3985: warning: ignoring old recipe for target 'incremental_test_2'
Makefile:4005: warning: overriding recipe for target 'incremental_test_3'
Makefile:3997: warning: ignoring old recipe for target 'incremental_test_3'
Makefile:4017: warning: overriding recipe for target 'incremental_test_4'
Makefile:4009: warning: ignoring old recipe for target 'incremental_test_4'
Makefile:4029: warning: overriding recipe for target 'incremental_test_5'
Makefile:4021: warning: ignoring old recipe for target 'incremental_test_5'
Makefile:4041: warning: overriding recipe for target 'incremental_test_6'
Makefile:4033: warning: ignoring old recipe for target 'incremental_test_6'
Makefile:4309: warning: overriding recipe for target 'pr17704a_test'
Makefile:4301: warning: ignoring old recipe for target 'pr17704a_test'
make  all-am
  CC       call_graph.o
  CC       cg_arcs.o
  CC       cg_dfn.o
  CC       basic_blocks.o
  CC       cg_print.o
  CC       corefile.o
  CC       gmon_io.o
  CC       gprof.o
make[6]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/testsuite'
Makefile:3957: warning: overriding recipe for target 'incremental_comdat_test_1'
Makefile:3949: warning: ignoring old recipe for target 'incremental_comdat_test_1'
Makefile:3969: warning: overriding recipe for target 'incremental_common_test_1'
Makefile:3961: warning: ignoring old recipe for target 'incremental_common_test_1'
Makefile:3981: warning: overriding recipe for target 'incremental_copy_test'
Makefile:3973: warning: ignoring old recipe for target 'incremental_copy_test'
Makefile:3993: warning: overriding recipe for target 'incremental_test_2'
Makefile:3985: warning: ignoring old recipe for target 'incremental_test_2'
Makefile:4005: warning: overriding recipe for target 'incremental_test_3'
Makefile:3997: warning: ignoring old recipe for target 'incremental_test_3'
Makefile:4017: warning: overriding recipe for target 'incremental_test_4'
Makefile:4009: warning: ignoring old recipe for target 'incremental_test_4'
Makefile:4029: warning: overriding recipe for target 'incremental_test_5'
Makefile:4021: warning: ignoring old recipe for target 'incremental_test_5'
Makefile:4041: warning: overriding recipe for target 'incremental_test_6'
Makefile:4033: warning: ignoring old recipe for target 'incremental_test_6'
Makefile:4309: warning: overriding recipe for target 'pr17704a_test'
Makefile:4301: warning: ignoring old recipe for target 'pr17704a_test'
  CC       search_list.o
  CC       source.o
  CC       hertz.o
make[6]: Nothing to be done for 'all-am'.
make[6]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/testsuite'
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/testsuite'
  CC       hist.o
  CC       symtab.o
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
  CXX      archive.o
  CXX      attributes.o
gcc -ggdb3 -O2  -o sysinfo sysinfo.o syslex_wrap.o
  CC       sym_ids.o
./sysinfo -d <../../binutils-2.32/binutils/sysroff.info >sysroff.h
  CC       utils.o
  CC       i386.o
  CXX      binary.o
make  all-recursive
  CXX      compressed_output.o
  CC       sparc.o
  CXX      common.o
  CC       vax.o
  CC       alpha.o
  CC       mips.o
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
  CC       aarch64.o
Making all in doc
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/doc'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/doc'
Making all in po
  CC       flat_bl.o
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/po'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/po'
  CC       bsd_callg_bl.o
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
  CC       fsf_callg_bl.o
  CC       size.o
  CXX      copy-relocs.o
  CC       bucomm.o
  CXX      cref.o
  CC       version.o
  CXX      defstd.o
  CXX      descriptors.o
  CXX      dirsearch.o
  CXX      dynobj.o
  CXX      dwarf_reader.o
  CCLD     gprof
gcc -DHAVE_CONFIG_H -I. -I../../binutils-2.32/binutils  -I. -I../../binutils-2.32/binutils -I../bfd -I../../binutils-2.32/binutils/../bfd -I../../binutils-2.32/binutils/../include -DLOCALEDIR="\"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -I../../binutils-2.32/binutils/../zlib -ggdb3 -O2 -MT objdump.o -MD -MP -MF .deps/objdump.Tpo -c -o objdump.o -DOBJDUMP_PRIVATE_VECTORS="" ../../binutils-2.32/binutils/objdump.c
  CC       filemode.o
  CC       dwarf.o
  CC       prdbg.o
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
  CC       rddbg.o
  CC       debug.o
  CXX      ehframe.o
  CXX      errors.o
mv -f .deps/objdump.Tpo .deps/objdump.Po
  CXX      expression.o
  CC       stabs.o
  CXX      fileread.o
  CC       rdcoff.o
  CXX      gc.o
  CXX      gdb-index.o
  CC       elfcomm.o
gcc -DHAVE_CONFIG_H -I. -I../../binutils-2.32/binutils  -I. -I../../binutils-2.32/binutils -I../bfd -I../../binutils-2.32/binutils/../bfd -I../../binutils-2.32/binutils/../include -DLOCALEDIR="\"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -I../../binutils-2.32/binutils/../zlib -ggdb3 -O2 -MT arparse.o -MD -MP -MF .deps/arparse.Tpo -c -o arparse.o `test -f arparse.c || echo ../../binutils-2.32/binutils/`arparse.c 
  CXX      gold.o
  CXX      gold-threads.o
mv -f .deps/arparse.Tpo .deps/arparse.Po
gcc -DHAVE_CONFIG_H -I. -I../../binutils-2.32/binutils  -I. -I../../binutils-2.32/binutils -I../bfd -I../../binutils-2.32/binutils/../bfd -I../../binutils-2.32/binutils/../include -DLOCALEDIR="\"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -I../../binutils-2.32/binutils/../zlib -ggdb3 -O2 -MT arlex.o -MD -MP -MF .deps/arlex.Tpo -c -o arlex.o `test -f arlex.c || echo ../../binutils-2.32/binutils/`arlex.c 
  CC       ar.o
mv -f .deps/arlex.Tpo .deps/arlex.Po
  CC       not-ranlib.o
  CC       arsup.o
  CC       rename.o
  CC       binemul.o
  CC       emul_vanilla.o
  CC       strings.o
  CC       is-ranlib.o
  CXX      icf.o
  CC       objcopy.o
  CC       not-strip.o
  CC       wrstabs.o
  CXX      incremental.o
  CXX      int_encoding.o
  CC       addr2line.o
  CC       readelf.o
  CC       unwind-ia64.o
In file included from /usr/include/stdio.h:867,
                 from ../../binutils-2.32/binutils/sysdep.h:25,
                 from ../../binutils-2.32/binutils/wrstabs.c:25:
In function 'sprintf',
    inlined from 'stab_start_class_type' at ../../binutils-2.32/binutils/wrstabs.c:1476:4:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: warning: '%s' directive argument is null [-Wformat-overflow=]
   36 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   37 |       __bos (__s), __fmt, __va_arg_pack ());
      |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  CXX      layout.o
  CC       elfedit.o
  CXX      mapfile.o
  CC       nm.o
  CC       is-strip.o
  CC       cxxfilt.o
  CXX      merge.o
  CC       bfdtest1.o
  CC       bfdtest2.o
  CXX      nacl.o
  CXX      object.o
  CXX      options.o
  CXX      output.o
  CXX      parameters.o
  CCLD     size
  CXX      plugin.o
  CXX      readsyms.o
  CXX      reduced_debug_output.o
  CXX      reloc.o
  CXX      resolve.o
  CXX      script-sections.o
  CXX      script.o
  CXX      stringpool.o
  CXX      symtab.o
  CXX      target.o
  CXX      target-select.o
  CXX      timer.o
  CXX      version.o
  CXX      workqueue.o
  CCLD     objdump
  CXX      workqueue-threads.o
  CC       yyscript.o
  CCLD     ar
  CXX      dwp.o
  CXX      main.o
  CXX      i386.o
  CCLD     strings
  CCLD     ranlib
  CCLD     objcopy
  CXX      x86_64.o
  CCLD     addr2line
  CXX      sparc.o
  CCLD     readelf
  CCLD     elfedit
  CXX      powerpc.o
  CCLD     nm-new
  CXX      arm.o
  CXX      arm-reloc-property.o
  CXX      tilegx.o
  CCLD     strip-new
  CCLD     cxxfilt
  CXX      mips.o
  CCLD     bfdtest1
  CCLD     bfdtest2
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
  CXX      aarch64.o
  CXX      aarch64-reloc-property.o
  CXX      s390.o
  CXX      incremental-dump.o
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
(echo "/* This file is automatically generated.  DO NOT EDIT! */";\
for f in `echo " " earmelf_linux_eabi.o earmelfb_linux_eabi.o "" \
 | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
    echo "extern ld_emulation_xfer_type ld_${f}_emulation;"; \
done;\
echo "";\
echo "#define EMULATION_LIST \\";\
for f in `echo " " earmelf_linux_eabi.o earmelfb_linux_eabi.o "" \
 | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
    echo "  &ld_${f}_emulation, \\"; \
done;\
echo "  0") >ldemul-tmp.h
mv ldemul-tmp.h ldemul-list.h
make  all-recursive
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
Making all in po
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld/po'
( if test 'x../../../binutils-2.32/ld/po' != 'x.'; then \
    posrcprefix='../../../binutils-2.32/ld/'; \
  else \
    posrcprefix="../"; \
  fi; \
  rm -f SRC-POTFILES-t SRC-POTFILES \
    && (sed -e '/^#/d' -e '/^[	 ]*$/d' \
	    -e "s@.*@	$posrcprefix& \\\\@" < ../../../binutils-2.32/ld/po/SRC-POTFILES.in \
	| sed -e '$s/\\$//') > SRC-POTFILES-t \
    && chmod a-w SRC-POTFILES-t \
    && mv SRC-POTFILES-t SRC-POTFILES )
rm -f BLD-POTFILES-t BLD-POTFILES \
  && sed -e '/^#/d' -e '/^[	 ]*$/d' \
	 -e "s@.*@	../& \\\\@" < ../../../binutils-2.32/ld/po/BLD-POTFILES.in \
     | sed -e '$s/\\$//' > BLD-POTFILES-t \
  && chmod a-w BLD-POTFILES-t \
  && mv BLD-POTFILES-t BLD-POTFILES
cd .. \
  && CONFIG_FILES=po/Makefile.in:po/Make-in \
     CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating po/Makefile.in
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: executing default commands
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld/po'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
  CC       libldtestplug_la-testplug.lo
  CC       libldtestplug4_la-testplug4.lo
  CC       libldtestplug2_la-testplug2.lo
  CC       libldtestplug3_la-testplug3.lo
gcc -DHAVE_CONFIG_H -I. -I../../binutils-2.32/ld  -I. -I../../binutils-2.32/ld -I../bfd -I../../binutils-2.32/ld/../bfd -I../../binutils-2.32/ld/../include  -ggdb3 -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -DELF_LIST_OPTIONS=TRUE -DELF_SHLIB_LIST_OPTIONS=TRUE -DELF_PLT_UNWIND_LIST_OPTIONS=FALSE -ggdb3 -O2 -MT ldgram.o -MD -MP -MF .deps/ldgram.Tpo -c -o ldgram.o `test -f ldgram.c || echo ../../binutils-2.32/ld/`ldgram.c 
gcc -DHAVE_CONFIG_H -I. -I../../binutils-2.32/ld  -I. -I../../binutils-2.32/ld -I../bfd -I../../binutils-2.32/ld/../bfd -I../../binutils-2.32/ld/../include  -ggdb3 -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -DELF_LIST_OPTIONS=TRUE -DELF_SHLIB_LIST_OPTIONS=TRUE -DELF_PLT_UNWIND_LIST_OPTIONS=FALSE -ggdb3 -O2 -MT ldlex-wrapper.o -MD -MP -MF .deps/ldlex-wrapper.Tpo -c -o ldlex-wrapper.o ../../binutils-2.32/ld/ldlex-wrapper.c 
  CC       lexsup.o
  CC       ldlang.o
  CC       mri.o
  CC       ldctor.o
mv -f .deps/ldlex-wrapper.Tpo .deps/ldlex-wrapper.Po
mv -f .deps/ldgram.Tpo .deps/ldgram.Po
gcc -DHAVE_CONFIG_H -I. -I../../binutils-2.32/ld  -I. -I../../binutils-2.32/ld -I../bfd -I../../binutils-2.32/ld/../bfd -I../../binutils-2.32/ld/../include  -ggdb3 -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -DELF_LIST_OPTIONS=TRUE -DELF_SHLIB_LIST_OPTIONS=TRUE -DELF_PLT_UNWIND_LIST_OPTIONS=FALSE -ggdb3 -O2 -MT ldmain.o -MD -MP -MF .deps/ldmain.Tpo -c -o ldmain.o \
  -DDEFAULT_EMULATION='"armelf_linux_eabi"' \
  -DBINDIR='"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin"' -DTOOLBINDIR='"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin"' \
  -DTARGET='"arm-v7a-linux-gnueabihf"' -DTARGET_SYSTEM_ROOT=\"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-arm-v7a-linux-gnueabihf\" -DTARGET_SYSTEM_ROOT_RELOCATABLE \
  ../../binutils-2.32/ld/ldmain.c
  CC       ldwrite.o
  CC       ldexp.o
  CC       ldver.o
  CC       ldemul.o
  CC       ldmisc.o
mv -f .deps/ldmain.Tpo .deps/ldmain.Po
gcc -DHAVE_CONFIG_H -I. -I../../binutils-2.32/ld  -I. -I../../binutils-2.32/ld -I../bfd -I../../binutils-2.32/ld/../bfd -I../../binutils-2.32/ld/../include  -ggdb3 -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -DELF_LIST_OPTIONS=TRUE -DELF_SHLIB_LIST_OPTIONS=TRUE -DELF_PLT_UNWIND_LIST_OPTIONS=FALSE -ggdb3 -O2 -MT ldfile.o -MD -MP -MF .deps/ldfile.Tpo -c -o ldfile.o \
-DSCRIPTDIR='"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/lib"' -DBINDIR='"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin"' -DTOOLBINDIR='"/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin"' \
 ../../binutils-2.32/ld/ldfile.c
  CC       ldcref.o
  CC       plugin.o
cp ../../binutils-2.32/ld/emultempl/astring.sed stringify.sed
mv -f .deps/ldfile.Tpo .deps/ldfile.Po
  CC       ldbuildid.o
  CCLD     libldtestplug.la
  CCLD     libldtestplug2.la
  CCLD     libldtestplug3.la
base=`echo earmelf_linux_eabi.c | sed -e 's,e\(.*\).c,\1,'`; \
make run-genscripts "script_target=$base" "script_tdirname=tdir_$base"
  CCLD     libldtestplug4.la
base=`echo earmelfb_linux_eabi.c | sed -e 's,e\(.*\).c,\1,'`; \
make run-genscripts "script_target=$base" "script_tdirname=tdir_$base"
make[6]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
LIB_PATH='=/../arm-v7a-linux-gnueabihf/lib:=/lib:=/usr/lib' /bin/bash ../../binutils-2.32/ld/genscripts.sh "../../binutils-2.32/ld" "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/lib" "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized" "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized" x86_64-host-linux-gnu arm-v7a-linux-gnueabihf arm-v7a-linux-gnueabihf "armelf_linux_eabi armelfb_linux_eabi" "/usr/local/lib /lib /usr/lib" yes yes armelf_linux_eabi "arm-v7a-linux-gnueabihf"
make[6]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
LIB_PATH='=/../arm-v7a-linux-gnueabihf/lib:=/lib:=/usr/lib' /bin/bash ../../binutils-2.32/ld/genscripts.sh "../../binutils-2.32/ld" "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/lib" "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized" "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized" x86_64-host-linux-gnu arm-v7a-linux-gnueabihf arm-v7a-linux-gnueabihf "armelf_linux_eabi armelfb_linux_eabi" "/usr/local/lib /lib /usr/lib" yes yes armelfb_linux_eabi "arm-v7a-linux-gnueabihf"
  AR       libgold.a
ar: `u' modifier ignored since `D' is the default (see `U')
make[6]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
make[6]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
  CC       earmelf_linux_eabi.o
  CC       earmelfb_linux_eabi.o
  CXXLD    dwp
  CCLD     ld-new
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
  CXXLD    ld-new
  CXXLD    incremental-dump
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
make[2]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build'
make[1]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build'
finished target cross-binutils.compile

------------------------------
target: cross-binutils.install
------------------------------

ptxdist: executing: PATH=/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-cross/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-cross/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sbin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-target/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/lib/wrapper:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/bin:/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-host/sbin:/usr/local/lib/ptxdist-2019.09.0/bin:/usr/local/lib/ptxdist-2014.12.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PKGCONFIG_WHITELIST_HOST='zlib' PKGCONFIG_WHITELIST_TARGET='' PKGCONFIG_WHITELIST_SRC='cross-binutils' SYSROOT='/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-cross' V=0 VERBOSE= KBUILD_BUILD_TIMESTAMP=2019-09-01T00:00:00+00:00 KBUILD_BUILD_USER=ptxdist KBUILD_BUILD_HOST=ptxdist   make -C /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build DESTDIR="/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32" INSTALL_ROOT="/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32" install -j1
make[1]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build'
make[2]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build'
/bin/bash ../binutils-2.32/mkinstalldirs /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized
mkdir -p -- /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
make  install-recursive
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
Making install in doc
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd/doc'
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/info'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 ../../../binutils-2.32/bfd/doc/bfd.info '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/info'
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd/doc'
Making install in po
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd/po'
make[5]: Nothing to be done for 'install'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd/po'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
make[6]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
make[6]: Nothing to be done for 'install-exec-am'.
make[6]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/bfd'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes'
Making install in .
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes'
make[5]: Nothing to be done for 'install-exec-am'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes'
Making install in po
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes/po'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes/po'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/opcodes'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
make  install-recursive
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
Making install in doc
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/doc'
make[6]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/doc'
make[6]: Nothing to be done for 'install-exec-am'.
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/info'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 ../../../binutils-2.32/binutils/doc/binutils.info '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/info'
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/addr2line.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-addr2line.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/ar.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-ar.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/dlltool.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-dlltool.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/nm.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-nm.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/objcopy.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-objcopy.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/objdump.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-objdump.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/ranlib.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-ranlib.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/readelf.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-readelf.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/size.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-size.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/strings.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-strings.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/strip.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-strip.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/elfedit.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-elfedit.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/windres.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-windres.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/binutils/doc/windmc.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-windmc.1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 'c++filt.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-c++filt.1'
make[6]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/doc'
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/doc'
Making install in po
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/po'
make[5]: Nothing to be done for 'install'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils/po'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
make[6]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin'
  /bin/bash ./libtool   --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c size '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-size'
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c size /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-size
  /bin/bash ./libtool   --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c objdump '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-objdump'
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c objdump /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-objdump
  /bin/bash ./libtool   --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c ar '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-ar'
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c ar /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-ar
  /bin/bash ./libtool   --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c strings '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-strings'
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c strings /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-strings
  /bin/bash ./libtool   --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c ranlib '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-ranlib'
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c ranlib /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-ranlib
  /bin/bash ./libtool   --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c objcopy '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-objcopy'
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c objcopy /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-objcopy
  /bin/bash ./libtool   --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c addr2line '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-addr2line'
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c addr2line /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-addr2line
  /bin/bash ./libtool   --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c readelf '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-readelf'
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c readelf /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-readelf
  /bin/bash ./libtool   --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c elfedit '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-elfedit'
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c elfedit /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-elfedit
  /bin/bash ./libtool  --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c nm-new /opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/arm-v7a-linux-gnueabihf-nm
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c nm-new /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/arm-v7a-linux-gnueabihf-nm
  /bin/bash ./libtool  --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c strip-new /opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/arm-v7a-linux-gnueabihf-strip
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c strip-new /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/arm-v7a-linux-gnueabihf-strip
  /bin/bash ./libtool  --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c cxxfilt /opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/arm-v7a-linux-gnueabihf-c++filt
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c cxxfilt /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/arm-v7a-linux-gnueabihf-c++filt
/bin/bash ../../binutils-2.32/binutils/../mkinstalldirs /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin
mkdir -p -- /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin
for i in nm-new strip-new ar ranlib dlltool objdump objcopy readelf; do \
  if [ -f $i ]; then \
    j=`echo $i | sed -e 's/-new//'`; \
    k=`echo $j | sed 's&^&arm-v7a-linux-gnueabihf-&'`; \
    if [ "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/$k" != "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/$j" ]; then \
      rm -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/$j; \
      ln /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/$k /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/$j >/dev/null 2>/dev/null \
	||  /bin/bash ./libtool --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c $i /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/$j; \
    fi; \
  else true; \
  fi; \
done
make[6]: Nothing to be done for 'install-data-am'.
make[6]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/binutils'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/etc'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/etc'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas'
Making install in doc
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas/doc'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas/doc'
make[5]: Nothing to be done for 'install-exec-am'.
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/info'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 ../../../binutils-2.32/gas/doc/as.info '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/info'
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../../binutils-2.32/gas/doc/as.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-as.1'
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas/doc'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas/doc'
Making install in po
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas/po'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas/po'
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas'
/bin/bash ../../binutils-2.32/gas/../mkinstalldirs /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin
  /bin/bash ./libtool  --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c as-new /opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/arm-v7a-linux-gnueabihf-as
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c as-new /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/arm-v7a-linux-gnueabihf-as
/bin/bash ../../binutils-2.32/gas/../mkinstalldirs /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin
n=`echo as | sed 's&^&arm-v7a-linux-gnueabihf-&'`; \
if [ "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/$n" != "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/as" ]; then \
  rm -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/as; \
  ln /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/$n /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/as >/dev/null 2>/dev/null \
    ||  /bin/bash ./libtool --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c as-new /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/as; \
else \
  true ; \
fi
make[5]: Nothing to be done for 'install-data-am'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gas'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
Making install in po
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/po'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/po'
Making install in testsuite
Makefile:3957: warning: overriding recipe for target 'incremental_comdat_test_1'
Makefile:3949: warning: ignoring old recipe for target 'incremental_comdat_test_1'
Makefile:3969: warning: overriding recipe for target 'incremental_common_test_1'
Makefile:3961: warning: ignoring old recipe for target 'incremental_common_test_1'
Makefile:3981: warning: overriding recipe for target 'incremental_copy_test'
Makefile:3973: warning: ignoring old recipe for target 'incremental_copy_test'
Makefile:3993: warning: overriding recipe for target 'incremental_test_2'
Makefile:3985: warning: ignoring old recipe for target 'incremental_test_2'
Makefile:4005: warning: overriding recipe for target 'incremental_test_3'
Makefile:3997: warning: ignoring old recipe for target 'incremental_test_3'
Makefile:4017: warning: overriding recipe for target 'incremental_test_4'
Makefile:4009: warning: ignoring old recipe for target 'incremental_test_4'
Makefile:4029: warning: overriding recipe for target 'incremental_test_5'
Makefile:4021: warning: ignoring old recipe for target 'incremental_test_5'
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/testsuite'
Makefile:4041: warning: overriding recipe for target 'incremental_test_6'
Makefile:4033: warning: ignoring old recipe for target 'incremental_test_6'
Makefile:4309: warning: overriding recipe for target 'pr17704a_test'
Makefile:4301: warning: ignoring old recipe for target 'pr17704a_test'
make  install-am
Makefile:3957: warning: overriding recipe for target 'incremental_comdat_test_1'
Makefile:3949: warning: ignoring old recipe for target 'incremental_comdat_test_1'
Makefile:3969: warning: overriding recipe for target 'incremental_common_test_1'
Makefile:3961: warning: ignoring old recipe for target 'incremental_common_test_1'
Makefile:3981: warning: overriding recipe for target 'incremental_copy_test'
Makefile:3973: warning: ignoring old recipe for target 'incremental_copy_test'
Makefile:3993: warning: overriding recipe for target 'incremental_test_2'
Makefile:3985: warning: ignoring old recipe for target 'incremental_test_2'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/testsuite'
Makefile:4005: warning: overriding recipe for target 'incremental_test_3'
Makefile:3997: warning: ignoring old recipe for target 'incremental_test_3'
Makefile:4017: warning: overriding recipe for target 'incremental_test_4'
Makefile:4009: warning: ignoring old recipe for target 'incremental_test_4'
Makefile:4029: warning: overriding recipe for target 'incremental_test_5'
Makefile:4021: warning: ignoring old recipe for target 'incremental_test_5'
Makefile:4041: warning: overriding recipe for target 'incremental_test_6'
Makefile:4033: warning: ignoring old recipe for target 'incremental_test_6'
Makefile:4309: warning: overriding recipe for target 'pr17704a_test'
Makefile:4301: warning: ignoring old recipe for target 'pr17704a_test'
Makefile:3957: warning: overriding recipe for target 'incremental_comdat_test_1'
Makefile:3949: warning: ignoring old recipe for target 'incremental_comdat_test_1'
Makefile:3969: warning: overriding recipe for target 'incremental_common_test_1'
Makefile:3961: warning: ignoring old recipe for target 'incremental_common_test_1'
Makefile:3981: warning: overriding recipe for target 'incremental_copy_test'
Makefile:3973: warning: ignoring old recipe for target 'incremental_copy_test'
make[6]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/testsuite'
Makefile:3993: warning: overriding recipe for target 'incremental_test_2'
Makefile:3985: warning: ignoring old recipe for target 'incremental_test_2'
Makefile:4005: warning: overriding recipe for target 'incremental_test_3'
Makefile:3997: warning: ignoring old recipe for target 'incremental_test_3'
Makefile:4017: warning: overriding recipe for target 'incremental_test_4'
Makefile:4009: warning: ignoring old recipe for target 'incremental_test_4'
Makefile:4029: warning: overriding recipe for target 'incremental_test_5'
Makefile:4021: warning: ignoring old recipe for target 'incremental_test_5'
Makefile:4041: warning: overriding recipe for target 'incremental_test_6'
Makefile:4033: warning: ignoring old recipe for target 'incremental_test_6'
Makefile:4309: warning: overriding recipe for target 'pr17704a_test'
Makefile:4301: warning: ignoring old recipe for target 'pr17704a_test'
make[6]: Nothing to be done for 'install-exec-am'.
make[6]: Nothing to be done for 'install-data-am'.
make[6]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/testsuite'
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/testsuite'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/testsuite'
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin'
  /usr/local/lib/ptxdist-2019.09.0/bin/install -c dwp '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-dwp'
/bin/bash ../../binutils-2.32/gold/../mkinstalldirs /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin
n=`echo ld.gold | sed 's&^&arm-v7a-linux-gnueabihf-&'`; \
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c \
  ld-new /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/${n}; \
if test "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin" != "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin"; then \
  rm -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld.gold; \
  ln /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/${n} /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld.gold >/dev/null 2>/dev/null \
  ||  /usr/local/lib/ptxdist-2019.09.0/bin/install -c ld-new /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld.gold; \
fi; \
if test "x" = "xyes"; then \
  ld=`echo ld | sed 's&^&arm-v7a-linux-gnueabihf-&'`; \
  rm -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/${ld}; \
  ln /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/${n} /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/${ld} >/dev/null 2>/dev/null \
  ||  /usr/local/lib/ptxdist-2019.09.0/bin/install -c ld-new /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/${ld}; \
  if test "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin" != "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin"; then \
    rm -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld; \
    ln /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/${n} /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld >/dev/null 2>/dev/null \
    ||  /usr/local/lib/ptxdist-2019.09.0/bin/install -c ld-new /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld; \
  fi; \
fi
Making install-info in po
make[6]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/po'
make[6]: Nothing to be done for 'install-info'.
make[6]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/po'
Making install-info in testsuite
Makefile:3957: warning: overriding recipe for target 'incremental_comdat_test_1'
Makefile:3949: warning: ignoring old recipe for target 'incremental_comdat_test_1'
Makefile:3969: warning: overriding recipe for target 'incremental_common_test_1'
Makefile:3961: warning: ignoring old recipe for target 'incremental_common_test_1'
Makefile:3981: warning: overriding recipe for target 'incremental_copy_test'
Makefile:3973: warning: ignoring old recipe for target 'incremental_copy_test'
Makefile:3993: warning: overriding recipe for target 'incremental_test_2'
make[6]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/testsuite'
Makefile:3985: warning: ignoring old recipe for target 'incremental_test_2'
Makefile:4005: warning: overriding recipe for target 'incremental_test_3'
Makefile:3997: warning: ignoring old recipe for target 'incremental_test_3'
Makefile:4017: warning: overriding recipe for target 'incremental_test_4'
Makefile:4009: warning: ignoring old recipe for target 'incremental_test_4'
Makefile:4029: warning: overriding recipe for target 'incremental_test_5'
Makefile:4021: warning: ignoring old recipe for target 'incremental_test_5'
Makefile:4041: warning: overriding recipe for target 'incremental_test_6'
Makefile:4033: warning: ignoring old recipe for target 'incremental_test_6'
Makefile:4309: warning: overriding recipe for target 'pr17704a_test'
Makefile:4301: warning: ignoring old recipe for target 'pr17704a_test'
make[6]: Nothing to be done for 'install-info'.
make[6]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold/testsuite'
make[6]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
make[6]: Nothing to be done for 'install-info-am'.
make[6]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gold'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
make  install-recursive
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
Making install in po
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof/po'
make[5]: Nothing to be done for 'install'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof/po'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
make[6]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin'
  /bin/bash ./libtool   --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c gprof '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-gprof'
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c gprof /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-gprof
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/info'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 ../../binutils-2.32/gprof/gprof.info '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/info'
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../binutils-2.32/gprof/gprof.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-gprof.1'
make[6]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/gprof'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/intl'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/intl'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
make  install-recursive
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
Making install in po
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld/po'
make[5]: Nothing to be done for 'install'.
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld/po'
make[5]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
make[6]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin'
  /bin/bash ./libtool   --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c ld-new '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-ld.bfd'
libtool: install: /usr/local/lib/ptxdist-2019.09.0/bin/install -c ld-new /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/./arm-v7a-linux-gnueabihf-ld.bfd
/bin/bash ../../binutils-2.32/ld/../mkinstalldirs /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin
n=`echo ld.bfd | sed 's/^ld-new$/ld.bfd/;s&^&arm-v7a-linux-gnueabihf-&'`; \
if test "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin" != "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin"; then \
  rm -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld.bfd; \
  ln /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/$n /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld.bfd >/dev/null 2>/dev/null \
  ||  /bin/bash ./libtool --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c ld-new /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld.bfd; \
fi; \
if test "xyes" = "xyes"; then \
  ld=`echo ld | sed 's/^ld-new$/ld.bfd/;s&^&arm-v7a-linux-gnueabihf-&'`; \
  rm -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/$ld; \
  ln /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/$n /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/$ld >/dev/null 2>/dev/null \
  ||  /bin/bash ./libtool --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c ld-new /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/$ld; \
  if test "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin" != "/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin"; then \
    rm -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld; \
    ln /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/$n /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld >/dev/null 2>/dev/null \
    ||  /bin/bash ./libtool --mode=install /usr/local/lib/ptxdist-2019.09.0/bin/install -c ld-new /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld; \
  fi; \
fi
/bin/bash ../../binutils-2.32/ld/../mkinstalldirs /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/lib/ldscripts
mkdir -p -- /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/lib/ldscripts
for f in ldscripts/* ; do \
  /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 $f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/lib/$f ; \
done
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/info'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 ../../binutils-2.32/ld/ld.info '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/info'
 /usr/local/lib/ptxdist-2019.09.0/bin/mkdir -p '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1'
 /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 '../../binutils-2.32/ld/ld.1' '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/share/man/man1/arm-v7a-linux-gnueabihf-ld.1'
make[6]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
make[5]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/ld'
make[3]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/libiberty'
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/libiberty/testsuite'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/libiberty/testsuite'
if test -n ""; then \
	/bin/bash ../../binutils-2.32/libiberty/../mkinstalldirs /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/lib/`gcc -ggdb3 -O2 -print-multi-os-directory`; \
	/usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 ./libiberty.a /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/lib/`gcc -ggdb3 -O2 -print-multi-os-directory`/./libiberty.an; \
	( cd /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/lib/`gcc -ggdb3 -O2 -print-multi-os-directory` ; chmod 644 ./libiberty.an ;ranlib ./libiberty.an ); \
	mv -f /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/lib/`gcc -ggdb3 -O2 -print-multi-os-directory`/./libiberty.an /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/lib/`gcc -ggdb3 -O2 -print-multi-os-directory`/./libiberty.a; \
	case "" in \
	  /*)    thd=;; \
	  *)     thd=/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/include/;; \
	esac; \
	/bin/bash ../../binutils-2.32/libiberty/../mkinstalldirs /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32${thd}; \
	for h in ../../binutils-2.32/libiberty/../include/ansidecl.h ../../binutils-2.32/libiberty/../include/demangle.h ../../binutils-2.32/libiberty/../include/dyn-string.h ../../binutils-2.32/libiberty/../include/fibheap.h ../../binutils-2.32/libiberty/../include/floatformat.h ../../binutils-2.32/libiberty/../include/hashtab.h ../../binutils-2.32/libiberty/../include/libiberty.h ../../binutils-2.32/libiberty/../include/objalloc.h ../../binutils-2.32/libiberty/../include/partition.h ../../binutils-2.32/libiberty/../include/safe-ctype.h ../../binutils-2.32/libiberty/../include/sort.h ../../binutils-2.32/libiberty/../include/splay-tree.h ../../binutils-2.32/libiberty/../include/timeval-utils.h; do \
	  /usr/local/lib/ptxdist-2019.09.0/bin/install -c -m 644 $h /persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32${thd}; \
	done; \
fi
make[4]: Entering directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/libiberty/testsuite'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/libiberty/testsuite'
make[3]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build/libiberty'
make[2]: Nothing to be done for 'install-target'.
make[2]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build'
make[1]: Leaving directory '/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/build-cross/binutils-2.32-build'
'/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/bin/arm-v7a-linux-gnueabihf-ld' -> 'arm-v7a-linux-gnueabihf-ld.bfd'
'/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ar' -> '../../bin/arm-v7a-linux-gnueabihf-ar'
'/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/as' -> '../../bin/arm-v7a-linux-gnueabihf-as'
'/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld' -> '../../bin/arm-v7a-linux-gnueabihf-ld'
'/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld.bfd' -> '../../bin/arm-v7a-linux-gnueabihf-ld.bfd'
'/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ld.gold' -> '../../bin/arm-v7a-linux-gnueabihf-ld.gold'
'/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/nm' -> '../../bin/arm-v7a-linux-gnueabihf-nm'
'/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/objcopy' -> '../../bin/arm-v7a-linux-gnueabihf-objcopy'
'/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/objdump' -> '../../bin/arm-v7a-linux-gnueabihf-objdump'
'/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/ranlib' -> '../../bin/arm-v7a-linux-gnueabihf-ranlib'
'/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/readelf' -> '../../bin/arm-v7a-linux-gnueabihf-readelf'
'/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/packages/cross-binutils-2.32/opt/OSELAS.Toolchain-2019.09.0/arm-v7a-linux-gnueabihf/gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/arm-v7a-linux-gnueabihf/bin/strip' -> '../../bin/arm-v7a-linux-gnueabihf-strip'
mkdir -p "/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-target/arm-v7a-linux-gnueabihf/bin"
for file in \
	ar \
	as \
	ld \
	nm \
	objcopy \
	objdump \
	ranlib \
	strip \
	; do \
	ln -sf "../../../arm-v7a-linux-gnueabihf/bin/$file" \
		"/persistent/bamboo/OSELAS.Toolchain-2019.09.0/platform-arm-v7a-linux-gnueabihf-gcc-9.2.1-clang-8.0.1-glibc-2.30-binutils-2.32-kernel-5.0-sanitized/sysroot-target/arm-v7a-linux-gnueabihf/bin/$file"; \
done
finished target cross-binutils.install

-----------------------------------
target: cross-binutils.install.pack
-----------------------------------

finished target cross-binutils.install.pack

-----------------------------
target: cross-binutils.report
-----------------------------

Copy licenses for package: 'osi-conform/cross-binutils'...
finished target cross-binutils.report

-----------------------------------
target: cross-binutils.install.post
-----------------------------------

finished target cross-binutils.install.post

}}} 2019-09-19T03:29:54+0000 /usr/local/lib/ptxdist-2019.09.0/bin/ptxdist install cross-binutils; (exit value: 0)




[-- Attachment #3: Type: text/plain, Size: 92 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 7%]

* Re: [ptxdist] [ANNOUNCE] PTXdist 2019.07.0 released
  2019-07-18  6:38 10% ` Bruno Thomsen
@ 2019-07-18  8:24  0%   ` Michael Olbrich
  0 siblings, 0 replies; 37+ results
From: Michael Olbrich @ 2019-07-18  8:24 UTC (permalink / raw)
  To: ptxdist

Hello,

On Thu, Jul 18, 2019 at 06:38:17AM +0000, Bruno Thomsen wrote:
> > I'm happy to announce that I've just released ptxdist-2019.07.0.
> >
> > This release contains several bigger changes.
> 
> I have discovered a bug in ptxdist-2019.07.0 when running it in docker.
> As this always starts without a ~/.ptxdist directory and therefore no old
> ptxdistrc-xxxx.xx configuration file.
> When running ptxdist-2019.07.0 it creates the ~/.ptxdist directory and
> then exits with an error as it's unable to find an old ptxdistrc
> configuration file.
> 
> $ ptxdist-2019.07.0
> /usr/local/bin/ptxdist-2019.07.0: line 2261: /home/developer/.ptxdist/ptxdistrc-2010.01: No such file or directory
> /usr/local/lib/ptxdist-2019.07.0/scripts/libptxdist.sh: line 105: /home/developer/.ptxdist/ptxdistrc-2010.01: No such file or directory
> cp: cannot stat '/home/developer/.ptxdist/ptxdistrc-2010.01': No such file or directory
> PTXdist: fatal error ... cannot start, sorry!
> 
> The workaround I currently use is to call the ptxdist-2018.12.0 version
> inside the same docker image, used for compiling OSELAS.Toolchain, before
> calling the new ptxdist version. As this creates
> ~/.ptxdist/ptxdistrc-2018.12 configuration file which then allows
> ptxdist-2019.07.0 to start and create ~/.ptxdist/ptxdistrc-2019.07
> successfully.

Thanks for the report. I've pushed a fix to master.

Regards,
Michael

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 0%]

* Re: [ptxdist] [ANNOUNCE] PTXdist 2019.07.0 released
  @ 2019-07-18  6:38 10% ` Bruno Thomsen
  2019-07-18  8:24  0%   ` Michael Olbrich
  0 siblings, 1 reply; 37+ results
From: Bruno Thomsen @ 2019-07-18  6:38 UTC (permalink / raw)
  To: ptxdist

Hi,

> I'm happy to announce that I've just released ptxdist-2019.07.0.
>
> This release contains several bigger changes.

I have discovered a bug in ptxdist-2019.07.0 when running it in docker.
As this always starts without a ~/.ptxdist directory and therefore no old ptxdistrc-xxxx.xx configuration file.
When running ptxdist-2019.07.0 it creates the ~/.ptxdist directory and then exits with an error as it's unable to find an old ptxdistrc configuration file.

$ ptxdist-2019.07.0
/usr/local/bin/ptxdist-2019.07.0: line 2261: /home/developer/.ptxdist/ptxdistrc-2010.01: No such file or directory
/usr/local/lib/ptxdist-2019.07.0/scripts/libptxdist.sh: line 105: /home/developer/.ptxdist/ptxdistrc-2010.01: No such file or directory
cp: cannot stat '/home/developer/.ptxdist/ptxdistrc-2010.01': No such file or directory
PTXdist: fatal error ... cannot start, sorry!

The workaround I currently use is to call the ptxdist-2018.12.0 version inside the same docker image, used for compiling OSELAS.Toolchain, before calling the new ptxdist version. As this creates ~/.ptxdist/ptxdistrc-2018.12 configuration file which then allows ptxdist-2019.07.0 to start and create ~/.ptxdist/ptxdistrc-2019.07 successfully.

$ ptxdist-2018.12.0

PTXdist 2018.12.0                Build System for Embedded Linux Systems


$ ptxdist-2019.07.0

PTXdist 2019.07.0                Build System for Embedded Linux Systems


/Bruno
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 10%]

* Re: [ptxdist] ./p images failure inside a docker container
  2018-11-02 12:03 20% [ptxdist] ./p images failure inside a docker container Rajkumar Athimoolam (RBEI/ECG-EP3)
@ 2018-11-02 14:29  9% ` Marc Kleine-Budde
  0 siblings, 0 replies; 37+ results
From: Marc Kleine-Budde @ 2018-11-02 14:29 UTC (permalink / raw)
  To: ptxdist, Rajkumar Athimoolam (RBEI/ECG-EP3)


[-- Attachment #1.1.1: Type: text/plain, Size: 934 bytes --]

On 11/02/2018 01:03 PM, Rajkumar Athimoolam (RBEI/ECG-EP3) wrote:
> Hi,
>  
> I have created a docker image with ptxdist and oselas toolchain and
> trying to generate ubifs image for our project.
> But the image generation fails while generating the signed image with
> below output
>  
> /Signing (debug - prepare step)
> '/tmp/ptxdist.hjTgt3/genimage.FOmRZ2/data' this may take some
> time...ioctl() failed/
> /errno: Inappropriate ioctl for device (25)/
>  
> Am I am missing something inside docker container? Because usually it
> works fine outside the docker container

What's the filesystem of /tmp inside your container?

Marc

-- 
Pengutronix e.K.                  | Marc Kleine-Budde           |
Industrial Linux Solutions        | Phone: +49-231-2826-924     |
Vertretung West/Dortmund          | Fax:   +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |


[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

[-- Attachment #2: Type: text/plain, Size: 91 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 9%]

* [ptxdist] ./p images failure inside a docker container
@ 2018-11-02 12:03 20% Rajkumar Athimoolam (RBEI/ECG-EP3)
  2018-11-02 14:29  9% ` Marc Kleine-Budde
  0 siblings, 1 reply; 37+ results
From: Rajkumar Athimoolam (RBEI/ECG-EP3) @ 2018-11-02 12:03 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 516 bytes --]

Hi,

I have created a docker image with ptxdist and oselas toolchain and trying to generate ubifs image for our project.
But the image generation fails while generating the signed image with below output

Signing (debug - prepare step) '/tmp/ptxdist.hjTgt3/genimage.FOmRZ2/data' this may take some time...ioctl() failed
errno: Inappropriate ioctl for device (25)

Am I am missing something inside docker container? Because usually it works fine outside the docker container

Best regards,

Rajkumar



[-- Attachment #1.2: Type: text/html, Size: 1513 bytes --]

[-- Attachment #2: Type: text/plain, Size: 91 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 20%]

* Re: [ptxdist] weird ptxdist -q -j go  problems
  2018-02-25 12:02  7%       ` Erwin Rol
@ 2018-02-25 12:30  0%         ` Michael Olbrich
  0 siblings, 0 replies; 37+ results
From: Michael Olbrich @ 2018-02-25 12:30 UTC (permalink / raw)
  To: ptxdist

Hi,

On Sun, Feb 25, 2018 at 01:02:58PM +0100, Erwin Rol wrote:
> On Sun, 2018-02-25 at 12:43 +0100, Michael Olbrich wrote:
> > > The build system is Centos7 with bash;
> > > GNU bash, version 4.2.46(2)-release (x86_64-redhat-linux-gnu)
> > > 
> > > Not the newest but on the other hand Centos7/RHEL7 is a very stable
> > > platform. It would be very nice if it could be part of the list of
> > > platforms Pengutronix uses to test ptxdist ;-)
> > 
> > I run build tests in several different chroots and Centos7 is one of them.
> > Unfortunately that one is currently broken, because it's missing Python 3.4
> > needed for meson :-/.
> 
> install devtoolset-6, this is what I install in my centos7 docker;
> 
> RUN \
>     echo 'Upgrading all system packages to the latest available versions' >&2 && \
>     yum -y install epel-release && \
>     yum -y install centos-release-scl && \
>     yum -y install devtoolset-6 && \
>     yum -y update
>     
> RUN \
>     echo 'Installing host tools and build system functionality' >&2 && \
>     yum -y install \
[...]

Thanks for the hint. I know that there are multiple ways to install Python
3.4 on Centos7 but I wasn't sure which one I should use. Picking one that
someone already uses in combination with PTXdist sounds like a good idea.
Now I just need to find the time to properly integrate this...

> > Some packages using glib also need host-glib for some of the helper tools
> > like glib-mkenums.
> > 
> > Can you send a patch? And please include the reason in the commit message.
> > Or the build error if it's useful. That helps while reviewing the
> > dependencies for the next update.
> 
> I will have to break it again to get the error msg :-) I'll see if I
> find some time later today.

That would be great, thanks.

> > > BTW: wouldn't it be easier to add select HOST_GLIB to glib.in ? Or even
> > > more general do that for all packages that have a host-* version ?
> > 
> > Not all packages that use glib actually need host-glib and I'd like to
> > avoid unnecessary dependenciesa.
> 
> I'll see if I can find some time to do  
> ./ptxdist clean; ./ptxdist compile pkg_that_uses_glib 
> to see what builds and waht doesn't.
> 
> Of course that is going to cost a lot of build time, so it might take a
> while to get done.

I know. It makes systematic tests like this difficult.

> > > I'll look into it and report back when I know more, certainly now I
> > > know -j really is a first class citizen :-)
> > 
> > I've spent quite some time to make '-j' work without problems and as fast
> > as possible without overloading the build server. All my ptxdist build
> > tests use it. I's most definitely a first class citizen.
> 
> That is good, cause those "configure" stages take for ever :-) 

Exactly, and when I combined -jiX with -jeX then my colleagues complained
when the compile jobs overloaded the build server. So I started looking for
a solution and came up with the mechanism behind -j.

Michael

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 0%]

* Re: [ptxdist] weird ptxdist -q -j go  problems
  2018-02-25 11:43  0%     ` Michael Olbrich
@ 2018-02-25 12:02  7%       ` Erwin Rol
  2018-02-25 12:30  0%         ` Michael Olbrich
  0 siblings, 1 reply; 37+ results
From: Erwin Rol @ 2018-02-25 12:02 UTC (permalink / raw)
  To: ptxdist

On Sun, 2018-02-25 at 12:43 +0100, Michael Olbrich wrote:
> Hi,
> 
> On Sun, Feb 25, 2018 at 11:56:47AM +0100, Erwin Rol wrote:
> > The build system is Centos7 with bash;
> > GNU bash, version 4.2.46(2)-release (x86_64-redhat-linux-gnu)
> > 
> > Not the newest but on the other hand Centos7/RHEL7 is a very stable
> > platform. It would be very nice if it could be part of the list of
> > platforms Pengutronix uses to test ptxdist ;-)
> 
> I run build tests in several different chroots and Centos7 is one of them.
> Unfortunately that one is currently broken, because it's missing Python 3.4
> needed for meson :-/.

install devtoolset-6, this is what I install in my centos7 docker;

RUN \
    echo 'Upgrading all system packages to the latest available versions' >&2 && \
    yum -y install epel-release && \
    yum -y install centos-release-scl && \
    yum -y install devtoolset-6 && \
    yum -y update
    
RUN \
    echo 'Installing host tools and build system functionality' >&2 && \
    yum -y install \
        cmake curl cppcheck \
        gawk make wget tar bzip2 gzip unzip perl patch \
        diffutils diffstat git cpp gcc gcc-c++ glibc-devel texinfo chrpath socat \
        perl-Data-Dumper perl-Text-ParseWords perl-Thread-Queue xz which \
        ncurses-devel flex bison texinfo gettext expect dialog gperf imake \
        xmlto-tex libffi-devel ruby autogen automake bc lzop sudo \
        perl-XML-Parser intltool parted tig htop vim file \
        perl-XML-LibXML perl-JSON \
        libX11-devel openssl-devel glibc.i686 libffi-devel \
        perl-Carp perl-Encode perl-Exporter perl-File-Path perl-File-Temp perl-Filter \
        perl-Getopt-Long perl-HTTP-Tiny perl-PathTools perl-Pod-Escapes perl-Pod-Perldoc \
        perl-Pod-Simple perl-Pod-Usage perl-Scalar-List-Utils perl-Socket perl-Storable \
        perl-Text-ParseWords perl-Time-Local perl-constant perl-libs perl-macros perl-parent \
        perl-podlators perl-threads perl-threads-shared runtime perl-Data-Dumper \
        perl-Thread-Queue perl-JSON-PP emacs unix2dos dos2unix \
        dosfstools mtools pxz gtk-doc elfutils-libelf-devel subversion git-svn \
        python34 python34-devel python34-pip python34-libs \
        python python-mako python-devel libxml2-python python-argparse

> Some packages using glib also need host-glib for some of the helper tools
> like glib-mkenums.
> 
> Can you send a patch? And please include the reason in the commit message.
> Or the build error if it's useful. That helps while reviewing the
> dependencies for the next update.

I will have to break it again to get the error msg :-) I'll see if I
find some time later today.

> > BTW: wouldn't it be easier to add select HOST_GLIB to glib.in ? Or even
> > more general do that for all packages that have a host-* version ?
> 
> Not all packages that use glib actually need host-glib and I'd like to
> avoid unnecessary dependenciesa.

I'll see if I can find some time to do  
./ptxdist clean; ./ptxdist compile pkg_that_uses_glib 
to see what builds and waht doesn't.

Of course that is going to cost a lot of build time, so it might take a
while to get done.

> > I'll look into it and report back when I know more, certainly now I
> > know -j really is a first class citizen :-)
> 
> I've spent quite some time to make '-j' work without problems and as fast
> as possible without overloading the build server. All my ptxdist build
> tests use it. I's most definitely a first class citizen.

That is good, cause those "configure" stages take for ever :-) 

- Erwin


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 7%]

* Re: [ptxdist] weird ptxdist -q -j go  problems
  2018-02-25 10:56  8%   ` Erwin Rol
@ 2018-02-25 11:43  0%     ` Michael Olbrich
  2018-02-25 12:02  7%       ` Erwin Rol
  0 siblings, 1 reply; 37+ results
From: Michael Olbrich @ 2018-02-25 11:43 UTC (permalink / raw)
  To: ptxdist

Hi,

On Sun, Feb 25, 2018 at 11:56:47AM +0100, Erwin Rol wrote:
> The build system is Centos7 with bash;
> GNU bash, version 4.2.46(2)-release (x86_64-redhat-linux-gnu)
> 
> Not the newest but on the other hand Centos7/RHEL7 is a very stable
> platform. It would be very nice if it could be part of the list of
> platforms Pengutronix uses to test ptxdist ;-)

I run build tests in several different chroots and Centos7 is one of them.
Unfortunately that one is currently broken, because it's missing Python 3.4
needed for meson :-/.

> > > Of course not having the _CONF_TOOL was an error from my side, after
> > > fixing it it seemed to work.
> > > 
> > > But now the ptxdist -j -q go from time to time stops with an error. In
> > > the log file it always seems to say something like;
> > > 
> > > }}} 2018-02-25T08:38:46+0000
> > > /home/ANNAX.LOCAL/erro/Projects/ABE.centos7/bsps/Seco_E38XX_64/master/p
> > > txdist/bin/ptxdist go -j -q; (exit value: 2)
> > > 
> > > 
> > > I have seen this with busybox and openssl with different compilers
> > > (x86_62 and armv5). It always is exit value: 2.
> > > 
> > > When I than do a ./ptdixt go again it happily continues (even if I use
> > > -q -j) 
> > 
> > Can you send the relevant parts from the logfile? I know there is a
> > dependency problem in openssl. I cause very rare build errors. I've yet to
> > figure out the exact cause. It's not '-j' specific but that seems to
> > trigger it more often.
> > 
> > I'm not aware of any problems with busybox. A log with some more details
> > would be helpful.
> 
> I found a missing dependency for libsoup, it needs glib host tools. I
> am running from a minimal docker so those aren't available on the host
> and so libsoup.in needed select HOST_GLIB
> 
> Maybe it is just caused by some other missing deps. 

Some packages using glib also need host-glib for some of the helper tools
like glib-mkenums.

Can you send a patch? And please include the reason in the commit message.
Or the build error if it's useful. That helps while reviewing the
dependencies for the next update.

> BTW: wouldn't it be easier to add select HOST_GLIB to glib.in ? Or even
> more general do that for all packages that have a host-* version ?

Not all packages that use glib actually need host-glib and I'd like to
avoid unnecessary dependenciesa.

> I'll look into it and report back when I know more, certainly now I
> know -j really is a first class citizen :-)

I've spent quite some time to make '-j' work without problems and as fast
as possible without overloading the build server. All my ptxdist build
tests use it. I's most definitely a first class citizen.

Michael

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 0%]

* Re: [ptxdist] weird ptxdist -q -j go  problems
  @ 2018-02-25 10:56  8%   ` Erwin Rol
  2018-02-25 11:43  0%     ` Michael Olbrich
  0 siblings, 1 reply; 37+ results
From: Erwin Rol @ 2018-02-25 10:56 UTC (permalink / raw)
  To: ptxdist

Hey Michael,

On Sun, 2018-02-25 at 11:38 +0100, Michael Olbrich wrote:
> Hi,
> 
> On Sun, Feb 25, 2018 at 10:17:46AM +0100, Erwin Rol wrote:
> > how wel is the -j option of ptxdist tested ? Is it used a lot by others
> > or is it more an obscure untested option ?
> 
> I always use '-j -q', unless I test specific packages or need to debug
> build error.
> 

OK that is good :-) 

> > With the lastest version of ptxdist I wanted to try the -j option and
> > am running into weird problems. 
> > 
> > First I forgot to add a _CONF_TOOL setting in one of my *.make files,
> > and I found a file called "11" in my dir with the following content;
> > 
> > ptxdist: error: automatic prepare tool selection failed. Set <PKG>_CONF_TOOL
> > 
> > that "11" somehow sounds like it should have been a filedescriptor
> > number and not an actual file. 
> 
> I think this is an issue with your bash version. The code for this message
> is this:
> [...]
> echo "${PTXDIST_LOG_PROMPT}error: $1" >&${PTXDIST_FD_STDERR}
> [...]
> 
> I think older bash versions have a problem with this under some
> circumstances. I don't remember all the details, but it may be triggered by
> the call chain 'bash -> make -> bash'. The fd is  opened in the first bash
> and used in the second.

The build system is Centos7 with bash;
GNU bash, version 4.2.46(2)-release (x86_64-redhat-linux-gnu)

Not the newest but on the other hand Centos7/RHEL7 is a very stable
platform. It would be very nice if it could be part of the list of
platforms Pengutronix uses to test ptxdist ;-)

> 
> > Of course not having the _CONF_TOOL was an error from my side, after
> > fixing it it seemed to work.
> > 
> > But now the ptxdist -j -q go from time to time stops with an error. In
> > the log file it always seems to say something like;
> > 
> > }}} 2018-02-25T08:38:46+0000
> > /home/ANNAX.LOCAL/erro/Projects/ABE.centos7/bsps/Seco_E38XX_64/master/p
> > txdist/bin/ptxdist go -j -q; (exit value: 2)
> > 
> > 
> > I have seen this with busybox and openssl with different compilers
> > (x86_62 and armv5). It always is exit value: 2.
> > 
> > When I than do a ./ptdixt go again it happily continues (even if I use
> > -q -j) 
> 
> Can you send the relevant parts from the logfile? I know there is a
> dependency problem in openssl. I cause very rare build errors. I've yet to
> figure out the exact cause. It's not '-j' specific but that seems to
> trigger it more often.
> 
> I'm not aware of any problems with busybox. A log with some more details
> would be helpful.

I found a missing dependency for libsoup, it needs glib host tools. I
am running from a minimal docker so those aren't available on the host
and so libsoup.in needed select HOST_GLIB

Maybe it is just caused by some other missing deps. 

BTW: wouldn't it be easier to add select HOST_GLIB to glib.in ? Or even
more general do that for all packages that have a host-* version ?

I'll look into it and report back when I know more, certainly now I
know -j really is a first class citizen :-)

- Erwin


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 8%]

* Re: [ptxdist] GLIB not building (ptxdist:2017-07, ArchLinux)
  2017-08-31 18:17  8% ` Ian Abbott
@ 2017-08-31 18:28  0%   ` Ian Abbott
  0 siblings, 0 replies; 37+ results
From: Ian Abbott @ 2017-08-31 18:28 UTC (permalink / raw)
  To: ptxdist, Artur Wiebe

On 31/08/17 19:17, Ian Abbott wrote:
> On 30/08/17 09:32, Artur Wiebe wrote:
>> Hi,
>>
>> On my ArchLinux GLIB from current PtxDist is not building.
>>
>> I get the error:
>> ./.libs/libgio-2.0.so: undefined reference to `__dn_expand'
>> ./.libs/libgio-2.0.so: undefined reference to `__res_query'
>> collect2: error: ld returned 1 exit status
>> make[5]: *** [Makefile:2285: glib-compile-resources] Error 1
>>
>> Does anyone have any idea?
>>
>> Best Regards,
>> Artur
> 
> I attempted (and failed) to reproduce the problem by building 
> "DistroKit" for the "platform-v7a" BSP (see 
> <http://www.pengutronix.de/en/2017-08-28-distrokit-a-playground-bsp-for-ptxdist.html>) 
> in an up-to-date ArchLinux "Docker" container on my Debian "testing" 
> amd64 host.  The build used the "OSELAS.Toolchain-2016.06.1" toolchain 
> for the "arm-v7a-linux-gnueabihf" target architecture and Arch Linux's 
> current native toolchain for the amd64 host.
> 
> I ran into a couple of known problems in ptxdist-2017.07.0 (due to the 
> host-ncurses and host-intltool packages needing fixes) but after fixing 
> those the build went smoothly.
> 
> If I run objdump -T on the built libgio-2.0.so.0.5200.1 file, it 
> contains both the '__dn_expand' and '__res_query' symbols in its .text 
> section as expected.

Actually, to clarify, the above objdump -T was for the target (arm-v7a) 
version of the libgio-2.0.so.0.5200.1 file.  If I objdump -T on the host 
(amd64) version of the file, the '__dn_expand' and '__res_query' symbols 
are undefined and imported from GLIBC_2.2.5.

-- 
-=( Ian Abbott @ MEV Ltd.    E-mail: <abbotti@mev.co.uk> )=-
-=(                          Web: http://www.mev.co.uk/  )=-

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 0%]

* Re: [ptxdist] GLIB not building (ptxdist:2017-07, ArchLinux)
  @ 2017-08-31 18:17  8% ` Ian Abbott
  2017-08-31 18:28  0%   ` Ian Abbott
  0 siblings, 1 reply; 37+ results
From: Ian Abbott @ 2017-08-31 18:17 UTC (permalink / raw)
  To: ptxdist, Artur Wiebe

On 30/08/17 09:32, Artur Wiebe wrote:
> Hi,
> 
> On my ArchLinux GLIB from current PtxDist is not building.
> 
> I get the error:
> ./.libs/libgio-2.0.so: undefined reference to `__dn_expand'
> ./.libs/libgio-2.0.so: undefined reference to `__res_query'
> collect2: error: ld returned 1 exit status
> make[5]: *** [Makefile:2285: glib-compile-resources] Error 1
> 
> Does anyone have any idea?
> 
> Best Regards,
> Artur

I attempted (and failed) to reproduce the problem by building 
"DistroKit" for the "platform-v7a" BSP (see 
<http://www.pengutronix.de/en/2017-08-28-distrokit-a-playground-bsp-for-ptxdist.html>) 
in an up-to-date ArchLinux "Docker" container on my Debian "testing" 
amd64 host.  The build used the "OSELAS.Toolchain-2016.06.1" toolchain 
for the "arm-v7a-linux-gnueabihf" target architecture and Arch Linux's 
current native toolchain for the amd64 host.

I ran into a couple of known problems in ptxdist-2017.07.0 (due to the 
host-ncurses and host-intltool packages needing fixes) but after fixing 
those the build went smoothly.

If I run objdump -T on the built libgio-2.0.so.0.5200.1 file, it 
contains both the '__dn_expand' and '__res_query' symbols in its .text 
section as expected.

-- 
-=( Ian Abbott @ MEV Ltd.    E-mail: <abbotti@mev.co.uk> )=-
-=(                          Web: http://www.mev.co.uk/  )=-

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[relevance 8%]

Results 1-37 of 37 | reverse | sort options + mbox downloads above
-- links below jump to the message on this page --
2017-08-30  8:32     [ptxdist] GLIB not building (ptxdist:2017-07, ArchLinux) Artur Wiebe
2017-08-31 18:17  8% ` Ian Abbott
2017-08-31 18:28  0%   ` Ian Abbott
2018-02-25  9:17     [ptxdist] weird ptxdist -q -j go problems Erwin Rol
2018-02-25 10:38     ` Michael Olbrich
2018-02-25 10:56  8%   ` Erwin Rol
2018-02-25 11:43  0%     ` Michael Olbrich
2018-02-25 12:02  7%       ` Erwin Rol
2018-02-25 12:30  0%         ` Michael Olbrich
2018-11-02 12:03 20% [ptxdist] ./p images failure inside a docker container Rajkumar Athimoolam (RBEI/ECG-EP3)
2018-11-02 14:29  9% ` Marc Kleine-Budde
2019-07-05 13:13     [ptxdist] [ANNOUNCE] PTXdist 2019.07.0 released Michael Olbrich
2019-07-18  6:38 10% ` Bruno Thomsen
2019-07-18  8:24  0%   ` Michael Olbrich
2019-09-19  3:56  7% [ptxdist] OSELAS.Toolchain 2019.09.0 - incorrect install path Rüdiger, Christoph
2019-10-15 13:35 10% [ptxdist] ptxdist: support podman Bruno Thomsen
2019-10-15 23:00  7% ` Andreas Friesen
2021-01-20 17:39  9% [ptxdist] Ptxdist lightweight packaging usecase Christian Melki
2021-01-21  6:38  0% ` Denis Osterland-Heim
2021-01-21 12:07  7% ` Michael Olbrich
     [not found]     <CAMwGMjwgv1kQotakLPtFV_+_C4mSQQtfJ+EbrQrN5rQDaa=JtA@mail.gmail.com>
2021-06-15  6:10  8% ` [ptxdist] problem configuring python3 Michael Olbrich
     [not found]       ` <CAMwGMjzYuSL0UkfU1YYG+wjw6bngL4Evjf5c9xSuDmwfxYyLZA@mail.gmail.com>
2021-06-15 12:08  0%     ` Michael Olbrich
     [not found]           ` <CAMwGMjyVmD0Zc-swQjtBQcMXrQQNpBFAXuWWNY47nCDbNvvP9Q@mail.gmail.com>
2021-06-15 13:54  0%         ` Michael Olbrich
     [not found]               ` <CAMwGMjxjrsXFa1LqQ7YqkdQh2tB227V08OTbeh=iUYKZuQLHyw@mail.gmail.com>
2021-06-15 14:18  0%             ` Michael Olbrich
2021-08-15  8:47     [ptxdist] host-elf-h-compat: Upstream server seems to be unstable Felix Mellmann
2021-08-16  9:05  7% ` Roland Hieber
2022-01-27 16:37 17% [ptxdist] Docker rules Mircea Ciocan
2022-01-27 17:22 21% ` Alexander Dahl
2022-01-28 11:01 20%   ` Michael Olbrich
2022-01-28 11:15  9%     ` Felix Mellmann
2022-01-28 11:15  9%     ` Felix Mellmann
2022-01-28 12:40  9%     ` Christian Melki
2022-01-28 15:18 20%   ` Mircea Ciocan
2022-03-17 16:00 19%   ` Enrico Weigelt, metux IT consult
2022-03-18  7:36 17%     ` Alexander Dahl
2022-02-22 10:59 10% [ptxdist] [PATCH] libnice: version bump 0.1.16 -> 0.1.18 Philipp Zabel
2022-05-09 12:05     [ptxdist] [PATCH 1/2] python3-gunicorn: new package Bruno Thomsen
2022-05-13  7:15     ` Michael Olbrich
2022-05-14 10:50       ` Bruno Thomsen
2022-05-18 13:47         ` Michael Olbrich
2022-05-19 16:24  9%       ` Bruno Thomsen
2022-10-04  7:18 10% [ptxdist] Golang (again) Ladislav Michl
     [not found]     <PA4PR02MB6639ADCA4874D798F63AD2C6DE8B9@PA4PR02MB6639.eurprd02.prod.outlook.com>
2023-03-29 11:47  0% ` [ptxdist] ptxdist go problem Alexander Dahl
2023-09-07 15:03     [ptxdist] SBOM support Simon Falsig
2023-09-08 18:22     ` Michael Olbrich
2023-09-11 13:11  7%   ` Gavin Schenk
2023-09-11 17:08  0%     ` Christian Melki
2023-09-13 16:05  0%     ` Simon Falsig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox