Hi,

> do you plan to build gputils nightly build for Win32 ?
> Under msys I tried old MinGW with gcc-3.4.5, then I updated
> MinGW to gcc 4.6.1 but no luck at all. Then I noticed that I
> need Linux machine for building gputils...

gputils should probably build nicely under MSYS/MinGW.

A number of default headers (stdarg.h, stdlib.h, string.h, ...) seem
to be missing. Did configure emit lines such as
Checking for stdarg.h ... not found
in its process? Possibly all headers are (correctly) wrapped by
#ifdef HAVE_STDARG_H
#include <stdarg.h>
#endif
so there are no errors on include file not found ...
Are the include paths setup properly? Can gcc compile

------->8-(demo.c)-----
#include <stdarg.h>

int main(int argc, char** argv)
{
  va_list ap;
  va_start(ap, argv);
  va_end(ap);
  return 0;
}
-------8<------

via gcc demo.c under your msys/MinGW setup?

> For those interested, make log is attached.

The config.log might be helpful as well.


Raphael

------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Sdcc-user mailing list
Sdcc-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sdcc-user

Reply via email to