From ea143da7fbc3c8507e62d86c816d56a2013e590f Mon Sep 17 00:00:00 2001 From: Rainer Orth Date: Wed, 21 Mar 2018 17:39:16 +0000 Subject: Enable jit on Solaris: soname option and EXTRA_GCC_LIBS (PR jit/84288) gcc/jit: PR jit/84288 * Make-lang.in ($(LIBGCCJIT_FILENAME)): Add $(EXTRA_GCC_LIBS). gcc: PR jit/84288 * configure.ac (gcc_cv_ld_soname) <*-*-solaris2*>: Set. * configure: Regenerate. From-SVN: r258727 --- gcc/configure | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gcc/configure') diff --git a/gcc/configure b/gcc/configure index c2d3f75..7fe7efe 100755 --- a/gcc/configure +++ b/gcc/configure @@ -24490,6 +24490,12 @@ elif test x$gcc_cv_ld != x; then gcc_cv_ld_soname=yes ld_soname_option='-install_name' ;; + # Solaris 2 ld always supports -h. It also supports --soname for GNU + # ld compatiblity since some Solaris 10 update. + *-*-solaris2*) + gcc_cv_ld_soname=yes + ld_soname_option='-h' + ;; esac fi # Don't AC_DEFINE result, only used in jit/Make-lang.in so far. -- cgit v1.1