Changes between Version 4 and Version 5 of QuickStartUnix
- Timestamp:
- Feb 27, 2010, 7:38:55 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
QuickStartUnix
v4 v5 92 92 == Writing the MutekH configuration == 93 93 94 === Standalone configuration file === 95 94 96 Our configuration file is named `hello/config_emu`. 95 97 Details about configuration file is explained later. … … 120 122 }}} 121 123 122 The complete configuration file s are available here: [source:trunk/mutekh/examples/hello/config_emu] and [source:trunk/mutekh/examples/hello/config_emu64]. You must choose the right one depending on your host operating system and architecture.124 The complete configuration file is available here: [source:trunk/mutekh/examples/hello/config_emu]. 123 125 124 126 Have a look to the BuildSystem page for more information about configuration system and configuration file format. 125 127 The [http://www.mutekh.org/www/mutekh_api/ MutekH API reference manual] describes all available configuration tokens. 128 129 === Generic configuration file === 130 131 The flat and standalone configuration file described above 132 is specific to the target emu architecture, GNU/Linux host 133 operating system and x86 32bits processor. 134 135 It's possible to write a more generic configuration file which 136 relies on common files to target more platforms. 137 138 The complete generic configuration file is available here: [source:trunk/mutekh/examples/hello/config]. 126 139 127 140 == Compiling the application along with MutekH == … … 132 145 }}} 133 146 134 Once the compilation process has finished, the executable binary is available:147 or to use the generic configuration file: 135 148 {{{ 136 kernel-emu-x86-emu.out 149 make CONF=examples/hello/config BUILD=emu-linux-x86 137 150 }}} 151 152 This allow targeting other emu platforms like MacOs X (darwin) and x86_64 processors 153 and other hardware platforms. 154 155 Once the compilation process has finished, the executable binary is available. 138 156 139 157 == Execution ==