[LLVMbugs] [Bug 16767] New: `make install` does not install compiler-rt components
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Wed Jul 31 17:00:47 PDT 2013
http://llvm.org/bugs/show_bug.cgi?id=16767
Bug ID: 16767
Summary: `make install` does not install compiler-rt components
Product: Build scripts
Version: trunk
Hardware: PC
OS: MacOS X
Status: NEW
Severity: normal
Priority: P
Component: Makefiles
Assignee: unassignedbugs at nondot.org
Reporter: noloader at gmail.com
CC: llvmbugs at cs.uiuc.edu
Classification: Unclassified
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 http://llvm.org/releases/3.3/llvm-3.3.src.tar.gz
wget http://llvm.org/releases/3.3/cfe-3.3.src.tar.gz
wget http://llvm.org/releases/3.3/compiler-rt-3.3.src.tar.gz
# wget http://llvm.org/releases/3.3/lldb-3.3.src.tar.gz
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
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20130801/14f47ab6/attachment.html>
More information about the llvm-bugs
mailing list