| delorie.com/archives/browse.cgi | search |
| X-Recipient: | archive-cygwin AT delorie DOT com |
| X-SWARE-Spam-Status: | No, hits=-2.2 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,T_TO_NO_BRKTS_FREEMAIL |
| X-Spam-Check-By: | sourceware.org |
| Message-ID: | <4E59B7AA.5000402@gmail.com> |
| Date: | Sun, 28 Aug 2011 04:36:10 +0100 |
| From: | Dave Korn <dave DOT korn DOT cygwin AT gmail DOT com> |
| User-Agent: | Thunderbird 2.0.0.17 (Windows/20080914) |
| MIME-Version: | 1.0 |
| To: | cygwin AT cygwin DOT com |
| Subject: | Re: v*printf functions not available with g++ -std=c++0x |
| References: | <4E4BD899 DOT 4070409 AT cs DOT utoronto DOT ca> <20110818143329 DOT GQ27614 AT calimero DOT vinschen DOT de> |
| In-Reply-To: | <20110818143329.GQ27614@calimero.vinschen.de> |
| X-IsSubscribed: | yes |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Id: | <cygwin.cygwin.com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
On 18/08/2011 15:33, Corinna Vinschen wrote:
> If I try that with Yaakov's 4.5.3 cross compilers, then __STRICT_ANSI__
> is not defined with -std=c__0x, unless I also specify `-ansi' on the
> command line. However, there's a weird warning:
>
> $ i686-pc-cygwin-g++ -std=c++0x -dM -E - < /dev/null | grep ANSI
> cc1: warning: command line option "-std=c++0x" is valid for C++/ObjC++ but not for C
>
> Well, sure, that's why I called g++, not gcc...
Ah, but without a file extension, it doesn't know what language you're
feeding it; for some reason -std doesn't imply -x. Compare:
> $ g++-4 -std=c++0x -dM -E - < /dev/null | grep ANSI
> cc1: warning: command line option "-std=c++0x" is valid for C++/ObjC++ but not f
> or C
>
> $ g++-4 -std=c++0x -x c++ -dM -E - < /dev/null | grep ANSI
> #define __STRICT_ANSI__ 1
>
> $
cheers,
DaveK
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |