Wei Chen wrote:
i think http://gcc.gnu.org/svn.html have a error.
"Using the SVN repository
Assuming you have version 1.0.0 and higher of Subversion installed,
you can check out the GCC sources using the following command:
svn -q checkout svn://gcc.gnu.org/svn/gcc/trunk gcc "
the right is
svn -q checkout svn://gcc.gnu.org/svn/gcc/trunk
or svn -q checkout svn://gcc.gnu.org/svn/gcc/trunk/gcc
Why do you feel that this is an error? Did you try the command in the
form that it was written, and if so, what happened? (It works fine for me.)
If you look at the helpfile for the svn checkout command (which you can
see if you enter the "svn help checkout" command), you'll see that it
has an optional PATH argument, which tells it the name of the directory
that it should put the checked-out files into. That's what the "gcc" is
in form of the command that's given.
- Brooks