view tools/binding/prebuild.sh @ 1493:7cca8cf730de

Increment the iterator before deleting redundant functions or globals in the StripExternals pass.
author Christian Kamm <kamm incasoftware de>
date Thu, 11 Jun 2009 21:48:10 +0200
parents 4ff9ab0d472c
children
line wrap: on
line source

#!/bin/sh

g++ llvm-ext.cpp -c `llvm-config --cxxflags`
g++ llvm-opt.cpp -c `llvm-config --cxxflags`
g++ llvm-typemonitor.cpp -c `llvm-config --cxxflags`

rm -f libllvm-c-ext.a
ar rc libllvm-c-ext.a llvm-ext.o llvm-opt.o llvm-typemonitor.o
ranlib libllvm-c-ext.a