delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2020/03/26/17:38:57

X-Recipient: archive-cygwin AT delorie DOT com
DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E0DB8385E012
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com;
s=default; t=1585258687;
bh=Mm51vegoO4lO5ST9ZrjPYhSK61vViW24psuvJgODrP8=;
h=References:In-Reply-To:Date:Subject:To:List-Id:List-Unsubscribe:
List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc:
From;
b=IitzyouNkynxk4g87jDnhSTsjsGa/yaSZm9owXoocWibJQYUoBUVsNElDjd/764gv
mJ4IICy5WsFkCrDo/Fq4xW61gUI1xyeBFUwGySvx4NIy0l/WizllGvfUOqxD4/Spvd
jvS7Cimapv575nFPqCOGP/bpb5B2gnapFA+cUY1Y=
X-Original-To: cygwin AT cygwin DOT com
Delivered-To: cygwin AT cygwin DOT com
DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 77741385E006
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=1e100.net; s=20161025;
h=x-gm-message-state:mime-version:references:in-reply-to:from:date
:message-id:subject:to:cc;
bh=z6uDCsBdQ+aKb4c0NITHEykOfzbuuK/0O1FRDbD2uNg=;
b=jPu+mXVx9x3QzC/fjpn+v2Ge/G++4dLDfh+WrCwRRrK1pvfOkzaz3o8M34yNwhFUMz
PMI2SAlEqnCQyDYJ9uCR2tCL2PlH+SoyFbxUP6UFjrgyv6hY3XRGeVAKrg2y4zwWpA7x
VLyYGaaYt4o+sIYkrxD90yFnAyrcF9IkLDZNUMCiP7TD96qTAGPc0bxb9PoCnquqiruI
On8gLpn7nE3cg1vAeNItsHEy8A+ifdw0uWMakDXUoeVCKoJ28mko8YoQaHKq9XOn/gEw
HIyAOABE5kIoCmKjHkgP01DuxEJCmU3CDWPxxS9ZjGpQxxI0fgErOqhzc7GQ1srRgei5
Lu/Q==
X-Gm-Message-State: ANhLgQ22fIydKCjIgnFYRsISfXbKMlJz8iTxH3suuIl1wRRj3iKdttgR
EMuZ7kk3nw2QJnINtwnle30go9fcX6zGLaFajrQ=
X-Google-Smtp-Source: ADFU+vvmRo/3W1F0Nsk54mwQY8Gdu+jC03YsISD2n4/K/k4bmpKJm/HhN12RWnnGvHzLPwN/mhJh/t2UFISXCHCpnyo=
X-Received: by 2002:a05:600c:2904:: with SMTP id
i4mr2089048wmd.41.1585258682276;
Thu, 26 Mar 2020 14:38:02 -0700 (PDT)
MIME-Version: 1.0
References: <537493096 DOT 2714240 DOT 1585254646086 DOT ref AT mail DOT yahoo DOT com>
<537493096 DOT 2714240 DOT 1585254646086 AT mail DOT yahoo DOT com>
In-Reply-To: <537493096.2714240.1585254646086@mail.yahoo.com>
Date: Thu, 26 Mar 2020 22:37:50 +0100
Message-ID: <CAEhDDbDRF5C-feEhcbjBZWM2y6uX0TZzd=DcZs3yjnYV+JwpnQ@mail.gmail.com>
Subject: Re: Use cygwin to run autotools for MSVC?
To: Mike Gran <spk121 AT yahoo DOT com>
X-Spam-Status: No, score=-6.3 required=5.0 tests=BAYES_00, DKIM_SIGNED,
DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, HTML_MESSAGE,
RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS,
TXREP autolearn=ham autolearn_force=no version=3.4.2
X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on
server2.sourceware.org
X-Content-Filtered-By: Mailman/MimeDel 2.1.29
X-BeenThere: cygwin AT cygwin DOT com
X-Mailman-Version: 2.1.29
List-Id: General Cygwin discussions and problem reports <cygwin.cygwin.com>
List-Archive: <http://cygwin.com/pipermail/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-request AT cygwin DOT com?subject=help>
List-Subscribe: <http://cygwin.com/mailman/listinfo/cygwin>,
<mailto:cygwin-request AT cygwin DOT com?subject=subscribe>
From: Csaba Raduly via Cygwin <cygwin AT cygwin DOT com>
Reply-To: Csaba Raduly <rcsaba AT gmail DOT com>
Cc: Cygwin List <cygwin AT cygwin DOT com>
Sender: "Cygwin" <cygwin-bounces AT cygwin DOT com>

Hi Mike,

On Thu, Mar 26, 2020 at 9:31 PM Mike Gran via Cygwin <cygwin AT cygwin DOT com>
wrote:

> Hi-
> Is it possible use Cygwin to run an autotools 'configure' script but have
> the compiler be MSVC?
>

I would be very surprised if this worked. 'configure' is likely to run the
compiler with unix-style flags (started with hyphens) rather than DOS-style
flags (started with forward slashes). cl.exe may accept only DOS-style
flags.

Also, MSVC won't be able to find Cygwin's include files, and even if it
did, most likely won't be able to compile them.

The whole thing sounds like a recipe for failure. What are you trying to
achieve?


Csaba
-- 
You can get very substantial performance improvements
by not doing the right thing. - Scott Meyers, An Effective C++11/14 Sampler
So if you're looking for a completely portable, 100% standards-conformant
way
to get the wrong information: this is what you want. - Scott Meyers
(C++TDaWYK)
--
Problem reports:      https://cygwin.com/problems.html
FAQ:                  https://cygwin.com/faq/
Documentation:        https://cygwin.com/docs.html
Unsubscribe info:     https://cygwin.com/ml/#unsubscribe-simple

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019