Changes between Version 3 and Version 4 of BuildingExamples


Ignore:
Timestamp:
Mar 29, 2010, 2:42:51 AM (14 years ago)
Author:
becoulet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingExamples

    v3 v4  
    1919
    2020 - [http://www.qemu.org/ Qemu] to run native x86 binaries
    21  - [https://www.soclib.fr/ SoCLib] to experiment with various multiprocessor platforms
     21 - [https://www.soclib.fr/ SoCLib] to experiment with various multiprocessor platforms (see soclib:InstallationNotes)
    2222
    2323You may need extra tools to deals with kernel images for some targets:
     
    2727
    2828The [source:trunk/mutekh/tools/x86_cdrom.sh] and [source:trunk/mutekh/tools/x86_floppy.sh] scripts are available to easily create boot disk images.
     29
     30== Building cross-compilers ==
     31
     32MutekH comes with a tool to build a complete cross-compilation toolchain:
     33
     34The script is [source:trunk/mutekh/tools/crossgen.mk tools/crossgen.mk].
     35
     36There is an inline help:
     37{{{
     38 $ tools/crossgen.mk
     39[prints some help]
     40}}}
     41
     42You can try a line like this one to get a Mips cross-compiler installed under `~/gnu`:
     43{{{
     44 $ tools/crossgen.mk all TARGET=mipsel-unknown-elf PREFIX=$HOME/gnu
     45}}}
    2946
    3047== Building examples ==