<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 --- - `make install` does not install compiler-rt components"
   href="http://llvm.org/bugs/show_bug.cgi?id=16767">16767</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>`make install` does not install compiler-rt components
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>Build scripts
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>trunk
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </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>Makefiles
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>noloader@gmail.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvmbugs@cs.uiuc.edu
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>Below is the recipe I use to build Clang and Compiler-rt gear.

After make install, I found I have been missing the following over time ("over
time" because I don't realize they are missing until a later date):

* scan-build
* scan-view
* libclang_rt.asan_osx_dynamic.dylib
* asan_symbolize.py

I suppose the request here is, "please install required components when running
`make install`"

~JW

*** Recipe ***

wget <a href="http://llvm.org/releases/3.3/llvm-3.3.src.tar.gz">http://llvm.org/releases/3.3/llvm-3.3.src.tar.gz</a>
wget <a href="http://llvm.org/releases/3.3/cfe-3.3.src.tar.gz">http://llvm.org/releases/3.3/cfe-3.3.src.tar.gz</a>
wget <a href="http://llvm.org/releases/3.3/compiler-rt-3.3.src.tar.gz">http://llvm.org/releases/3.3/compiler-rt-3.3.src.tar.gz</a>
# wget <a href="http://llvm.org/releases/3.3/lldb-3.3.src.tar.gz">http://llvm.org/releases/3.3/lldb-3.3.src.tar.gz</a>
tar xvf llvm-3.3.src.tar.gz
cd llvm-3.3.src/tools
tar xvf ../../cfe-3.3.src.tar.gz
mv cfe-3.3.src clang
#vtar xvf ../../lldb-3.3.src.tar.gz
# mv lldb-3.3.src/ lldb
cd ..
cd projects
tar xvf ../../compiler-rt-3.3.src.tar.gz
mv compiler-rt-3.3.src/ compiler-rt
cd ..
./configure --enable-optimized --prefix=/usr/local
make -j4
sudo make install</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>