1How to create a cross-compiler on LINUX (or any other supported build platform)
2for haiku (information is copied from haiku's README):
3
4Please chdir into haiku's base directory (the one where Jamrules and README live).
5
6If you want to build the default (legacy, 2.95.3) gcc, do this:
7
8  $ ./configure --build-cross-tools ../buildtools
9
10One of the last output lines should tell you that the tools have been built
11successfully.
12
13If you're not interested in binary compatibility (or want to build for the PowerPC architecture), you can build gcc5 instead by doing this:
14
15  $ ./configure --build-cross-tools <arch> ../buildtools
16
17Replace "<arch>" with either "x86" or "ppc", depending on which of the two
18architectures you want to build for.
19
20
21