|
- Timestamp:
-
Apr 23, 2010, 9:45:23 AM (15 years ago)
- Author:
-
jweil
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v13
|
v14
|
|
3 | 3 | |
4 | 4 | == Step 1: Downloading the code == |
| 5 | |
| 6 | === For normal users === |
| 7 | 1. [wiki:GiBUUDownload#Gettingfullaccess Get your login account] or just [http://gibuu.physik.uni-giessen.de/GiBUU/login login]. |
| 8 | 2. Download the [http://gibuu.physik.uni-giessen.de/GiBUU/browser/releases/ tar-ball] to your system. |
| 9 | * Please take care, that the path where you store the tar-ball does not include blanks. |
| 10 | * Especially "C:\Dokumente und Einstellungen\..." is no good, but "C:\work\" is fine! |
5 | 11 | |
6 | 12 | === For GiBUU developers === |
… |
… |
|
49 | 55 | * Especially "C:\Dokumente und Einstellungen\..." is no good, but "C:\GiBUU" is fine! |
50 | 56 | 5. Click on "ok", and then "yes" to create the checkout directory. |
51 | | |
52 | 57 | |
53 | | === For normal users === |
54 | | 1. [wiki:GiBUUDownload#Gettingfullaccess Get your login account] or just [http://gibuu.physik.uni-giessen.de/GiBUU/login login]. |
55 | | 2. Download the [http://gibuu.physik.uni-giessen.de/GiBUU/browser/releases/ tar-ball] to your system. |
56 | | * Please take care, that the path where you store the tar-ball does not include blanks. |
57 | | * Especially "C:\Dokumente und Einstellungen\..." is no good, but "C:\work\" is fine! |
58 | 58 | |
59 | 59 | == Step 2: Compiling & Running GiBUU == |
… |
… |
|
73 | 73 | Now unpack the tar-ball |
74 | 74 | {{{ |
75 | | tar xzf tarballName.tgz |
| 75 | tar -xzf tarballName.tgz |
76 | 76 | }}} |
77 | 77 | * If you used svn to get the code, then simply "cd" to the code directory, e.g. |
… |
… |
|
81 | 81 | 5. Go to workingCode and type |
82 | 82 | {{{ |
83 | | make renew |
| 83 | make |
84 | 84 | }}} |
85 | | and thereafter |
| 85 | 6. After make is done, you will find the executable "GiBUU.x" in the "testRun" directory, where you can run GiBUU with the command |
86 | 86 | {{{ |
87 | | make bw FORT=gfortran-4 |
88 | | }}} |
89 | | 6. After make is done, you will find the executable "main.x" in the "testRun" directory, where you can run GiBUU with the command |
90 | | {{{ |
91 | | ./main.x < jobCardName |
| 87 | ./GiBUU.x < jobCardName |
92 | 88 | }}} |
93 | 89 | Sample jobcards are available in testRun/jobCards, cf. also [wiki:FAQ our FAQ page] for more informations. |
|