User Tools

Site Tools


haas:fall2014:cprog:projects:pipemath

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
haas:fall2014:cprog:projects:pipemath [2014/09/29 21:50] – created wedgehaas:fall2014:cprog:projects:pipemath [2014/09/29 22:02] (current) – [Step 3: clone the repository] wedge
Line 33: Line 33:
  
 **cat** will display data (the file's contents), **wc** counts data... so we put the two together, creating something that is unique in functionality. **cat** will display data (the file's contents), **wc** counts data... so we put the two together, creating something that is unique in functionality.
 +
 +=====Repository=====
 +This project is located in a dedicated mercurial repository hosted here in the LAIR. You'll need to clone a copy in your home directory.
 +
 +Following are instructions to put it in a **~/src/cprog/pipemath/** directory. Should you be organizing your C/C++ Programming files in some other directory, please adjust the path as appropriate.
 +
 +====Step 1: Ensure parent directories exist====
 +<cli>
 +lab46:~$ mkdir -p src/cprog
 +lab46:~$ 
 +</cli>
 +
 +====Step 2: Change into directory====
 +<cli>
 +lab46:~$ cd src/cprog
 +lab46:~/src/cprog$ 
 +</cli>
 +
 +====Step 3: clone the repository====
 +<cli>
 +lab46:~/src/cprog$ hg clone http://www/hg/project/pipemath-fall2014 pipemath
 +</cli>
 +
 +Should the above box scroll, here is the line outside a cli tag:
 +  * hg clone <nowiki>http://www/hg/project/pipemath-fall2014 pipemath</nowiki>
 +    * there are 3 spaces, separating 4 arguments:
 +      * hg - the command
 +      * clone - the action we wish hg to perform
 +      * url - the location of the repository we wish for hg to clone
 +      * destination - a new directory, called pipemath, in our current directory
 +
 +This will be followed by output (requiring you to authenticate with your lab46 username and password) resembling the following:
 +
 +<cli>
 +http authorization required
 +realm: Lab46/LAIR Mercurial Repository (Authorization Required)
 +user: username
 +password: 
 +requesting all changes
 +adding changesets
 +adding manifests
 +adding file changes
 +added 1 changesets with 43 changes to 43 files
 +updating to branch default
 +43 files updated, 0 files merged, 0 files removed, 0 files unresolved
 +lab46:~/src/cprog$ 
 +</cli>
 +
 +====Step 4: Change into repository directory====
 +<cli>
 +lab46:~/src/cprog$ cd pipemath
 +lab46:~/src/cprog/pipemath$ 
 +</cli>
 +
 +====Step 5: Configure mercurial settings for your copy of the repository====
 +This can be confusing to first-time users, so I've created a way to hopefully automate it, leaving you to perform a visual inspection and make sure everything is in order.
 +
 +<cli>
 +lab46:~/src/cprog/pipemath$ make config
 +</cli>
 +
 +====All set====
 +At this point, you're ready to get started. In class we will cover the Makefile system and how it will facilitate the process of compiling everything.
 +
 +Have fun!
  
 =====Project===== =====Project=====
haas/fall2014/cprog/projects/pipemath.1412027422.txt.gz · Last modified: 2014/09/29 21:50 by wedge