Changes between Version 30 and Version 31 of QuickStartSoclib


Ignore:
Timestamp:
Jul 21, 2010, 12:28:19 AM (14 years ago)
Author:
becoulet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • QuickStartSoclib

    v30 v31  
    1 = MutekH quick start guide for SoCLib platform =
     1= Quick start guide for SoCLib platform =
    22
    33SoCLib simulator allow easy experimentation with advanced multi-processor programming.
     
    88This is really convenient if you want to experiment with different processors without modifying the simulator. This simulator allows processor heterogeneity.
    99
    10 If you are interested in learning SoCLib hardware simulator, or plan to use SoCLib to model your own platform, you have better reading the [wiki:Arch/Soclib/Tutorial MutekH/SocCLib tutorial] first.
     10If you are interested in learning SoCLib hardware simulator, or plan to use SoCLib to model your own platform, you have better reading the [wiki:Arch/Soclib/Tutorial SocCLib tutorial] first.
    1111
    12 You are '''highly encouraged''' to first follow the [wiki:QuickStartUnix MutekH as Unix process quick start guide] which introduce more basic concepts.
     12You are '''highly encouraged''' to first follow the [wiki:QuickStartUnix User mode quick start guide] which introduce more basic concepts.
    1313
    1414== The SoCLib platform ==
     
    1616=== Getting SoCLib ===
    1717
    18 A precompiled {{{caba-vgmn-mutekh_kernel_tutorial}}} SoCLib platform is available [https://www.mutekh.org/www/tools/ here] for test purpose.
    19 You can use this simulator and skip to the MutekH part if you are in a hurry.
     18A precompiled SoCLib platform is available [https://www.mutekh.org/www/tools/ here] for test purpose.
     19You can use this simulator and skip to the kernel part if you are in a hurry.
    2020
    2121We need to have a working SoCLib install. SoCLib installation is explained here: soclib:InstallationNotes
     
    3434}}}
    3535
    36 == The MutekH part ==
     36== The Kernel part ==
    3737
    3838=== Getting the sources ===
     
    4747=== Writing the example source code ===
    4848
    49 The MutekH kernel source code is fully configurable and can be tweaked to adapt hardware platform
     49The kernel source code is fully configurable and can be tweaked to adapt hardware platform
    5050and application needs. Configuration is handled by a dedicated tool which check dependencies and
    5151other relationships between the large set of available configuration tokens.
     
    6262=== Getting the cross-compilers ===
    6363
    64 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.
     64You can rely on the {{{tools/crossgen.mk}}} script to build some GNU toolchains or download a precompiled toolchain. See BuildingExamples page.
    6565
    66 === Compiling the application along with MutekH ===
     66=== Compiling the application along with the kernel ===
    6767
    6868{{{
     
    7272}}}
    7373
    74 This will build the MutekH kernel along with the application.
     74This will build the kernel along with the application.
    7575
    7676== Execution ==
    7777
    78 The simulator needs the MutekH executable file name and the processor type and the number of processors of this type:
     78The simulator needs the final executable file name and the processor type and the number of processors of this type:
    7979{{{
    8080#!sh
     
    8383}}}
    8484
    85 You may want to refer to other articles and documents available from the main page to go further with MutekH.
     85You may want to refer to other articles and documents available from the main page to go further.
    8686
    8787The BuildingExamples article explain how to build other sample applications.