<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Oct 21, 2015 at 10:32 AM, Benjamin Kramer <span dir="ltr"><<a href="mailto:benny.kra@gmail.com" target="_blank">benny.kra@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><span class="">On Wed, Oct 21, 2015 at 7:22 PM, David Blaikie via llvm-commits<br>
<<a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a>> wrote:<br>
><br>
><br>
> On Tue, Oct 20, 2015 at 9:18 PM, Manuel Klimek <<a href="mailto:klimek@google.com">klimek@google.com</a>> wrote:<br>
>><br>
>> I needed to set the binutils include dir (and install binutils-dev)<br>
><br>
><br>
> Great - that did it. Reckon there's any upstream bots we could/should update<br>
> with this config to catch these things sooner in general?<br>
<br>
</span>At least one of the sanitizer bots (sanitizer-x86_64-linux) builds the<br>
gold plugin with -Werror, I guess the failure got lost in the noise or<br>
it was red already.<br></blockquote><div><br></div><div>Looks like the bot did go green->red on my original commit, and /possibly/ for this very reason. But it's really hard to tell just looking at the log:<br><br><a href="http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux/builds/20857/steps/annotate/logs/stdio">http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux/builds/20857/steps/annotate/logs/stdio</a><br><br>Now that I know what I'm looking for I can find that error in the log. But it's nowhere near the end of the log, and there are other "red" lines and other errors/spurious results I think (though I'm not sure - there are lines in red after test executions, but it's hard to tell what they mean/if they're relevant). I probably figured if the tests ran then my change was fine - as it should've halted the build... <br><br> - Dave</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<br>
- Ben<br>
<div class=""><div class="h5"><br>
>> On Tue, Oct 20, 2015, 9:06 PM David Blaikie <<a href="mailto:dblaikie@gmail.com">dblaikie@gmail.com</a>> wrote:<br>
>>><br>
>>> On Tue, Oct 20, 2015 at 1:21 AM, Manuel Klimek via llvm-commits<br>
>>> <<a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a>> wrote:<br>
>>>><br>
>>>> Author: klimek<br>
>>>> Date: Tue Oct 20 03:21:01 2015<br>
>>>> New Revision: 250805<br>
>>>><br>
>>>> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=250805&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=250805&view=rev</a><br>
>>>> Log:<br>
>>>> Make class final to pacify -Wnon-virtual-dtor.<br>
>>><br>
>>><br>
>>> Shiny - thanks! Any details on why this isn't built on any buildbot (or<br>
>>> perhaps I missed the fail-mail) and/or how to configure it to be built in a<br>
>>> local build? (so I can ensure I don't break it in the future)<br>
>>><br>
>>><br>
>>>><br>
>>>><br>
>>>> Modified:<br>
>>>>     llvm/trunk/tools/gold/gold-plugin.cpp<br>
>>>><br>
>>>> Modified: llvm/trunk/tools/gold/gold-plugin.cpp<br>
>>>> URL:<br>
>>>> <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/gold/gold-plugin.cpp?rev=250805&r1=250804&r2=250805&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/gold/gold-plugin.cpp?rev=250805&r1=250804&r2=250805&view=diff</a><br>
>>>><br>
>>>> ==============================================================================<br>
>>>> --- llvm/trunk/tools/gold/gold-plugin.cpp (original)<br>
>>>> +++ llvm/trunk/tools/gold/gold-plugin.cpp Tue Oct 20 03:21:01 2015<br>
>>>> @@ -544,7 +544,7 @@ static const char *getResolutionName(ld_<br>
>>>>  }<br>
>>>><br>
>>>>  namespace {<br>
>>>> -class LocalValueMaterializer : public ValueMaterializer {<br>
>>>> +class LocalValueMaterializer final : public ValueMaterializer {<br>
>>>>    DenseSet<GlobalValue *> &Dropped;<br>
>>>>    DenseMap<GlobalObject *, GlobalObject *> LocalVersions;<br>
>>>><br>
>>>><br>
>>>><br>
>>>> _______________________________________________<br>
>>>> llvm-commits mailing list<br>
>>>> <a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a><br>
>>>> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits</a><br>
><br>
><br>
><br>
> _______________________________________________<br>
> llvm-commits mailing list<br>
> <a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a><br>
> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits</a><br>
><br>
<br>
</div></div><div class=""><div class="h5">On Wed, Oct 21, 2015 at 7:22 PM, David Blaikie via llvm-commits<br>
<<a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a>> wrote:<br>
><br>
><br>
> On Tue, Oct 20, 2015 at 9:18 PM, Manuel Klimek <<a href="mailto:klimek@google.com">klimek@google.com</a>> wrote:<br>
>><br>
>> I needed to set the binutils include dir (and install binutils-dev)<br>
><br>
><br>
> Great - that did it. Reckon there's any upstream bots we could/should update<br>
> with this config to catch these things sooner in general?<br>
><br>
>><br>
>><br>
>> On Tue, Oct 20, 2015, 9:06 PM David Blaikie <<a href="mailto:dblaikie@gmail.com">dblaikie@gmail.com</a>> wrote:<br>
>>><br>
>>> On Tue, Oct 20, 2015 at 1:21 AM, Manuel Klimek via llvm-commits<br>
>>> <<a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a>> wrote:<br>
>>>><br>
>>>> Author: klimek<br>
>>>> Date: Tue Oct 20 03:21:01 2015<br>
>>>> New Revision: 250805<br>
>>>><br>
>>>> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=250805&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=250805&view=rev</a><br>
>>>> Log:<br>
>>>> Make class final to pacify -Wnon-virtual-dtor.<br>
>>><br>
>>><br>
>>> Shiny - thanks! Any details on why this isn't built on any buildbot (or<br>
>>> perhaps I missed the fail-mail) and/or how to configure it to be built in a<br>
>>> local build? (so I can ensure I don't break it in the future)<br>
>>><br>
>>><br>
>>>><br>
>>>><br>
>>>> Modified:<br>
>>>>     llvm/trunk/tools/gold/gold-plugin.cpp<br>
>>>><br>
>>>> Modified: llvm/trunk/tools/gold/gold-plugin.cpp<br>
>>>> URL:<br>
>>>> <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/gold/gold-plugin.cpp?rev=250805&r1=250804&r2=250805&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/gold/gold-plugin.cpp?rev=250805&r1=250804&r2=250805&view=diff</a><br>
>>>><br>
>>>> ==============================================================================<br>
>>>> --- llvm/trunk/tools/gold/gold-plugin.cpp (original)<br>
>>>> +++ llvm/trunk/tools/gold/gold-plugin.cpp Tue Oct 20 03:21:01 2015<br>
>>>> @@ -544,7 +544,7 @@ static const char *getResolutionName(ld_<br>
>>>>  }<br>
>>>><br>
>>>>  namespace {<br>
>>>> -class LocalValueMaterializer : public ValueMaterializer {<br>
>>>> +class LocalValueMaterializer final : public ValueMaterializer {<br>
>>>>    DenseSet<GlobalValue *> &Dropped;<br>
>>>>    DenseMap<GlobalObject *, GlobalObject *> LocalVersions;<br>
>>>><br>
>>>><br>
>>>><br>
>>>> _______________________________________________<br>
>>>> llvm-commits mailing list<br>
>>>> <a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a><br>
>>>> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits</a><br>
><br>
><br>
><br>
> _______________________________________________<br>
> llvm-commits mailing list<br>
> <a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a><br>
> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits</a><br>
><br>
</div></div></blockquote></div><br></div></div>