* [PATCH 1/2] Fix MSVC build
@ 2010-07-05 19:41 Peter Harris
2010-07-05 19:41 ` [PATCH 2/2] Modify MSVC wrapper script Peter Harris
2010-07-06 5:55 ` [PATCH 1/2] Fix MSVC build Johannes Sixt
0 siblings, 2 replies; 4+ messages in thread
From: Peter Harris @ 2010-07-05 19:41 UTC (permalink / raw)
To: msysgit; +Cc: git, ramsay, jrnieder, Peter Harris
Signed-off-by: Peter Harris <pharris@opentext.com>
---
compat/mingw.h | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/compat/mingw.h b/compat/mingw.h
index 8104039..08fea02 100644
--- a/compat/mingw.h
+++ b/compat/mingw.h
@@ -14,11 +14,13 @@ typedef int uid_t;
#define S_ISSOCK(x) 0
#ifndef _STAT_H_
+#ifndef S_IRUSR
#define S_IRUSR 0
#define S_IWUSR 0
#define S_IXUSR 0
#define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
#endif
+#endif
#define S_IRGRP 0
#define S_IWGRP 0
#define S_IXGRP 0
--
1.7.1.msysgit.0.4.gea744.MSVC
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] Modify MSVC wrapper script
2010-07-05 19:41 [PATCH 1/2] Fix MSVC build Peter Harris
@ 2010-07-05 19:41 ` Peter Harris
2010-07-06 5:55 ` [PATCH 1/2] Fix MSVC build Johannes Sixt
1 sibling, 0 replies; 4+ messages in thread
From: Peter Harris @ 2010-07-05 19:41 UTC (permalink / raw)
To: msysgit; +Cc: git, ramsay, jrnieder, Peter Harris
This reduces warnings, and supports additional linker
flags (such as -DEBUG and -MAP)
Signed-off-by: Peter Harris <pharris@opentext.com>
---
Makefile | 1 +
compat/vcbuild/scripts/clink.pl | 7 ++++++-
2 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 7134509..d4fd4b0 100644
--- a/Makefile
+++ b/Makefile
@@ -1073,6 +1073,7 @@ ifndef DEBUG
AR += -LTCG
else
BASIC_CFLAGS += -Zi -MTd
+ BASIC_LDFLAGS = -DEBUG -MAP
endif
X = .exe
endif
diff --git a/compat/vcbuild/scripts/clink.pl b/compat/vcbuild/scripts/clink.pl
index 4374771..3f51886 100644
--- a/compat/vcbuild/scripts/clink.pl
+++ b/compat/vcbuild/scripts/clink.pl
@@ -12,10 +12,14 @@
use strict;
my @args = ();
my @cflags = ();
+my @lflags = ();
my $is_linking = 0;
+my %linkflag = ( '-DEBUG' => 1, '-MAP' => 1 );
while (@ARGV) {
my $arg = shift @ARGV;
- if ("$arg" =~ /^-[DIMGO]/) {
+ if ($linkflag{$arg}) {
+ push(@lflags, $arg);
+ } elsif ("$arg" =~ /^-[DIMGOWZ]/) {
push(@cflags, $arg);
} elsif ("$arg" eq "-o") {
my $file_out = shift @ARGV;
@@ -44,6 +48,7 @@ while (@ARGV) {
}
if ($is_linking) {
unshift(@args, "link.exe");
+ push(@args, @lflags);
} else {
unshift(@args, "cl.exe");
push(@args, @cflags);
--
1.7.1.msysgit.0.4.gea744.MSVC
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] Fix MSVC build
2010-07-05 19:41 [PATCH 1/2] Fix MSVC build Peter Harris
2010-07-05 19:41 ` [PATCH 2/2] Modify MSVC wrapper script Peter Harris
@ 2010-07-06 5:55 ` Johannes Sixt
2010-07-06 10:12 ` [msysGit] " Johannes Schindelin
1 sibling, 1 reply; 4+ messages in thread
From: Johannes Sixt @ 2010-07-06 5:55 UTC (permalink / raw)
To: Peter Harris; +Cc: msysgit, git, ramsay, jrnieder
Am 7/5/2010 21:41, schrieb Peter Harris:
> Signed-off-by: Peter Harris <pharris@opentext.com>
> ---
> compat/mingw.h | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/compat/mingw.h b/compat/mingw.h
> index 8104039..08fea02 100644
> --- a/compat/mingw.h
> +++ b/compat/mingw.h
> @@ -14,11 +14,13 @@ typedef int uid_t;
> #define S_ISSOCK(x) 0
>
> #ifndef _STAT_H_
> +#ifndef S_IRUSR
> #define S_IRUSR 0
> #define S_IWUSR 0
> #define S_IXUSR 0
> #define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
> #endif
> +#endif
> #define S_IRGRP 0
> #define S_IWGRP 0
> #define S_IXGRP 0
This doesn't apply: I don't see the #ifndef _STAT_H_ brackets anywhere in
my version of compat/mingw.h.
-- Hannes
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [msysGit] Re: [PATCH 1/2] Fix MSVC build
2010-07-06 5:55 ` [PATCH 1/2] Fix MSVC build Johannes Sixt
@ 2010-07-06 10:12 ` Johannes Schindelin
0 siblings, 0 replies; 4+ messages in thread
From: Johannes Schindelin @ 2010-07-06 10:12 UTC (permalink / raw)
To: Johannes Sixt; +Cc: Peter Harris, msysgit, git, ramsay, jrnieder
Hi,
On Tue, 6 Jul 2010, Johannes Sixt wrote:
> Am 7/5/2010 21:41, schrieb Peter Harris:
> > Signed-off-by: Peter Harris <pharris@opentext.com>
> > ---
> > compat/mingw.h | 2 ++
> > 1 files changed, 2 insertions(+), 0 deletions(-)
> >
> > diff --git a/compat/mingw.h b/compat/mingw.h
> > index 8104039..08fea02 100644
> > --- a/compat/mingw.h
> > +++ b/compat/mingw.h
> > @@ -14,11 +14,13 @@ typedef int uid_t;
> > #define S_ISSOCK(x) 0
> >
> > #ifndef _STAT_H_
> > +#ifndef S_IRUSR
> > #define S_IRUSR 0
> > #define S_IWUSR 0
> > #define S_IXUSR 0
> > #define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
> > #endif
> > +#endif
> > #define S_IRGRP 0
> > #define S_IWGRP 0
> > #define S_IXGRP 0
>
> This doesn't apply: I don't see the #ifndef _STAT_H_ brackets anywhere in
> my version of compat/mingw.h.
Obviously, this is a patch against 4msysgit's devel branch.
Hth,
Dscho
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-07-06 10:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-05 19:41 [PATCH 1/2] Fix MSVC build Peter Harris
2010-07-05 19:41 ` [PATCH 2/2] Modify MSVC wrapper script Peter Harris
2010-07-06 5:55 ` [PATCH 1/2] Fix MSVC build Johannes Sixt
2010-07-06 10:12 ` [msysGit] " Johannes Schindelin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).