change init code to support multiple cards. small fixes and corrections to code.
[AROS.git] / arch / all-darwin / README.txt
blob961d10428560f1ca78684c6f124fae4e63c6ca19
1  This file contains various notes about Darwin-hosted port of AROS.
3  1. COMPILING
5  In order to compile it natively under MacOS X you need:
7 a) Xcode, for MacOS developer tools like gcc, get it on
8    http://developer.apple.com.
9 b) MacPorts. From it you need to install iconv, gmp, mpfr and netpbm.
10    Three former packages are needed by cross-gcc.
11 c) AROS-targetted crosscompiler. x86-64 version (running on MacOS X Snow
12    Leopard) can be found on AROS Archives:
13  http://archives.aros-exec.org/index.php?function=browse&cat=development/cross
15  That's all. Execute "./configure", then "make".
16  Note that current MacOS X uname still replies 'i386' about machine's 
17 architecture despite it's actually x86-64. So by default configure will 
18 set up i386 build. There is currently no x86-64 Darwin-hosted, this is 
19 in my TODO list.
20  If at some point you notice that configure started selecting x86-64 
21 version, you may specify target explicitly.
22  Supported targets are:
24  darwin-arm 
25  darwin-i386
26  darwin-ppc
27  darwin-x86_64
29  If you're cross-compiling (your host CPU differs from target CPU, for example
30 you're building PPC AROS on i386 Mac), you'll likely have to specify gcc version
31 explicitly. This is because Apple provides gcc binaries only with version suffix
32 (for example ppc-apple-darwin10-gcc-4.2.1 instead of just ppc-apple-darwin10-gcc).
33 This can be done using --with-gcc-version=x.y argument for configure. For example:
35  ./configure --target=darwin-ppc --with-gcc-version=4.2.1
37  Currently only PowerPC and i386 versions are complete. x86_64 version is a work
38 in progress. ARM version makes sense only for iOS variant (using
39 --enable-target-variant=ios switch). iOS port is also a work in progress and is
40 described separately.
42  Building on Mac is verified to be succesful using MacOS X v10.6 (Snow 
43 Leopard), + gcc 4.2.1 (bundled with Xcode) + aros-binutils v2.20.1
44 + aros-gcc v4.4.2. Cross-compilation on non-Mac should be possible provided that
45 you get Darwin-targetted crosstoolchain up and running. I haven't tried this.
47  2. RUNNING
49  In order to run AROS open a command line, go to root AROS directory 
50 ("AROS"), and run "boot/AROSBootstrap.exe". This port behaves like 
51 UNIX-hosted, it uses emul.handler, which makes your current directory 
52 to be root of your SYS:.
53  You can specify some options on the command line for bootstrap and 
54 AROS. Enter "boot/AROSBootstrap.exe -h" to learn about bootstrap's 
55 options. Also you may check AROSBootstrap.conf file for some settings. 
56 There are also some other useful options understood by AROS itself:
58  vblank=xx - set emulated vertical blank frequency to xx Hz. Default is 50.
59  eclock=xx - set master system's timer to xx Hz. Default value is 50. Old
60              Linux-hosted version had builtin default equivalent to
61              eclock=100. This may impact time measurement quality.
63  If you like some particular settings (like eclock=100) you may enter this
64 in AROSBootstrap.conf file after "arguments" keyword. What you specify there
65 will be always appended to the command line you give to the bootstrap in the
66 shell.
68  25.11.2010, Pavel Fedin <pavel_fedin@mail.ru>