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: [email protected]
Reporter: [email protected]
CC: [email protected]
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.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs