Changes between Version 5 and Version 6 of Arch/Soclib/Tutorial
- Timestamp:
- Feb 27, 2010, 7:26:04 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Arch/Soclib/Tutorial
v5 v6 119 119 === Compiling the application along with MutekH === 120 120 121 To compile the kernel with the application, just run `make` with the path to MutekH source directory: 121 ==== Compiling application along with the simulator ==== 122 123 To compile the kernel with the application, just run `make` with the path to MutekH source directory from the SoCLib platform directory. 124 This single make invocation feature is specific to the this SoCLib platform. 122 125 123 126 {{{ … … 126 129 }}} 127 130 128 This will build the MutekH kernel along with the application, and the correct simulator. 131 This will build the MutekH kernel along with the application, and the suited simulator. 132 133 ==== Separate compilation ==== 134 135 You may also compile MutekH and application first and then the standalone SoCLib simulator: 136 137 {{{ 138 $ cd mutekh/ 139 $ make CONF=examples/hello/config BUILD=soclib-arm:pf-tutorial 140 $ cd soclib/soclib/platform/topcells/caba-vgmn-mutekh_soclib_tutorial 141 $ make system.x 142 }}} 129 143 130 144 == Execution == 131 145 132 Simply run the simulator :146 Simply run the simulator with optional MutekH binary file: 133 147 {{{ 134 $ ./simulation.x 148 $ ./system.x 149 $ ./system.x path/to/mutekh/hello-soclib-arm.out 135 150 }}} 136 151