Changes between Version 40 and Version 41 of dev/LinuxGentoo
- Timestamp:
- Sep 18, 2008, 5:46:40 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/LinuxGentoo
v40 v41 1 1 = Gentoo Linux = 2 2 ''Edited: 18. Sep. 2008 by [wiki:OliScheuss Oli]''[[br]] 3 3 ''Edited: 15. Sep. 2008 by [wiki:FelixSchulthess Felix]''[[br]] 4 4 ''Checked: 01. Dec. 2007 by [wiki:NicolasSchlumberger nico] with 2007.0 profile on amd64''[[br]] … … 61 61 $ cmake . 62 62 ... 63 $ make 63 $ make -j4 // -j4 means 4 jobs concurrently (for those of you with multicore cpus) 64 64 ... 65 65 $ ./run 66 }}} 67 Additionally if you don't want to built into your source directories perform the following steps instead: 68 {{{ 69 $ cd orxonox-trunk 70 $ mkdir build 71 $ cd build 72 $ cmake .. 73 ... 74 $ make -j4 75 ... 76 $ cd .. 77 $ ./run 78 66 79 }}} 67 80