This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
haas:fall2014:cprog:projects:pipemath [2014/09/29 21:50] – created wedge | haas: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 **~/ | ||
+ | |||
+ | ====Step 1: Ensure parent directories exist==== | ||
+ | <cli> | ||
+ | lab46:~$ mkdir -p src/cprog | ||
+ | lab46: | ||
+ | </ | ||
+ | |||
+ | ====Step 2: Change into directory==== | ||
+ | <cli> | ||
+ | lab46:~$ cd src/cprog | ||
+ | lab46: | ||
+ | </ | ||
+ | |||
+ | ====Step 3: clone the repository==== | ||
+ | <cli> | ||
+ | lab46: | ||
+ | </ | ||
+ | |||
+ | Should the above box scroll, here is the line outside a cli tag: | ||
+ | * hg clone < | ||
+ | * 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: | ||
+ | </ | ||
+ | |||
+ | ====Step 4: Change into repository directory==== | ||
+ | <cli> | ||
+ | lab46: | ||
+ | lab46: | ||
+ | </ | ||
+ | |||
+ | ====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: | ||
+ | </ | ||
+ | |||
+ | ====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===== |