This is the mail archive of the
cygwin-apps
mailing list for the Cygwin project.
RE: Removing cygwin32-*, cygwin64-*
- From: Tony Kelman <tony at kelman dot net>
- To: "cygwin-apps at cygwin dot com" <cygwin-apps at cygwin dot com>
- Date: Sun, 14 Feb 2016 04:32:23 -0800
- Subject: RE: Removing cygwin32-*, cygwin64-*
- Authentication-results: sourceware.org; auth=none
- References: <56BA35C3 dot 6050703 at cygwin dot com>,<r5rkbb9calicodqighe262igq7b4nuoj7m at 4ax dot com>,<56C07023 dot 40604 at towo dot net>
Achim Gratz writes:
> I guess that'd be fixable in cygport. But if you are just worried about
> having to enter the passphrase twice, you could use ssh-agent and then
> ssh with agent forwarding into the second installation (or into both
> from another box, as I do).
Yeah, just entering the passphrase from two terminals sounds way easier
than this. I'll send a patch for cygport if I take a look through its
source at any point.
Thomas Wolff writes:
> What about the mingw cross-compiling packages? Are they any good for
> (never tried)?
Yes! These are super useful for building applications that don't depend
on the Cygwin dll or require a posix libc. You use the Cygwin build
environment and all its useful tools, but then deploy the application by
itself. I find Cygwin-to-mingw cross-compilation to be better-behaved
and easier to automate than MSYS2 (having a self-hosted posix dependent
package manager is kind of a mistake on Windows), as long as you can
teach the application that you are building how to cross compile. It
ends up looking almost identical to cross-compilation from Linux using
mingw, but with the advantage that you can execute your tests too
without needing something like Wine.
-Tony