Changes between Version 5 and Version 6 of Arch/Soclib/Tutorial


Ignore:
Timestamp:
Feb 27, 2010, 7:26:04 PM (14 years ago)
Author:
becoulet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Arch/Soclib/Tutorial

    v5 v6  
    119119=== Compiling the application along with MutekH ===
    120120
    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
     123To compile the kernel with the application, just run `make` with the path to MutekH source directory from the SoCLib platform directory.
     124This single make invocation feature is specific to the this SoCLib platform.
    122125
    123126{{{
     
    126129}}}
    127130
    128 This will build the MutekH kernel along with the application, and the correct simulator.
     131This will build the MutekH kernel along with the application, and the suited simulator.
     132
     133==== Separate compilation ====
     134
     135You 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}}}
    129143
    130144== Execution ==
    131145
    132 Simply run the simulator:
     146Simply run the simulator with optional MutekH binary file:
    133147{{{
    134 $ ./simulation.x
     148$ ./system.x
     149$ ./system.x path/to/mutekh/hello-soclib-arm.out
    135150}}}
    136151