diff --git a/llvm/utils/mkrel.sh b/llvm/utils/mkrel.sh new file mode 100755 index 000000000000..d1de19cd025d --- /dev/null +++ b/llvm/utils/mkrel.sh @@ -0,0 +1,41 @@ +#!/bin/sh + +# +# Shell Script: mkrel +# +# Description: +# Make LLVM Release source tarballs by grabbing the source from the CVS +# repository. +# +# Usage: +# mkrel +# + +# +# Constants +# +cvsroot=":pserver:anon@llvm-cvs.cs.uiuc.edu:/var/cvs/llvm" + +# +# Save the command line arguments into some variables. +# +version=$1 +tag=$2 +dir=$3 + +# +# Create the working directory and make it the current directory. +# +mkdir -p $dir +cd $dir + +# +# Extract the LLVM sources given the label. +# +cvs -d $cvsroot export -r $tag llvm llvm-gcc + +# +# Create source tarballs. +# +tar -cvf - llvm | gzip > llvm-${version}.tar.gz +tar -cvf - llvm-gcc | gzip > cfrontend-${version}.source.tar.gz