Re: lwip and C++ compilation/linking issue
"Stark, Josef" <[email protected]>
| Newsgroups | gmane.comp.micro-kernel.l4.devel |
|---|---|
| Message-ID | <0E9B8524CEB45345BDDC5443F04630D1054671DA@BADWLRZ-SWMBX13.ads.mwn.de> |
Seems that the mail from Martin Küttler in another thread a few minutes ago solved my problem.
Surrounding the ankhif_init() prototype in main.cc like this:
extern "C"
{
extern err_t ankhif_init(struct netif*);
}
leads to a successful compilation.
Thanks!
Josef