X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:to:from:subject:date:message-id:references :mime-version:content-type:content-transfer-encoding :in-reply-to; q=dns; s=default; b=O5vqsQ5Zwng8uL+D10AG1MuseDrD42 hzzDiMRlqKF1kobAGiq9sN9ZAaCmcJBGMsW6ZG3vWGwIw1qhvbVKZ/fJa+Y38OJM IS3rfJPWm9zbeoye9rmSLWsM/O4m9yc5ttEhQxu1UlLpRgR7BPWCqaI+vhor6Yej d2XVsE2hguo3I= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:to:from:subject:date:message-id:references :mime-version:content-type:content-transfer-encoding :in-reply-to; s=default; bh=y8Z1Z6KiWQ/3lvMs8DbRspTzpIM=; b=cUO6 fbgHw07+2kPVc7hCpqX3JS2ffmcyjCNMZAXc8qKnkSmg3XJUHtGtHGNvlWK+7JuN mh+oSznb02GBvtyrSvpGNdu0nP65gTGeZAXIpXNX1zY9R82u/o6GMu9txUzTEfpk PsSrDDMhYxIUR/y80LgQZmFh3KJWAPaKQ8WDSfQ= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=BAYES_00,KAM_LAZY_DOMAIN_SECURITY autolearn=no version=3.3.2 spammy=H*r:Unknown X-HELO: blaine.gmane.org To: cygwin AT cygwin DOT com From: Ross Smith Subject: Re: [ANNOUNCEMENT] Updated: gcc-6.3.0-2 (x86/x86_64)(Test) Date: Fri, 28 Jul 2017 09:39:30 +1200 Lines: 52 Message-ID: <8c67221f-19b9-26a3-2562-53a1b01e5fb9@otoy.com> References: <8dd126b8-69aa-fb61-c12a-3d4afb821a66 AT cornell DOT edu> <1a57c104-79d1-2ea7-90d3-2be3182a2e1e AT otoy DOT com> <120c0997-0182-f4e6-0dfd-5d5afd6fd182 AT gmail DOT com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 In-Reply-To: <120c0997-0182-f4e6-0dfd-5d5afd6fd182@gmail.com> X-IsSubscribed: yes On 2017-07-28 09:19, Marco Atzeri wrote: > On 27/07/2017 23:04, Ross Smith wrote: >> >> gcc 6.3 works fine for me unless I use threads. Any C++ program that >> uses std::thread (and worked with the previous gcc) will fail. Simple >> example: >> >> #include >> #include >> void payload() { >> std::cout << "Thread\n"; >> } >> int main() { >> std::cout << "Start\n"; >> std::thread t(payload); >> t.join(); >> std::cout << "Done\n"; >> } >> >> Build and run with: >> >> g++ thread.cpp -o thread && ./thread || echo Fail >> >> This will print Fail, indicating that the executable errored out. >> There's no other output. Sorry, I'm not familiar enough with gcc >> debugging to narrow down the error further. >> >> Code that uses raw pthreads instead of the C++ API works fine. >> >> (I'm running 64-bit Cygwin on Windows 8.1.) >> >> Ross Smith >> > > it works for me on W7-64 > > ./thread || echo "fail" > Start > Thread > Done > > $ g++ --version > g++ (GCC) 6.3.0 That's interesting. Maybe I have something wrong with my installation? I updated the gcc-core, gcc-g++, and libgcc1 packages to the 6.3 test version; was there something else I needed? (I found those by searching the installed package list in the Cygwin installer for gcc or g++, and seeing which ones offered the option of updating to 6.3; there doesn't seem to be any way of checking what you actually need in a case like this.) Ross Smith -- 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