[En-Nut-Discussion] problems compiling httpd under ImageCraft, v2.5.2 or v2.5.91

Harald Kipp harald.kipp at egnite.de
Thu Nov 28 10:32:21 CET 2002


>
>I can not get a reliable piece of code from compiling the v2.5.2 or
>2.5.91 release.  I've followed all the instructions, moved the supplied
>binaries into the icc/lib folder, added the global macros, modified
>environmental vars, etc.

Did you try appicc/httpd or app/httpd? The second one is
not usable with ICCAVR.

Richard may provide a solution for this incompatibility
soon. The problem is, that ICCAVR can't support

NutPrintString_P(dev, PSTR("Rom based"));

You need to change this to

{
   const char tmp[] = "Rom based";
   NutPrintString_P(dev, tmp);
}

Harald




More information about the En-Nut-Discussion mailing list