mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 07:32:52 +00:00
Remove the last vestiges of -usesvn.
Implement -usecvs just in case we need to go back to cvs for some reason. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37837 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ceb9d784e0
commit
ece1f685a8
@ -45,10 +45,8 @@ 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.
|
# -usecvs Check code out from the (old) CVS Repository instead of from
|
||||||
# -svnurl Specify the SVN URL where LLVM can be found. Needs -usesvn
|
# the standard Subversion repository.
|
||||||
# to be useful. If -svnurl is not used but -usesvn is then
|
|
||||||
# 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.
|
||||||
@ -170,7 +168,7 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
|
|||||||
else { $GCCPATH=""; }
|
else { $GCCPATH=""; }
|
||||||
if (/^-cvstag/) { $CVSCOOPT .= " -r $ARGV[0]"; shift; next; }
|
if (/^-cvstag/) { $CVSCOOPT .= " -r $ARGV[0]"; shift; next; }
|
||||||
else { $CVSCOOPT="";}
|
else { $CVSCOOPT="";}
|
||||||
if (/^-svnurl/) { $SVNURL = $ARGV[0]; shift; next; }
|
if (/^-usecvs/) { $USESVN = 0; }
|
||||||
if (/^-target/) { $CONFIGUREARGS .= " --target=$ARGV[0]";
|
if (/^-target/) { $CONFIGUREARGS .= " --target=$ARGV[0]";
|
||||||
shift; next; }
|
shift; next; }
|
||||||
if (/^-cflags/) { $MAKEOPTS = "$MAKEOPTS C.Flags=\'$ARGV[0]\'";
|
if (/^-cflags/) { $MAKEOPTS = "$MAKEOPTS C.Flags=\'$ARGV[0]\'";
|
||||||
|
Loading…
Reference in New Issue
Block a user