Open-WRT Tool Machine

When I try to create one project, I get the following error.

Please rely on the Open-WRT tool assembly machine

What does it mean? How to fix this problem? If the answer can be very long, please provide some links to get an idea about this.

I am very new to Open-WRT.

+5
source share
1 answer

Download OpenWrt Build root https://wiki.openwrt.org/about/toolchain This will have an openwrt toolchain Change your application's Makefile to use the OpenWrt toolchain. Basically redefine the CC and LD fields (CXX also if this is a C ++ application).

 CC=<path to toolchain>architecture-openwrt-linux-uclibc-gcc LD=<path_to_toolchain>architecture-openwrt-linux-uclibc-ld 

More details in the link: https://wiki.openwrt.org/doc/devel/crosscompile

+3
source

All Articles