This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
development:toolchain [2018/01/10 12:17] – [Toolchain] preisig | development:toolchain [2021/08/04 09:20] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 3: | Line 3: | ||
===== Toolchain ===== | ===== Toolchain ===== | ||
However, if for some reasons you want or have to cross-compile a C application, | However, if for some reasons you want or have to cross-compile a C application, | ||
- | [[ftp:// | + | [[https:// |
The toolchains consists of a compiler ([[https:// | The toolchains consists of a compiler ([[https:// | ||
a assembler and linker ([[https:// | a assembler and linker ([[https:// | ||
Line 11: | Line 11: | ||
The following Cross-Compilation toolchains are available: | The following Cross-Compilation toolchains are available: | ||
- | * [[ftp:// | + | * [[https:// |
- | * [[ftp:// | + | * [[https:// |
- | * [[ftp:// | + | * [[https:// |
Line 21: | Line 21: | ||
==== Getting Started ==== | ==== Getting Started ==== | ||
- | 1. Download and install the toolchain on your Linux x86 PC | + | 1. Download and install the corresponding |
<code bash> | <code bash> | ||
- | wget ftp:// | + | wget https:// |
tar -xvf toolchain-ppc-4.4.5-x86_64.tar.bz2 -C /opt | tar -xvf toolchain-ppc-4.4.5-x86_64.tar.bz2 -C /opt | ||
export PATH=$PATH:/ | export PATH=$PATH:/ | ||
Line 50: | Line 50: | ||
3. Compile it | 3. Compile it | ||
+ | |||
+ | __PowerPC: | ||
<code bash> | <code bash> | ||
powerpc-openwrt-linux-gcc -Wall hello.c -o hello | powerpc-openwrt-linux-gcc -Wall hello.c -o hello | ||
+ | </ | ||
+ | |||
+ | __ARM:__ | ||
+ | <code bash> | ||
+ | arm-openwrt-linux-gcc -Wall hello.c -o hello | ||
</ | </ | ||
Line 59: | Line 66: | ||
This example shows you how to compile a program from source. The program in this example is [[https:// | This example shows you how to compile a program from source. The program in this example is [[https:// | ||
+ | __PowerPC__ | ||
<code bash> | <code bash> | ||
wget https:// | wget https:// | ||
Line 64: | Line 72: | ||
cd jq-1.5 | cd jq-1.5 | ||
CC=powerpc-openwrt-linux-gcc ./configure --host=powerpc --disable-maintainer-mode | CC=powerpc-openwrt-linux-gcc ./configure --host=powerpc --disable-maintainer-mode | ||
+ | make | ||
+ | </ | ||
+ | |||
+ | __ARM__ | ||
+ | <code bash> | ||
+ | wget https:// | ||
+ | tar -xzf jq-1.5.tar.gz | ||
+ | cd jq-1.5 | ||
+ | CC=arm-openwrt-linux-gcc ./configure --host=arm --disable-maintainer-mode | ||
make | make | ||
</ | </ | ||
Line 77: | Line 94: | ||
===== Oracle Virtual Box Image ===== | ===== Oracle Virtual Box Image ===== | ||
- | For small projects or if you don't have a Linux environement you can also use the very small [[ftp:// | + | For small projects or if you don't have a Linux environement you can also use the very small [[https:// |