git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/16] Make the msvc-build scripts work again
@ 2015-07-19 20:08 Philip Oakley
  2015-07-19 20:08 ` [PATCH v2 01/16] perl/Makefile: treat a missing PM.stamp as if empty Philip Oakley
                   ` (16 more replies)
  0 siblings, 17 replies; 26+ messages in thread
From: Philip Oakley @ 2015-07-19 20:08 UTC (permalink / raw)
  To: Git List; +Cc: Junio C Hamano, MsysGit List, Yue Lin Ho, Philip Oakley

This updated series fixes the scripts which generated Visual Studio project
files. The scripts had bit rotted over the years as other commits
changed the git makefile which it post-processes.

The series doesn't attempt (yet) to install the Visual Studio compiled product
but allows Windows developers familiar with VS to support the Windows SDK
port of Git.

The fixes are presented in a fine grained manner.

The key change in this series is that the failure of using the git/Makefile
for a clean dry-run has been identified in perl/Makefile. The new fix replaces
two previous hack patches.

Grammatical corrections and other comments have all been included. In
particular the use of deactivated code is now better explained. The false
mode change has also been fixed (from using 'git gui', who's unstage/re-stage
action on Windows with its core.filemode=false loses the 'x' bit).

The previous patch series was not picked up on $gmane, but is available
at http://marc.info/?t=143519065200003&r=1&w=2 (2015-06-25)

Older patch series were at:
 $gmane/21132 (2014-11-20),
 $gmane/21207 (2014-12-26),
 and on Msysgit list (2015-02-23) at
 https://groups.google.com/forum/?hl=en_US?hl%3Den#!topic/msysgit/aiEVBKjRshY
 and as a PR https://github.com/msysgit/git/pull/318/files


Philip Oakley (16):
  perl/Makefile: treat a missing PM.stamp as if empty
  .gitignore: improve MSVC ignore patterns
  .gitignore: ignore library directories created by MSVC VS2008
    buildsystem
  (msvc-build) Vcproj.pm: remove duplicate GUID
  engine.pl: fix error message (lib->link)
  engine.pl: Properly accept quoted spaces in filenames
  engine.pl: Fix i18n -o option in msvc buildsystem generator
  engine.pl: ignore invalidcontinue.obj which is known to MSVC
  engine.pl: name the msvc buildsystem's makedry error file
  engine.pl: delete the captured stderr file if empty
  engine.pl: add debug line to capture the dry-run
  engine.pl: provide more debug print statements
  Vcproj.pm: list git.exe first to be startup project
  vcbuild/readme: Improve layout
  msvc-build: add complete Microsoft Visual C compilation script
  config.mak.uname: add MSVC No_SafeExeceptionHandler option

 .gitignore                                |  8 ++-
 compat/vcbuild/README                     | 27 +++++++---
 compat/vcbuild/scripts/msvc-build         | 86 +++++++++++++++++++++++++++++++
 config.mak.uname                          |  9 ++++
 contrib/buildsystems/Generators/Vcproj.pm | 34 ++++++------
 contrib/buildsystems/engine.pl            | 37 ++++++++++---
 perl/Makefile                             |  2 +
 7 files changed, 170 insertions(+), 33 deletions(-)
 create mode 100755 compat/vcbuild/scripts/msvc-build

-- 
2.4.2.windows.1.5.gd32afb6

-- 
-- 
*** Please reply-to-all at all times ***
*** (do not pretend to know who is subscribed and who is not) ***
*** Please avoid top-posting. ***
The msysGit Wiki is here: https://github.com/msysgit/msysgit/wiki - Github accounts are free.

You received this message because you are subscribed to the Google
Groups "msysGit" group.
To post to this group, send email to msysgit@googlegroups.com
To unsubscribe from this group, send email to
msysgit+unsubscribe@googlegroups.com
For more options, and view previous threads, visit this group at
http://groups.google.com/group/msysgit?hl=en_US?hl=en

--- 
You received this message because you are subscribed to the Google Groups "Git for Windows" group.
To unsubscribe from this group and stop receiving emails from it, send an email to msysgit+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2015-07-20 18:10 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-19 20:08 [PATCH v2 00/16] Make the msvc-build scripts work again Philip Oakley
2015-07-19 20:08 ` [PATCH v2 01/16] perl/Makefile: treat a missing PM.stamp as if empty Philip Oakley
2015-07-19 20:08 ` [PATCH v2 02/16] .gitignore: improve MSVC ignore patterns Philip Oakley
2015-07-19 20:08 ` [PATCH v2 03/16] .gitignore: ignore library directories created by MSVC VS2008 buildsystem Philip Oakley
2015-07-19 20:08 ` [PATCH v2 04/16] (msvc-build) Vcproj.pm: remove duplicate GUID Philip Oakley
2015-07-19 20:08 ` [PATCH v2 05/16] engine.pl: fix error message (lib->link) Philip Oakley
2015-07-19 20:08 ` [PATCH v2 06/16] engine.pl: Properly accept quoted spaces in filenames Philip Oakley
2015-07-19 20:08 ` [PATCH v2 07/16] engine.pl: Fix i18n -o option in msvc buildsystem generator Philip Oakley
2015-07-19 20:08 ` [PATCH v2 08/16] engine.pl: ignore invalidcontinue.obj which is known to MSVC Philip Oakley
2015-07-20  1:54   ` Eric Sunshine
2015-07-20  6:13     ` Philip Oakley
2015-07-19 20:08 ` [PATCH v2 09/16] engine.pl: name the msvc buildsystem's makedry error file Philip Oakley
2015-07-19 20:08 ` [PATCH v2 10/16] engine.pl: delete the captured stderr file if empty Philip Oakley
2015-07-20  2:01   ` Eric Sunshine
2015-07-20  6:16     ` Philip Oakley
2015-07-20  6:40       ` Eric Sunshine
2015-07-20 11:55         ` Philip Oakley
2015-07-20 18:10           ` Eric Sunshine
2015-07-19 20:08 ` [PATCH v2 11/16] engine.pl: add debug line to capture the dry-run Philip Oakley
2015-07-19 20:08 ` [PATCH v2 12/16] engine.pl: provide more debug print statements Philip Oakley
2015-07-19 20:08 ` [PATCH v2 13/16] Vcproj.pm: list git.exe first to be startup project Philip Oakley
2015-07-19 20:08 ` [PATCH v2 14/16] vcbuild/readme: Improve layout and reference msvc-build script Philip Oakley
2015-07-19 20:21   ` Philip Oakley
2015-07-19 20:08 ` [PATCH v2 14/16] vcbuild/readme: Improve layout Philip Oakley
2015-07-19 20:08 ` [PATCH v2 15/16] msvc-build: add complete Microsoft Visual C compilation script Philip Oakley
2015-07-19 20:08 ` [PATCH v2 16/16] config.mak.uname: add MSVC No_SafeExeceptionHandler option Philip Oakley

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).