b8f302f8 |
1 | You may run these scripts to build a Tiano Cross compiler. They have been\r |
2 | tested on Cygwin, OS X and Linux. You should expect to hack on these scripts to\r |
3 | make them work on your system. You may need to install additional tools on your\r |
4 | system to make the scripts work.\r |
5 | \r |
6 | You will need\r |
7 | \r |
8 | A recent version of gcc that is able to produce executables for the machine\r |
9 | that you want to run this compiler on (the host machine).\r |
10 | wget or curl\r |
11 | tar\r |
12 | bzip\r |
13 | gzip\r |
14 | bash\r |
15 | and possibly others\r |
16 | \r |
63ee273c |
17 | CYGWIN Notes\r |
18 | \r |
19 | You must have the directory mounted as binary, or the build will not succeed.\r |
20 | In the example below, /workspace is mounted as binary.\r |
21 | \r |
22 | C:\cygwin\bin on /usr/bin type user (textmode)\r |
23 | C:\cygwin\lib on /usr/lib type user (textmode)\r |
24 | c:\workspace on /workspace type system (binmode)\r |
25 | C:\cygwin on / type user (textmode)\r |
26 | c: on /cygdrive/c type user (textmode,noumount)\r |
27 | n: on /cygdrive/n type user (textmode,noumount)\r |
28 | \r |
29 | \r |