Thursday, 21 April 2022

[gccsdk] A cert issue with www.mpfr.org broke build-world added --no-check-certificate to work around it.

I was just building GCCSDK on a new machines (Rocky Linux 8.5 on x86) and build-world complained about being unable to verify the cert for www.mpfr.org.

 

I added --no-check-certificate to the Makefile as shown below and building continued.

# Download mpfr source:

$(SRCORIGDIR)/mpfr-$(MPFR_VERSION).tar.bz2:

        -mkdir -p $(SRCORIGDIR)

        cd $(SRCORIGDIR) && wget --no-check-certificate -c https://www.mpfr.org/mpfr-$(MPFR_VERSION)/mpfr-$(MPFR_VERSION).tar.bz2

        touch $@

 

It may be distro related, I will check Ubuntu later but just in case anybody else runs into it the work around wasn't difficult.

Alan

 

No comments:

Post a Comment