46 |
48 |
47 Used for running fshell on either physical or simulated ARM hardware. Requires an installation of ARM's RVCT compiler. Version 2.2 is commonly used on current Symbian based handsets. |
49 Used for running fshell on either physical or simulated ARM hardware. Requires an installation of ARM's RVCT compiler. Version 2.2 is commonly used on current Symbian based handsets. |
48 |
50 |
49 =item * C<gcce> |
51 =item * C<gcce> |
50 |
52 |
51 Used for running fshell on either physical or simulated ARM hardware. Requires an installation of the GCC-E. I<Todo - does the SF provide builds of GCC-E?> |
53 Used for running fshell on either physical or simulated ARM hardware. Requires an installation of the GCC crosscompiler (for arm-none-symbianelf) - see here for more information: http://developer.symbian.org/wiki/index.php/The_GCCE_toolchain_initiative |
52 |
54 |
53 =back |
55 =back |
54 |
56 |
55 Lastly, you need to identify the build variant you plan to use, either debug (C<udeb>) or release (C<urel>). Commonly, C<udeb> is used on the emulator whereas C<urel> is used on target hardward. For the purposes of this introduction we will assume that you will be building C<winscw udeb> and C<armv5 urel>. |
57 Lastly, you need to identify the build variant you plan to use, either debug (C<udeb>) or release (C<urel>). Commonly, C<udeb> is used on the emulator whereas C<urel> is used on target hardware. For the purposes of this introduction we will assume that you will be building C<winscw udeb> and C<armv5 urel>. |
56 |
58 |
57 =head2 SBSv1 (aka abld) |
59 =head2 SBSv1 (aka abld) |
58 |
60 |
59 M:\fshell\build\s60\3>bldmake bldfiles |
61 M:\fshell\build\s60\3>bldmake bldfiles |
60 M:\fshell\build\s60\3>abld build winscw udeb |
62 M:\fshell\build\s60\3>abld build winscw udeb |
61 M:\fshell\build\s60\3>abld build armv5 urel |
63 M:\fshell\build\s60\3>abld build armv5 urel |
62 |
64 |
63 =head2 SBSv2 (aka Raptor) |
65 =head2 SBSv2 (aka Raptor) |
64 |
66 |
65 M:\fshell\build\sf\2>sbs -c armv5_urel -c winscw_udeb |
67 M:\fshell\build\sf\2>sbs -c armv5_urel |
|
68 M:\fshell\build\sf\2>sbs -c winscw_udeb |
|
69 |
|
70 I<Note:> There are currently some concurrency issues in the build process that mean we don't recommend building multiple platforms in a single invocation of sbs. Ie do the above rather than C<sbs -c armv5_urel -c winscw_udeb>. We'll fix this as soon as we can! |
66 |
71 |
67 =head1 Installation |
72 =head1 Installation |
68 |
73 |
69 Having performed a build, you should have a full set of binaries in your F<\epoc32> tree. If you want to run fshell on the emulator, no further action is necessary. If you want to run fshell on the simulator or target hardware, then the fshell binaries need to be either added to a ROM image or installed at runtime. |
74 Having performed a build, you should have a full set of binaries in your F<\epoc32> tree. If you want to run fshell on the emulator, no further action is necessary. If you want to run fshell on the simulator or target hardware, then the fshell binaries need to be either added to a ROM image or installed at runtime. |
70 |
75 |