Openwrt工具链搭建机

Open-WRT toolchain build machine

当我尝试构建一个项目时出现以下错误。

Please build on a Open-WRT toolchain build machine

这是什么意思?如何解决这个问题?如果答案可能很长,请提供一些链接以对此有所了解。

我是 Open-WRT 的新手。

下载 OpenWrt Build root https://wiki.openwrt.org/about/toolchain 这将具有openwrt工具链 修改应用程序的 Makefile 以使用 OpenWrt 工具链。 基本上覆盖 CCLD 字段(如果它是 C++ 应用程序,也会覆盖 CXX)。

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

link 中有更多详细信息:https://wiki.openwrt.org/doc/devel/crosscompile