<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    On 2/29/12 11:03 PM, Welson Sun wrote:
    <blockquote
cite="mid:CAD3rk=172y+5YaiVOzXM2Bcm78VwXEpMcoQHJP=es4hHHizdvg@mail.gmail.com"
      type="cite">
      <meta http-equiv="Content-Type" content="text/html;
        charset=ISO-8859-1">
      My pass uses another class which is defined in a separate .h file,
      which sits in the same folder as the pass .cpp file. The pass
      compiles fine, but when using the pass "opt -load ...", there is
      an error: opt symbol lookup error  .... undefined symbol xxx,
       where xxx is the class name. It looks like that class file's
      object file is not linked into the pass.so file. How should I
      change the Makefile to make the linking happen?</blockquote>
    <br>
    If your .cpp file isn't including the .h file, then the class in the
    .h file isn't being compiled and, therefore, isn't being included in
    the final library file.<br>
    <br>
    Classes should be declared in header files and have their methods
    defined in .cpp files.  That's the easiest way to fix the problem.<br>
    <br>
    -- John T.<br>
    <br>
    <blockquote
cite="mid:CAD3rk=172y+5YaiVOzXM2Bcm78VwXEpMcoQHJP=es4hHHizdvg@mail.gmail.com"
      type="cite">
      <div>
        <br>
      </div>
      <div>Thanks,</div>
      <div>Welson</div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
LLVM Developers mailing list
<a class="moz-txt-link-abbreviated" href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a class="moz-txt-link-freetext" href="http://llvm.cs.uiuc.edu">http://llvm.cs.uiuc.edu</a>
<a class="moz-txt-link-freetext" href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>