Changes between Version 6 and Version 7 of QuickStartUnix


Ignore:
Timestamp:
Jun 14, 2010, 3:28:24 PM (14 years ago)
Author:
Nicolas Pouillon
Comment:

Highlighting

Legend:

Unmodified
Added
Removed
Modified
  • QuickStartUnix

    v6 v7  
    2626
    2727{{{
     28#!sh
    2829svn co -r 1024 https://www-asim.lip6.fr/svn/mutekh/trunk/mutekh
    2930}}}
     
    5657 - Creating a new modules directory
    5758{{{
     59#!sh
    5860mkdir hello
    5961cd hello
     
    6264 - Writing the source code in `hello.c`
    6365{{{
     66#!c
    6467#include <pthread.h>
    6568
     
    8790 - Writing the `Makefile`
    8891{{{
     92#!Makefile
    8993objs = hello.o
    9094}}}
     
    142146Simply type something like:
    143147{{{
     148#!sh
    144149make CONF=examples/hello/config_emu
    145150}}}
     
    147152or to use the generic configuration file:
    148153{{{
     154#!sh
    149155make CONF=examples/hello/config BUILD=emu-linux-x86
    150156}}}
     
    159165Simply execute the program as a normal unix executable:
    160166{{{
     167#!sh
    161168$ ./kernel-emu-x86-emu.out
    162169(0) Hello (0) World