Hugo... having a bit of trouble getting your toolchain to build on OS X. I've gotten your distribution and followed the instructions. Did "make install-deps" to add GMP, MPC and MPFR, but when compiling the toolchain it stops on the GCC configuration saying that I'm missing those libraries. It's seeing the header files properly, but it doesn't look like it's seeing the libraries.
I'll be the first to admit, I'm somewhat inexperienced with make. I'm not 100% sure if I need to edit the makefile with the appropriate "--
with" options, or if I need to do something else. It looks like the libraries were installed in my /usr/local/lib/ directory. Any idea what I'm missing?
The exact message is below:
checking for the correct version of gmp.h... yes
checking for the correct version of mpfr.h... yes
checking for the correct version of mpc.h... yes
checking for the correct version of the gmp/mpfr/mpc libraries... no
configure: error: Building GCC requires GMP 4.2+, MPFR 2.3.1+ and MPC 0.8.0+.
Try the --
with-gmp, --
with-mpfr and/or --
with-mpc options to specify
their locations. Source code for these libraries can be found at
their respective hosting sites as well as at
ftp://gcc.gnu.org/pub/gcc/infrastructure/. See also
http://gcc.gnu.org/install/prerequisites.html for additional info. If
you obtained GMP, MPFR and/or MPC from a vendor distribution package,
make sure that you have installed both the libraries and the header
files. They may be located in separate packages.
Hugo... having a bit of trouble getting your toolchain to build on OS X. I've gotten your distribution and followed the instructions. Did "make install-deps" to add GMP, MPC and MPFR, but when compiling the toolchain it stops on the GCC configuration saying that I'm missing those libraries. It's seeing the header files properly, but it doesn't look like it's seeing the libraries.
I'll be the first to admit, I'm somewhat inexperienced with make. I'm not 100% sure if I need to edit the makefile with the appropriate "
--
with" options, or if I need to do something else. It looks like the libraries were installed in my /usr/local/lib/ directory. Any idea what I'm missing?The exact message is below:
checking for the correct version of gmp.h... yes
checking for the correct version of mpfr.h... yes
checking for the correct version of mpc.h... yes
checking for the correct version of the gmp/mpfr/mpc libraries... no
configure: error: Building GCC requires GMP 4.2+, MPFR 2.3.1+ and MPC 0.8.0+. Try the
--
with-gmp,--
with-mpfr and/or--
with-mpc options to specify their locations. Source code for these libraries can be found at their respective hosting sites as well as at ftp://gcc.gnu.org/pub/gcc/infrastructure/. See also http://gcc.gnu.org/install/prerequisites.html for additional info. If you obtained GMP, MPFR and/or MPC from a vendor distribution package, make sure that you have installed both the libraries and the header files. They may be located in separate packages.