I am using C++ and have compiled a simple helloworld.
The package Makefile has an added DEPENDS
define Package/helloworld
SECTION:=examples
CATEGORY:=Examples
TITLE:=Hello, World!
DEPENDS:=+libstdcpp
endef
All compiles ok and the package is created. When I try to install I get the following error:
root@OpenWrt:/# opkg install /tmp/helloworld_1.0-1_aarch64_generic.ipk
Installing helloworld (1.0-1) to root...
Collected errors:
* satisfy_dependencies_for: Cannot satisfy the following dependencies for helloworld:
* libstdcpp6
* opkg_install_cmd: Cannot install package helloworld.
How do I get libstdcpp6 (or use other c++ library)?