<html>
    <head>
      <base href="http://llvm.org/bugs/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - Remove JIT from LLDB's posix makefile dependencies"
   href="http://llvm.org/bugs/show_bug.cgi?id=20864">20864</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Remove JIT from LLDB's posix makefile dependencies
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>lldb
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>unspecified
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>Macintosh
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>MacOS X
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>All Bugs
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>lldb-dev@cs.uiuc.edu
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>kevin@hzsystems.com
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>Created <span class=""><a href="attachment.cgi?id=12999" name="attach_12999" title="makefile patch">attachment 12999</a> <a href="attachment.cgi?id=12999&action=edit" title="makefile patch">[details]</a></span>
makefile patch

lldb currently fails to build under OSX due to inclusion of 'jit' in makefile
dependances (buildbot fail on freebsd for same reason:
<a href="http://lab.llvm.org:8011/builders/lldb-x86_64-freebsd/builds/960">http://lab.llvm.org:8011/builders/lldb-x86_64-freebsd/builds/960</a>)

diff --git a/lib/Makefile b/lib/Makefile
index f70185e..89b8284 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -92,7 +92,7 @@ endif
 include $(LLDB_LEVEL)/../../Makefile.config

 LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader bitwriter codegen \
-                   instrumentation ipo irreader selectiondag jit mc mcjit \
+                   instrumentation ipo irreader selectiondag mc mcjit \
                    linker option</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>