Hi all,
I try to compile a package and I am using the SDK.
libstdc++ works fine, but I try to switch to uClibc++ to save 2 or 3 MB
I used the Makefiles from
http://wiki.openwrt.org/BuildingPackagesHowTo
i.e. "Sample Makefile for C++ shipped with configure script, and uClibc++ linkables"
configure and make works well, but linking fails with:
libQoS.a(QoSServer.o): In function `QoSServer::handleClientSocket(int, void*)':
QoSServer.cpp:(.text+0x2eb4): undefined reference to `std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'
There are many more lines, all regarding stdlib stuff.
Any ideas?
Christian Dickmann