You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ds...@apache.org on 2021/06/23 21:42:35 UTC

svn commit: r1891003 - /subversion/trunk/

Author: dsahlberg
Date: Wed Jun 23 21:42:35 2021
New Revision: 1891003

URL: http://svn.apache.org/viewvc?rev=1891003&view=rev
Log:
The source tree of TortoiseSVN includes Subversion using svn:externals. Their build process creates a few build directories. Having them ignored makes it easier to spot any local modifications to Subversion.

* /trunk (svn:ignore): Ignore [release|debug]_[win32|x64][_static]

Approved by: stsp

Discussed on dev@: https://mail-archives.apache.org/mod_mbox/subversion-dev/202106.mbox/%3CCAMHy98Mwh1FeJazWxWvTTO_8VnNcJ1SALKQt2nG37rhucks2Bg%40mail.gmail.com%3E

Modified:
    subversion/trunk/   (props changed)

Propchange: subversion/trunk/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Jun 23 21:42:35 2021
@@ -29,7 +29,13 @@ apr
 apr-util
 apr-iconv
 Release
+release_win32
+release_win32_static
+release_x64
 Debug
+debug_win32
+debug_win32_static
+debug_x64
 ipch
 subversion_msvc.dsw
 subversion_msvc.ncb



Re: svn commit: r1891003 - /subversion/trunk/

Posted by Daniel Sahlberg <da...@gmail.com>.
Den tors 24 juni 2021 kl 00:25 skrev Mark Phippard <ma...@gmail.com>:

> This is fine, but I was just going to ask if we should just do
> release_* and debug_*? Might there be other build targets in the
> future for ARM cpu's?
>

That is a very good question. I honestly don't know enough about building
for different CPU architectures to judge how feasible it is to do this. It
would require some build system support on the TSVN side.

Of course, changing to Mark's suggestion would decrease 6 ignores to 2
which might be a good thing. I'll give it a few days and unless someone
protest, I'll change.

Kind regards
Daniel

Re: svn commit: r1891003 - /subversion/trunk/

Posted by Mark Phippard <ma...@gmail.com>.
On Wed, Jun 23, 2021 at 5:42 PM <ds...@apache.org> wrote:
>
> Author: dsahlberg
> Date: Wed Jun 23 21:42:35 2021
> New Revision: 1891003
>
> URL: http://svn.apache.org/viewvc?rev=1891003&view=rev
> Log:
> The source tree of TortoiseSVN includes Subversion using svn:externals. Their build process creates a few build directories. Having them ignored makes it easier to spot any local modifications to Subversion.
>
> * /trunk (svn:ignore): Ignore [release|debug]_[win32|x64][_static]
>
> Approved by: stsp
>
> Discussed on dev@: https://mail-archives.apache.org/mod_mbox/subversion-dev/202106.mbox/%3CCAMHy98Mwh1FeJazWxWvTTO_8VnNcJ1SALKQt2nG37rhucks2Bg%40mail.gmail.com%3E
>
> Modified:
>     subversion/trunk/   (props changed)
>
> Propchange: subversion/trunk/
> ------------------------------------------------------------------------------
> --- svn:ignore (original)
> +++ svn:ignore Wed Jun 23 21:42:35 2021
> @@ -29,7 +29,13 @@ apr
>  apr-util
>  apr-iconv
>  Release
> +release_win32
> +release_win32_static
> +release_x64
>  Debug
> +debug_win32
> +debug_win32_static
> +debug_x64
>  ipch
>  subversion_msvc.dsw
>  subversion_msvc.ncb

This is fine, but I was just going to ask if we should just do
release_* and debug_*? Might there be other build targets in the
future for ARM cpu's?

Mark