From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 69834 invoked by alias); 16 Jan 2019 19:51:55 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 69818 invoked by uid 89); 16 Jan 2019 19:51:54 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 spammy=Gmail X-HELO: smtp.polymtl.ca Received: from smtp.polymtl.ca (HELO smtp.polymtl.ca) (132.207.4.11) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 16 Jan 2019 19:51:52 +0000 Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id x0GJpjws011771 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Wed, 16 Jan 2019 14:51:49 -0500 Received: by simark.ca (Postfix, from userid 112) id F13E31E7BB; Wed, 16 Jan 2019 14:51:44 -0500 (EST) Received: from simark.ca (localhost [127.0.0.1]) by simark.ca (Postfix) with ESMTP id F15D21E4A3; Wed, 16 Jan 2019 14:51:41 -0500 (EST) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 16 Jan 2019 19:51:00 -0000 From: Simon Marchi To: "Pavel I. Kryukov" Cc: gdb-patches@sourceware.org Subject: Re: [PATCH] Simulator: prevent inlining in C++ mode In-Reply-To: References: <7d0cf55807aabaf4391662dc5e25b3cf@polymtl.ca> Message-ID: <1d3c4bfafaf0782637c402c8c13041bf@polymtl.ca> X-Sender: simon.marchi@polymtl.ca User-Agent: Roundcube Webmail/1.3.6 X-IsSubscribed: yes X-SW-Source: 2019-01/txt/msg00380.txt.bz2 On 2019-01-16 13:29, Pavel I. Kryukov wrote: > Okay, there are no C++ compiler errors other than macro expansion, > so this patch may be ignored. I submitted a separate patch for macros > expansion (https://sourceware.org/ml/gdb-patches/2019-01/msg00367.html) I'll take a look. > (Sorry, I still get lines wrapped in patches while sending them via > Gmail. > Could you please tell if there is a workaround?) The best way is to use "git-send-email". You will need an SMTP server, whether it is gmail, your ISP's, etc. This should help: https://coderwall.com/p/dp-gka/setting-up-git-send-email-with-gmail If you really can't get this to work, the next best thing is to generate a .patch file (git format-patch HEAD^) and send it as an attachment. This ensures that the formatting is preserved. Thanks! Simon