This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
development:toolchain [2016/04/06 09:53] – [Toolchain] fachet | development:toolchain [2021/08/04 09:20] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 2: | Line 2: | ||
Many or even most tasks can be implemented using the integrated [[sdk:sdk | SDK]] with the C-like scripting language and the router API functions. | Many or even most tasks can be implemented using the integrated [[sdk:sdk | SDK]] with the C-like scripting language and the router API functions. | ||
===== 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:// |
- | This toolchain | + | The toolchains |
a assembler and linker ([[https:// | a assembler and linker ([[https:// | ||
a [[wp>C standard library]] ([[http:// | a [[wp>C standard library]] ([[http:// | ||
- | for NetModule Routers | + | for NetModule Routers. |
+ | |||
+ | The following Cross-Compilation toolchains are available: | ||
+ | |||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
- | For the ARM based products NB2800, NB3701, NB3711 and NB3800 the toolchain is available on [[ftp:// | ||
For further introduction to GCC please refer to [[http:// | For further introduction to GCC please refer to [[http:// | ||
Line 16: | 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 45: | 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 54: | 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 59: | 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 72: | 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://public: | + | For small projects or if you don't have a Linux environement you can also use the very small [[https:// |