make-w32
[Top][All Lists]
Advanced

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

W32 Warning disabled, and updated vcproj file


From: J. Grant
Subject: W32 Warning disabled, and updated vcproj file
Date: Sat, 14 Jan 2006 23:41:02 +0000
User-agent: Mozilla/5.0 (X11; U; GNU/Linux i686; en; rv:1.7.12) Gecko/20051013 Debian/1.7.12-1ubuntu1

Hiya,

A query, and a patch. Also attatched txt files of the current warnings
from MSCV debug/release build.

Paul, with your next beta release announcement could you ask for someone
to build with MSCV6, and MSCV2002 please. Also could you ask for someone
to try and build/test a 64bit version on MS-Windows please, I expect 64bit
MS-Windows will have taken off by the time the next Make release is done
so if we can try get it setup for this one that would be great.

(I understand some fo Eli's win32 warning fixes are still to go in.)

I noticed this warning:

make-3.81beta4\dir.c(635) : warning C4701: local variable 'st' may be
used without having been initialized

Paul, I noticed main.c:2944 displays the copyright line with the year
presently set at 2003. (from make --version).  Would this need to be
updated to 2006 for the release?

The patch, with this prepare_w32.bat is not needed anymore.

        * Add prepare_w32.bat functionality to pre-build step of mscv2003
        project files. Also disable 64bit portability warnings.

        * Disable "unreachable code" "conditional expression is constant"
and "unreferenced formal parameter" warnings in config.h.W32 for MSCV builds.

Kind regards
JG

Attachment: make_msvc_net2003.zip
Description: Zip archive

--- config.h.W32        2005-12-13 14:47:25.000000000 +0000
+++ config.h.W32.new    2006-01-14 23:33:50.000000000 +0000
@@ -427,6 +427,14 @@
 /* Define to the installation directory for locales.  */
 #define LOCALEDIR ""
 
+#ifdef _MSC_VER
+#if _MSC_VER > 1000
+#pragma warning (disable : 4127) /* conditional expression is constant */
+#pragma warning (disable : 4702) /* unreachable code */
+#pragma warning (disable : 4100) /* unreferenced formal parameter */
+#endif
+#endif
+
 /*
  * Refer to README.W32 for info on the following settings
  */
------ Rebuild All started: Project: make_msvc.net2003, Configuration: Debug 
Win32 ------

Deleting intermediate files and output files for project 'make_msvc.net2003', 
configuration 'Debug|Win32'.
Copying config.h.W32 to config.h
Compiling...
glob.c
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(195) : warning C4131: 
'my_realloc' : uses old-style declarator
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(314) : warning C4131: 
'next_brace_sub' : uses old-style declarator
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(361) : warning C4131: 'glob' 
: uses old-style declarator
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(497) : warning C4389: '!=' : 
signed/unsigned mismatch
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(868) : warning C4018: '<' : 
signed/unsigned mismatch
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(919) : warning C4389: '==' : 
signed/unsigned mismatch
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(946) : warning C4018: '<' : 
signed/unsigned mismatch
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(1008) : warning C4018: '<' : 
signed/unsigned mismatch
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(1026) : warning C4018: '<' : 
signed/unsigned mismatch
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(1049) : warning C4018: '>' : 
signed/unsigned mismatch
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(1064) : warning C4131: 
'globfree' : uses old-style declarator
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(1069) : warning C4018: '<' : 
signed/unsigned mismatch
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(1080) : warning C4131: 
'collated_compare' : uses old-style declarator
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(1102) : warning C4131: 
'prefix_array' : uses old-style declarator
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(1153) : warning C4244: '=' : 
conversion from 'int' to 'char', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(1170) : warning C4131: 
'__glob_pattern_p' : uses old-style declarator
c:\msys\1.0\home\now3d\make-3.81beta4\glob\glob.c(1212) : warning C4131: 
'glob_in_dir' : uses old-style declarator
fnmatch.c
c:\msys\1.0\home\now3d\make-3.81beta4\glob\fnmatch.c(135) : warning C4131: 
'__strchrnul' : uses old-style declarator
c:\msys\1.0\home\now3d\make-3.81beta4\glob\fnmatch.c(159) : warning C4131: 
'internal_fnmatch' : uses old-style declarator
c:\msys\1.0\home\now3d\make-3.81beta4\glob\fnmatch.c(176) : warning C4244: '=' 
: conversion from 'int' to 'unsigned char', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\glob\fnmatch.c(198) : warning C4244: '=' 
: conversion from 'int' to 'unsigned char', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\glob\fnmatch.c(273) : warning C4244: '=' 
: conversion from 'int' to 'unsigned char', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\glob\fnmatch.c(320) : warning C4244: 
'initializing' : conversion from 'int' to 'unsigned char', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\glob\fnmatch.c(326) : warning C4244: '=' 
: conversion from 'int' to 'unsigned char', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\glob\fnmatch.c(481) : warning C4131: 
'fnmatch' : uses old-style declarator
w32err.c
sub_proc.c
pathstuff.c
dirent.c
c:\msys\1.0\home\now3d\make-3.81beta4\w32\compat\dirent.c(117) : warning C4245: 
'=' : conversion from 'int' to 'ino_t', signed/unsigned mismatch
vpath.c
version.c
variable.c
c:\msys\1.0\home\now3d\make-3.81beta4\variable.c(288) : warning C4130: '==' : 
logical operation on address of string constant
c:\msys\1.0\home\now3d\make-3.81beta4\variable.c(907) : warning C4130: '==' : 
logical operation on address of string constant
c:\msys\1.0\home\now3d\make-3.81beta4\variable.c(1157) : warning C4130: '==' : 
logical operation on address of string constant
signame.c
c:\msys\1.0\home\now3d\make-3.81beta4\signame.c(246) : warning C4244: '=' : 
conversion from 'int' to 'char', possible loss of data
rule.c
c:\msys\1.0\home\now3d\make-3.81beta4\rule.c(398) : warning C4244: '=' : 
conversion from 'int' to 'char', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\rule.c(516) : warning C4244: '=' : 
conversion from 'int' to 'char', possible loss of data
remote-stub.c
remake.c
c:\msys\1.0\home\now3d\make-3.81beta4\remake.c(432) : warning C4307: '+' : 
integral constant overflow
c:\msys\1.0\home\now3d\make-3.81beta4\remake.c(607) : warning C4244: '=' : 
conversion from 'int' to 'short', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\remake.c(824) : warning C4244: '=' : 
conversion from 'int' to 'short', possible loss of data
read.c
c:\msys\1.0\home\now3d\make-3.81beta4\read.c(1590) : warning C4244: '=' : 
conversion from 'int' to 'char', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\read.c(1685) : warning C4244: '=' : 
conversion from 'int' to 'char', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\read.c(1923) : warning C4130: '==' : 
logical operation on address of string constant
c:\msys\1.0\home\now3d\make-3.81beta4\read.c(1925) : warning C4130: '==' : 
logical operation on address of string constant
c:\msys\1.0\home\now3d\make-3.81beta4\read.c(2511) : warning C4245: 'return' : 
conversion from 'int' to 'unsigned long', signed/unsigned mismatch
c:\msys\1.0\home\now3d\make-3.81beta4\read.c(3026) : warning C4210: nonstandard 
extension used : function given file scope
misc.c
main.c
c:\msys\1.0\home\now3d\make-3.81beta4\main.c(981) : warning C4113: 'void 
(__cdecl *)()' differs in parameter lists from 'void (__cdecl *)(int)'
c:\msys\1.0\home\now3d\make-3.81beta4\main.c(982) : warning C4113: 'void 
(__cdecl *)()' differs in parameter lists from 'void (__cdecl *)(int)'
c:\msys\1.0\home\now3d\make-3.81beta4\main.c(1066) : warning C4130: '==' : 
logical operation on address of string constant
c:\msys\1.0\home\now3d\make-3.81beta4\main.c(1162) : warning C4130: '==' : 
logical operation on address of string constant
c:\msys\1.0\home\now3d\make-3.81beta4\main.c(1172) : warning C4130: '==' : 
logical operation on address of string constant
c:\msys\1.0\home\now3d\make-3.81beta4\main.c(1542) : warning C4210: nonstandard 
extension used : function given file scope
c:\msys\1.0\home\now3d\make-3.81beta4\main.c(2269) : warning C4244: '=' : 
conversion from 'const int' to 'char', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\main.c(2803) : warning C4244: '=' : 
conversion from 'const int' to 'char', possible loss of data
job.c
c:\msys\1.0\home\now3d\make-3.81beta4\job.c(689) : warning C4389: '==' : 
signed/unsigned mismatch
c:\msys\1.0\home\now3d\make-3.81beta4\job.c(538) : warning C4102: 
'remote_status_lose' : unreferenced label
c:\msys\1.0\home\now3d\make-3.81beta4\job.c(1409) : warning C4102: 'error' : 
unreferenced label
implicit.c
c:\msys\1.0\home\now3d\make-3.81beta4\implicit.c(402) : warning C4244: '=' : 
conversion from 'int' to 'char', possible loss of data
hash.c
c:\msys\1.0\home\now3d\make-3.81beta4\hash.c(49) : warning C4115: 'token' : 
named type definition in parentheses
c:\msys\1.0\home\now3d\make-3.81beta4\hash.c(265) : warning C4115: 'token' : 
named type definition in parentheses
getopt1.c
Generating Code...
c:\msys\1.0\home\now3d\make-3.81beta4\job.c(728) : warning C4701: local 
variable 'coredump' may be used without having been initialized
c:\msys\1.0\home\now3d\make-3.81beta4\job.c(677) : warning C4701: local 
variable 'exit_sig' may be used without having been initialized
c:\msys\1.0\home\now3d\make-3.81beta4\job.c(677) : warning C4701: local 
variable 'exit_code' may be used without having been initialized
c:\msys\1.0\home\now3d\make-3.81beta4\vpath.c(533) : warning C4701: local 
variable 'st' may be used without having been initialized
c:\msys\1.0\home\now3d\make-3.81beta4\w32\pathstuff.c(49) : warning C4706: 
assignment within conditional expression
Compiling...
getopt.c
getloadavg.c
function.c
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(270) : warning C4244: '=' : 
conversion from 'int' to 'unsigned char', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(528) : warning C4130: '==' : 
logical operation on address of string constant
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(552) : warning C4130: '==' : 
logical operation on address of string constant
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(586) : warning C4130: '==' : 
logical operation on address of string constant
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(638) : warning C4130: '==' : 
logical operation on address of string constant
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(930) : warning C4130: '==' : 
logical operation on address of string constant
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(1040) : warning C4244: '=' : 
conversion from 'int' to 'char', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(1158) : warning C4113: 'int 
(__cdecl *)()' differs in parameter lists from 'int (__cdecl *)(const void 
*,const void *)'
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(1647) : warning C4057: 
'function' : 'int *' differs in indirection to slightly different base types 
from 'unsigned int *'
file.c
c:\msys\1.0\home\now3d\make-3.81beta4\file.c(755) : warning C4307: '+' : 
integral constant overflow
c:\msys\1.0\home\now3d\make-3.81beta4\file.c(756) : warning C4307: '+' : 
integral constant overflow
c:\msys\1.0\home\now3d\make-3.81beta4\file.c(759) : warning C4307: '+' : 
integral constant overflow
expand.c
dir.c
c:\msys\1.0\home\now3d\make-3.81beta4\dir.c(610) : warning C4244: '=' : 
conversion from 'size_t' to 'short', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\dir.c(675) : warning C4244: '=' : 
conversion from 'unsigned int' to 'short', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\dir.c(687) : warning C4244: '=' : 
conversion from 'unsigned int' to 'short', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\dir.c(859) : warning C4244: '=' : 
conversion from 'size_t' to 'short', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\dir.c(936) : warning C4244: '=' : 
conversion from 'size_t' to 'short', possible loss of data
c:\msys\1.0\home\now3d\make-3.81beta4\dir.c(1181) : warning C4113: 'void 
*(__cdecl *)()' differs in parameter lists from 'void *(__cdecl *)(const char 
*)'
c:\msys\1.0\home\now3d\make-3.81beta4\dir.c(1182) : warning C4113: 'dirent 
*(__cdecl *)()' differs in parameter lists from 'dirent *(__cdecl *)(void *)'
default.c
commands.c
c:\msys\1.0\home\now3d\make-3.81beta4\commands.c(359) : warning C4244: '=' : 
conversion from 'int' to 'char', possible loss of data
arscan.c
c:\msys\1.0\home\now3d\make-3.81beta4\arscan.c(611) : warning C4057: 'function' 
: 'const char *' differs in indirection to slightly different base types from 
'BYTE [8]'
c:\msys\1.0\home\now3d\make-3.81beta4\arscan.c(612) : warning C4057: 'function' 
: 'const char *' differs in indirection to slightly different base types from 
'BYTE [10]'
c:\msys\1.0\home\now3d\make-3.81beta4\arscan.c(622) : warning C4057: 'function' 
: 'const char *' differs in indirection to slightly different base types from 
'BYTE [12]'
c:\msys\1.0\home\now3d\make-3.81beta4\arscan.c(623) : warning C4057: 'function' 
: 'const char *' differs in indirection to slightly different base types from 
'BYTE [6]'
c:\msys\1.0\home\now3d\make-3.81beta4\arscan.c(624) : warning C4057: 'function' 
: 'const char *' differs in indirection to slightly different base types from 
'BYTE [6]'
c:\msys\1.0\home\now3d\make-3.81beta4\arscan.c(793) : warning C4057: 'function' 
: 'char *' differs in indirection to slightly different base types from 'BYTE 
[12]'
ar.c
c:\msys\1.0\home\now3d\make-3.81beta4\ar.c(301) : warning C4113: 'int (__cdecl 
*)()' differs in parameter lists from 'int (__cdecl *)(const void *,const void 
*)'
Generating Code...
c:\msys\1.0\home\now3d\make-3.81beta4\dir.c(635) : warning C4701: local 
variable 'st' may be used without having been initialized
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(694) : warning C4706: 
assignment within conditional expression
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(2095) : warning C4706: 
assignment within conditional expression
Compiling...
misc.c
Linking...
------ Rebuild All started: Project: make_msvc.net2003, Configuration: Release 
Win32 ------

