On Fri, Jun 25, 2010 at 4:24 PM, Ramsay Jones wrote: > Peter Harris wrote: >> On Wed, Jun 23, 2010 at 3:48 PM, Ramsay Jones wrote: >>> The msvc debug build (make MSVC=1 DEBUG=1) issues a warning >>> on every invocation of the linker: >>> >>> LINK : warning LNK4044: unrecognized option '/Zi'; ignored >>> >>> In order to suppress the warning, we refrain from passing the >>> $(ALL_CFLAGS) macro to the linker. >> >> Alternatively, we could leave the makefile alone and fix it up in >> compat/vcbuild/scripts/clink.pl > > Hmm, OK ... but it would be much easier if we didn't pass inappropriate > options in the first place. :-P Well, yes and no. The vast majority of git devs work in an environment where compiler flags and linker flags aren't completely disjoint, and it's not very polite of us to rework their makefile to fit our view of the world. Especially when we already have a wrapper that fits their world to ours. So I suggest that improving clink.pl is a whole lot easier for a whole lot more people (compared to reworking the entire makefile being easier for far fewer people). > Also, are you correctly filtering *all* possible inappropriate options? > For example, the very next patch on my branch (not sent to list) adds > a -W3 option ... ;-) Heck no. This only filters the options that are used by the git makefile. But adding a filter for -W* is a trivial one liner (one character-er, even). Peter Harris -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html