<div dir="ltr">Thanks for reporting this.<div><br></div><div>Looks like this one was missed -- the declaration should have been #ifdef'd away along with the definition.   A quick grep indicates there are a number of them that need to be fixed.</div><div><br></div><div>Here's the original commit:</div><div><br></div><div><div>commit 88d207542b618ca6054b24491ddd67f8ca397540</div><div>Author: Matthias Braun <<a href="mailto:matze@braunis.de">matze@braunis.de</a>></div><div>Date:   Sat Jan 28 02:02:38 2017 +0000</div><div><br></div><div>    Cleanup dump() functions.</div><div><br></div><div>    We had various variants of defining dump() functions in LLVM. Normalize</div><div>    them (this should just consistently implement the things discussed in</div><div>    <a href="http://lists.llvm.org/pipermail/cfe-dev/2014-January/034323.html">http://lists.llvm.org/pipermail/cfe-dev/2014-January/034323.html</a></div><div><br></div><div>    For reference:</div><div>    - Public headers should just declare the dump() method but not use</div><div>      LLVM_DUMP_METHOD or #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)</div><div>    - The definition of a dump method should look like this:</div><div>      #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)</div><div>      LLVM_DUMP_METHOD void MyClass::dump() {</div><div>        // print stuff to dbgs()...</div><div>      }</div><div>      #endif</div><div><br></div><div>    git-svn-id: <a href="https://llvm.org/svn/llvm-project/llvm/trunk@293359">https://llvm.org/svn/llvm-project/llvm/trunk@293359</a> 91177308-0d34-0410-b5e6-96231b3b80d8</div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Sep 25, 2017 at 1:22 PM, Dibyendu Majumdar via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Martin<br>
<span class=""><br>
On 25 September 2017 at 21:13, Martin J. O'Riordan <<a href="mailto:MartinO@theheart.ie">MartinO@theheart.ie</a>> wrote:<br>
> Yes, if it is in the interface it would make more sense to have a null implementation at the very least.  In my out-of-tree target, I also removed them from the interface if the build was for Release to ensure that I got compile-time errors to reveal other places I might have otherwise missed.<br>
><br>
<br>
</span>I assume you now need to create two LLVM builds - a debug build and a<br>
release build. Then you need to link your own app's debug build /<br>
release build to the right LLVM build.<br>
<br>
On Windows this has to happen anyway due to dependencies on the C<br>
libraries etc. but on Linux/Mac OSX I never had to until now build a<br>
debug build of LLVM.<br>
<br>
As I mentioned the real problem is that the client has no way of<br>
knowing how LLVM was built - as there is no #define to flag the<br>
missing dump() implementation either.<br>
<div class="HOEnZb"><div class="h5"><br>
Regards<br>
Dibyendu<br>
<br>
<br>
><br>
> -----Original Message-----<br>
> From: Dibyendu Majumdar [mailto:<a href="mailto:mobile@majumdar.org.uk">mobile@majumdar.org.uk</a><wbr>]<br>
> Sent: 25 September 2017 20:57<br>
> To: Martin J. O'Riordan <<a href="mailto:MartinO@theheart.ie">MartinO@theheart.ie</a>><br>
> Cc: LLVM Developers <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>><br>
> Subject: Re: [llvm-dev] Errors linking with LLVM 5.0 - dump() missing<br>
><br>
> Hi Martin,<br>
><br>
><br>
> On 25 September 2017 at 20:35, Martin J. O'Riordan <<a href="mailto:MartinO@theheart.ie">MartinO@theheart.ie</a>> wrote:<br>
>> Are you building a Debug or Release version of the compiler?<br>
><br>
> It seems that in Release builds of LLVM 5.0 the dump() implementation is absent, although the method is available in the interface. This is plain wrong in my view. If the dump() has to be removed then it should not be present in the interface.<br>
><br>
>><br>
>> I had similar problems a few days ago when I was migrating to v5.0, and it turned out that I had calls to some of the dump routines that were not guarded by either 'DEBUG(...)' or '#ifndef NDEBUG ... #endif' and I was seeing the link failures with a Release build.  These had been there since LLVM v3.1 and had never broken before.  There was some clean-up done in the sources so that may of the 'dump' routines are enabled only for Debug builds, and I fixed these (in my code) by adding these guards.<br>
>><br>
><br>
> Well the problem is that there is no obvious way for a client to detect whether the dump() implementation is available or not - as it does not depend upon the Release/Debug build status of the client, but how LLVM 5.0 was originally compiled. So the guards you have put are not really going to work (that is my finding anyway).<br>
><br>
> Regards<br>
> Dibyendu<br>
><br>
>><br>
>> -----Original Message-----<br>
>> From: llvm-dev [mailto:<a href="mailto:llvm-dev-bounces@lists.llvm.org">llvm-dev-bounces@<wbr>lists.llvm.org</a>] On Behalf Of<br>
>> Dibyendu Majumdar via llvm-dev<br>
>> Sent: 25 September 2017 19:41<br>
>> To: <a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
>> Subject: [llvm-dev] Errors linking with LLVM 5.0 - dump() missing<br>
>><br>
>> Hi,<br>
>><br>
>> I am finding that my project that previously successfully built with versions 3.5 to 4.0 is now failing to link because of missing implementation for dump(). Errors I get are:<br>
>><br>
>> Undefined symbols for architecture x86_64:<br>
>><br>
>>   "llvm::Type::dump() const", referenced from:<br>
>>       ravi::LuaLLVMTypes::dump() in ravi_llvmtypes.cpp.o<br>
>>       dump_content(lua_State*) in ravi_llvmluaapi.cpp.o<br>
>>   "llvm::Value::dump() const", referenced from:<br>
>>       dump_content(lua_State*) in ravi_llvmluaapi.cpp.o<br>
>>   "llvm::Module::dump() const", referenced from:<br>
>><br>
>> This appears to be a change that is not documented in the release notes of 5.0. Please can someone describe what the change is and how I can detect whether the dump() implementation is available or not?<br>
>><br>
>> It also seems strange that dump() implementation was removed - surely it would have been better ti stub it so that client code does not break?<br>
>><br>
>> Regards<br>
>> Dibyendu<br>
>> ______________________________<wbr>_________________<br>
>> LLVM Developers mailing list<br>
>> <a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
>> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/llvm-dev</a><br>
>><br>
><br>
______________________________<wbr>_________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/llvm-dev</a><br>
</div></div></blockquote></div><br></div>