This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] PR other/55291: Add support for GCC multilib run-time libraries to libsanitizer
Il 15/11/2012 17:28, H.J. Lu ha scritto:
> On Thu, Nov 15, 2012 at 8:08 AM, Paolo Bonzini <bonzini@gnu.org> wrote:
>> Il 15/11/2012 17:02, H.J. Lu ha scritto:
>>>>>>> I can reproduce it with --enable-version-specific-runtime-libs. I am
>>>>>>> taking a look.
>>>>>>>
>>>>>
>>>>> I am checking in this patch.
>>>>>
>>> This is what I checked in.
>>
>> libssp et al. do not need any of this stuff.
>>
>> What's special about libsanitizer?
>>
>> Paolo
>
> Did you mean the
>
> diff --git a/libsanitizer/configure.ac b/libsanitizer/configure.ac
> index 27a7f95..76a19b6 100644
> --- a/libsanitizer/configure.ac
> +++ b/libsanitizer/configure.ac
> @@ -82,6 +82,9 @@ _EOF
> mv tmp$$ $ac_file
> rm vpsed$$
> echo 'MULTISUBDIR =' >> $ac_file
> + ml_norecursion=yes
> + . ${multi_basedir}/config-ml.in
> + AS_UNSET([ml_norecursion])
> ])
>
> part? libstdc++ and libsanitizer are only libraries which need
> it since they build libraries in subdirectories.
I see, thanks.
Paolo