Deleting intermediate files and output files for project 'make_msvc.net2003', 
configuration 'Release|Win32'.
Copying config.h.W32 to config.h
Compiling...
glob.c
glob\glob.c(195) : warning C4131: 'my_realloc' : uses old-style declarator
glob\glob.c(314) : warning C4131: 'next_brace_sub' : uses old-style declarator
glob\glob.c(361) : warning C4131: 'glob' : uses old-style declarator
glob\glob.c(497) : warning C4389: '!=' : signed/unsigned mismatch
glob\glob.c(868) : warning C4018: '<' : signed/unsigned mismatch
glob\glob.c(919) : warning C4389: '==' : signed/unsigned mismatch
glob\glob.c(946) : warning C4018: '<' : signed/unsigned mismatch
glob\glob.c(1008) : warning C4018: '<' : signed/unsigned mismatch
glob\glob.c(1026) : warning C4018: '<' : signed/unsigned mismatch
glob\glob.c(1049) : warning C4018: '>' : signed/unsigned mismatch
glob\glob.c(1064) : warning C4131: 'globfree' : uses old-style declarator
glob\glob.c(1069) : warning C4018: '<' : signed/unsigned mismatch
glob\glob.c(1080) : warning C4131: 'collated_compare' : uses old-style 
declarator
glob\glob.c(1102) : warning C4131: 'prefix_array' : uses old-style declarator
glob\glob.c(1153) : warning C4244: '=' : conversion from 'int' to 'char', 
possible loss of data
glob\glob.c(1170) : warning C4131: '__glob_pattern_p' : uses old-style 
declarator
glob\glob.c(1212) : warning C4131: 'glob_in_dir' : uses old-style declarator
fnmatch.c
glob\fnmatch.c(135) : warning C4131: '__strchrnul' : uses old-style declarator
glob\fnmatch.c(159) : warning C4131: 'internal_fnmatch' : uses old-style 
declarator
glob\fnmatch.c(176) : warning C4244: '=' : conversion from 'int' to 'unsigned 
char', possible loss of data
glob\fnmatch.c(198) : warning C4244: '=' : conversion from 'int' to 'unsigned 
char', possible loss of data
glob\fnmatch.c(273) : warning C4244: '=' : conversion from 'int' to 'unsigned 
char', possible loss of data
glob\fnmatch.c(320) : warning C4244: 'initializing' : conversion from 'int' to 
'unsigned char', possible loss of data
glob\fnmatch.c(326) : warning C4244: '=' : conversion from 'int' to 'unsigned 
char', possible loss of data
glob\fnmatch.c(481) : warning C4131: 'fnmatch' : uses old-style declarator
w32err.c
sub_proc.c
pathstuff.c
dirent.c
w32\compat\dirent.c(117) : warning C4245: '=' : conversion from 'int' to 
'ino_t', signed/unsigned mismatch
vpath.c
version.c
variable.c
variable.c(288) : warning C4130: '==' : logical operation on address of string 
constant
variable.c(907) : warning C4130: '==' : logical operation on address of string 
constant
variable.c(1157) : warning C4130: '==' : logical operation on address of string 
constant
signame.c
signame.c(246) : warning C4244: '=' : conversion from 'int' to 'char', possible 
loss of data
rule.c
rule.c(398) : warning C4244: '=' : conversion from 'int' to 'char', possible 
loss of data
rule.c(516) : warning C4244: '=' : conversion from 'int' to 'char', possible 
loss of data
remote-stub.c
remake.c
remake.c(432) : warning C4307: '+' : integral constant overflow
remake.c(607) : warning C4244: '=' : conversion from 'int' to 'short', possible 
loss of data
remake.c(824) : warning C4244: '=' : conversion from 'int' to 'short', possible 
loss of data
read.c
read.c(1590) : warning C4244: '=' : conversion from 'int' to 'char', possible 
loss of data
read.c(1685) : warning C4244: '=' : conversion from 'int' to 'char', possible 
loss of data
read.c(1923) : warning C4130: '==' : logical operation on address of string 
constant
read.c(1925) : warning C4130: '==' : logical operation on address of string 
constant
read.c(2511) : warning C4245: 'return' : conversion from 'int' to 'unsigned 
long', signed/unsigned mismatch
read.c(3026) : warning C4210: nonstandard extension used : function given file 
scope
misc.c
main.c
main.c(981) : warning C4113: 'void (__cdecl *)()' differs in parameter lists 
from 'void (__cdecl *)(int)'
main.c(982) : warning C4113: 'void (__cdecl *)()' differs in parameter lists 
from 'void (__cdecl *)(int)'
main.c(1066) : warning C4130: '==' : logical operation on address of string 
constant
main.c(1162) : warning C4130: '==' : logical operation on address of string 
constant
main.c(1172) : warning C4130: '==' : logical operation on address of string 
constant
main.c(1542) : warning C4210: nonstandard extension used : function given file 
scope
main.c(2269) : warning C4244: '=' : conversion from 'const int' to 'char', 
possible loss of data
main.c(2803) : warning C4244: '=' : conversion from 'const int' to 'char', 
possible loss of data
job.c
job.c(689) : warning C4389: '==' : signed/unsigned mismatch
job.c(538) : warning C4102: 'remote_status_lose' : unreferenced label
job.c(1409) : warning C4102: 'error' : unreferenced label
implicit.c
implicit.c(402) : warning C4244: '=' : conversion from 'int' to 'char', 
possible loss of data
hash.c
hash.c(49) : warning C4115: 'token' : named type definition in parentheses
hash.c(265) : warning C4115: 'token' : named type definition in parentheses
getopt1.c
Generating Code...
c:\msys\1.0\home\now3d\make-3.81beta4\job.c(728) : warning C4701: local 
variable 'coredump' may be used without having been initialized
c:\msys\1.0\home\now3d\make-3.81beta4\job.c(677) : warning C4701: local 
variable 'exit_sig' may be used without having been initialized
c:\msys\1.0\home\now3d\make-3.81beta4\job.c(677) : warning C4701: local 
variable 'exit_code' may be used without having been initialized
c:\msys\1.0\home\now3d\make-3.81beta4\vpath.c(533) : warning C4701: local 
variable 'st' may be used without having been initialized
c:\msys\1.0\home\now3d\make-3.81beta4\w32\pathstuff.c(49) : warning C4706: 
assignment within conditional expression
Compiling...
getopt.c
getloadavg.c
function.c
function.c(270) : warning C4244: '=' : conversion from 'int' to 'unsigned 
char', possible loss of data
function.c(528) : warning C4130: '==' : logical operation on address of string 
constant
function.c(552) : warning C4130: '==' : logical operation on address of string 
constant
function.c(586) : warning C4130: '==' : logical operation on address of string 
constant
function.c(638) : warning C4130: '==' : logical operation on address of string 
constant
function.c(930) : warning C4130: '==' : logical operation on address of string 
constant
function.c(1040) : warning C4244: '=' : conversion from 'int' to 'char', 
possible loss of data
function.c(1158) : warning C4113: 'int (__cdecl *)()' differs in parameter 
lists from 'int (__cdecl *)(const void *,const void *)'
function.c(1647) : warning C4057: 'function' : 'int *' differs in indirection 
to slightly different base types from 'unsigned int *'
file.c
file.c(755) : warning C4307: '+' : integral constant overflow
file.c(756) : warning C4307: '+' : integral constant overflow
file.c(759) : warning C4307: '+' : integral constant overflow
expand.c
dir.c
dir.c(610) : warning C4244: '=' : conversion from 'size_t' to 'short', possible 
loss of data
dir.c(675) : warning C4244: '=' : conversion from 'unsigned int' to 'short', 
possible loss of data
dir.c(687) : warning C4244: '=' : conversion from 'unsigned int' to 'short', 
possible loss of data
dir.c(859) : warning C4244: '=' : conversion from 'size_t' to 'short', possible 
loss of data
dir.c(936) : warning C4244: '=' : conversion from 'size_t' to 'short', possible 
loss of data
dir.c(1181) : warning C4113: 'void *(__cdecl *)()' differs in parameter lists 
from 'void *(__cdecl *)(const char *)'
dir.c(1182) : warning C4113: 'dirent *(__cdecl *)()' differs in parameter lists 
from 'dirent *(__cdecl *)(void *)'
default.c
commands.c
commands.c(359) : warning C4244: '=' : conversion from 'int' to 'char', 
possible loss of data
arscan.c
arscan.c(611) : warning C4057: 'function' : 'const char *' differs in 
indirection to slightly different base types from 'BYTE [8]'
arscan.c(612) : warning C4057: 'function' : 'const char *' differs in 
indirection to slightly different base types from 'BYTE [10]'
arscan.c(622) : warning C4057: 'function' : 'const char *' differs in 
indirection to slightly different base types from 'BYTE [12]'
arscan.c(623) : warning C4057: 'function' : 'const char *' differs in 
indirection to slightly different base types from 'BYTE [6]'
arscan.c(624) : warning C4057: 'function' : 'const char *' differs in 
indirection to slightly different base types from 'BYTE [6]'
arscan.c(793) : warning C4057: 'function' : 'char *' differs in indirection to 
slightly different base types from 'BYTE [12]'
ar.c
ar.c(301) : warning C4113: 'int (__cdecl *)()' differs in parameter lists from 
'int (__cdecl *)(const void *,const void *)'
Generating Code...
c:\msys\1.0\home\now3d\make-3.81beta4\dir.c(635) : warning C4701: local 
variable 'st' may be used without having been initialized
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(694) : warning C4706: 
assignment within conditional expression
c:\msys\1.0\home\now3d\make-3.81beta4\function.c(2095) : warning C4706: 
assignment within conditional expression
Compiling...
misc.c
Linking...
LINK : warning LNK4089: all references to 'ADVAPI32.dll' discarded by /OPT:REF

reply via email to

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