Changes between Version 7 and Version 8 of QuickStartUnix
- Timestamp:
- Jun 16, 2010, 1:22:06 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
QuickStartUnix
v7 v8 1 1 = MutekH as Unix process quick start guide = 2 2 3 This guide explain how to run MutekH embedded in a Unix process. This is the simplest way to run MutekH as it doesn't require any hardware platform. 3 This guide explain how to run MutekH embedded in a Unix process in a way similar to [http://en.wikipedia.org/wiki/User-mode_Linux user mode linux]. 4 This is the simplest way to run MutekH as it doesn't require any hardware platform. It will work if you running a Linux or Darwin host kernel on x86 or x86_64 processor(s). 4 5 5 6 == Overview == … … 27 28 {{{ 28 29 #!sh 29 svn co -r 1024 https://www-asim.lip6.fr/svn/mutekh/trunk/mutekh30 svn co https://www.mutekh.org/svn/trunk/mutekh/ 30 31 }}} 31 32 Source tree is organized this way: … … 39 40 |-- gpct container library, available as a separate project 40 41 |-- hexo Hexo hardware abstraction layer 42 |-- mutek hardware independant kernel code 41 43 |-- libc standard C library 42 44 |-- libm standard math library … … 44 46 |-- libpthread posix thread library 45 47 |-- libvfs virtual File System 46 |-- mutek hardware independant kernel code 48 ... 47 49 |-- scripts build system scripts 48 50 `-- tools some usefull tools … … 144 146 == Compiling the application along with MutekH == 145 147 148 === Getting the cross-compilers === 149 150 You may have some success in compiling MutekH/emu using your readily available host GNU compiler. If it doesn't work because, please use a MutekH toolchain. 151 You can rely on the {{{tools/crossgen.mk}}} script which comes along with MutekH to build some GNU toolchains or download a precompiled toolchain. See BuildingExamples page. 152 153 === Compiling === 154 146 155 Simply type something like: 147 156 {{{