mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 04:32:19 +00:00
Update for Subversion conversion:
1. Fix comments for -usesvn and -svnurl options. 2. Fix default URL for SVN access. 3. Fix paths to accommodate "trunk" when checking out from SVN. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37736 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4d2a0f5bd6
commit
c9a15d5091
@ -45,10 +45,10 @@ use Socket;
|
|||||||
# -gccpath Path to gcc/g++ used to build LLVM
|
# -gccpath Path to gcc/g++ used to build LLVM
|
||||||
# -cvstag Check out a specific CVS tag to build LLVM (useful for
|
# -cvstag Check out a specific CVS tag to build LLVM (useful for
|
||||||
# testing release branches)
|
# testing release branches)
|
||||||
# -usesvn Check code out from a subversion repository. With no
|
# -usesvn Check code out from a subversion repository.
|
||||||
# argument, use the standard repository. An argument specifies
|
# -svnurl Specify the SVN URL where LLVM can be found. Needs -usesvn
|
||||||
# the repository URL to use.
|
# to be useful. If -svnurl is not used but -usesvn is then
|
||||||
# -svnurl Specify the SVN URL where LLVM can be found
|
# the standard (UIUC) repository will be used.
|
||||||
# -target Specify the target triplet
|
# -target Specify the target triplet
|
||||||
# -cflags Next argument specifies that C compilation options that
|
# -cflags Next argument specifies that C compilation options that
|
||||||
# override the default.
|
# override the default.
|
||||||
@ -96,7 +96,7 @@ use Socket;
|
|||||||
##############################################################
|
##############################################################
|
||||||
my $HOME = $ENV{'HOME'};
|
my $HOME = $ENV{'HOME'};
|
||||||
my $SVNURL = $ENV{"SVNURL"};
|
my $SVNURL = $ENV{"SVNURL"};
|
||||||
$SVNURL = 'svn://anon@hlvm.org:3691/llvm.svn' unless $SVNURL;
|
$SVNURL = 'https://llvm.org/svn/llvm-project' unless $SVNURL;
|
||||||
my $CVSRootDir = $ENV{'CVSROOT'};
|
my $CVSRootDir = $ENV{'CVSROOT'};
|
||||||
$CVSRootDir = "/home/vadve/shared/PublicCVS" unless $CVSRootDir;
|
$CVSRootDir = "/home/vadve/shared/PublicCVS" unless $CVSRootDir;
|
||||||
my $BuildDir = $ENV{'BUILDDIR'};
|
my $BuildDir = $ENV{'BUILDDIR'};
|
||||||
@ -520,9 +520,9 @@ if (!$NOCHECKOUT) {
|
|||||||
if ($USESVN) {
|
if ($USESVN) {
|
||||||
my $SVNCMD = "$NICE svn co $SVNURL";
|
my $SVNCMD = "$NICE svn co $SVNURL";
|
||||||
if ($VERBOSE) {
|
if ($VERBOSE) {
|
||||||
print "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
|
print "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/trunk/projects ; " .
|
||||||
"$SVNCMD/llvm-test/trunk llvm-test ) > $COLog 2>&1\n";
|
"$SVNCMD/llvm-test/trunk llvm-test ) > $COLog 2>&1\n";
|
||||||
system "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
|
system "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/trunk/projects ; " .
|
||||||
"$SVNCMD/llvm-test/trunk llvm-test ) > $COLog 2>&1\n";
|
"$SVNCMD/llvm-test/trunk llvm-test ) > $COLog 2>&1\n";
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user