<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - build fails, undefined reference to llvm:RTDyldMemoryManager"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=90032#c8">Comment # 8</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - build fails, undefined reference to llvm:RTDyldMemoryManager"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=90032">bug 90032</a>
              from <span class="vcard"><a class="email" href="mailto:felix-freedesktop@fefe.de" title="Felix von Leitner <felix-freedesktop@fefe.de>"> <span class="fn">Felix von Leitner</span></a>
</span></b>
        <pre>Hah, this is actually quite funny.

src/gallium/auxiliary/util/u_debug.h

185 #ifdef DEBUG
186 #define debug_assert(expr) ((expr) ? (void)0 : _debug_assert_fail(#expr,
__FILE__, __LINE__, __FUNCTION__))
187 #else
188 #define debug_assert(expr) (void)(0 && (expr))
199 #endif


So even if you turn off debugging, you still evaluate expr, which contains the
typeid.

I added another line before 188 that #defines typeid(a) to 0, let's see what
happens.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the QA Contact for the bug.</li>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>