bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Make 4.0 does not compile with MSVC 7.1


From: Bob Shark
Subject: Make 4.0 does not compile with MSVC 7.1
Date: Thu, 10 Oct 2013 17:42:11 +0200

Contrary to the Statement in readme.w32 Make 4.0 does not comile with MSVC7.1. Output.c uses CRT features not available:
1) _TRUNCATE is unknown
    Workaround: use (size_t)-1
2) vsnprintf unknown
    Workaround: use _vsnprintf
3) _vsnprintf_s unknown
    Workaround: replace
         len = _vsnprintf_s (str, size, _TRUNCATE, format, ap);
    with
         len = _vsnprintf (str, /*size,*/ (size_t)-1, format, ap);
 
exe was built but didn't test it so far. Hope you Keep on supporting MSVC2003 as I won't by any further MS Compiler...
 
Regards,
Bob

reply via email to

[Prev in Thread] Current Thread [Next in Thread]