Difference between revisions of "How do I... ?"

From CVC4
Jump to: navigation, search
(Dealing with Subversion: adding SVN detail)
Line 3: Line 3:
 
=Dealing with Subversion=
 
=Dealing with Subversion=
  
*[[...check out CVC4 from the repository?]]
+
*[[Developer's Guide#Accessing CVC4's repository|...check out CVC4 from the repository?]]
**From the command line:
+
*[[Developer's Guide#Repository access from Eclipse|...access the repository from Eclipse?]]
    svn co https://subversive.cims.nyu.edu/cvc4/cvc4/trunk cvc4
+
*[[Developer's Guide#Browsing the repository|...browse CVC4 sources online?]]
**From eclipse:
+
"File -> New -> Project..." then choose "Project from SVN" under the SVN category. Use the repository location <code>https://subversive.cims.nyu.edu/cvc4/cvc4/trunk</code> and click "Finish."
+
 
+
*[[...browse CVC4 sources online?]]
+
  The source code is available at https://subversive.cims.nyu.edu/cvc4/cvc4/.  CIMS login is required.  Expect for your browser to whine about the certificate.
+
 
+
 
*[[...update my working copy to the newest committed version?]]
 
*[[...update my working copy to the newest committed version?]]
 
**From the command line: enter the root cvc4 source directory and issue an svn update
 
**From the command line: enter the root cvc4 source directory and issue an svn update

Revision as of 16:16, 15 December 2009

This page is a repository for questions about working with CVC4. If you have a question, please add it here. If you have an answer, please add the answer to the Developer's Guide, or another wiki page, and then link to it from here.

Dealing with Subversion

  cd cvc4
  svn update

Dealing with the source tree

Dealing with tests