From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7392 invoked by alias); 12 Mar 2012 10:37:23 -0000 Received: (qmail 7244 invoked by uid 22791); 12 Mar 2012 10:37:22 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-bk0-f41.google.com (HELO mail-bk0-f41.google.com) (209.85.214.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 12 Mar 2012 10:37:10 +0000 Received: by bkwq16 with SMTP id q16so3058008bkw.0 for ; Mon, 12 Mar 2012 03:37:08 -0700 (PDT) Received: by 10.205.133.208 with SMTP id hz16mr4494079bkc.56.1331548628635; Mon, 12 Mar 2012 03:37:08 -0700 (PDT) Received: from [10.15.38.164] (LCaen-156-54-3-113.w80-11.abo.wanadoo.fr. [80.11.66.113]) by mx.google.com with ESMTPS id o7sm24189085bkw.16.2012.03.12.03.37.07 (version=SSLv3 cipher=OTHER); Mon, 12 Mar 2012 03:37:08 -0700 (PDT) Message-ID: <4F5DD1E7.2060608@gmail.com> Date: Mon, 12 Mar 2012 10:37:00 -0000 From: Aurelien Buhrig User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 MIME-Version: 1.0 To: sid@sourceware.org Subject: compile issue with gcc 4.6.1 Content-Type: multipart/mixed; boundary="------------040208040601010504080905" Mailing-List: contact sid-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: sid-owner@sourceware.org X-SW-Source: 2012-q1/txt/msg00003.txt.bz2 This is a multi-part message in MIME format. --------------040208040601010504080905 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Content-length: 369 Hi, There is a compile issue with gcc 4.6 in RTC component: In file included from [...]/src/sid/component/rtc/ds1x42.cxx:9:0: [...]/src/sid/component/rtc/components.h:214:7: error: looser throw specifier for 'virtual ds1742::~ds1742()' [...]/src/sid/component/rtc/components.h:63:3: error: overriding 'virtual ds1642::~ds1642() throw ()' Patch attached. Aurélien --------------040208040601010504080905 Content-Type: text/plain; name="patch_components.h" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch_components.h" Content-length: 253 --- components.h.orig 2012-03-12 10:08:24.176473825 +0100 +++ components.h 2012-03-12 10:08:39.736473329 +0100 @@ -215,6 +215,7 @@ { public: ds1742(); + ~ds1742() throw () {} private: bus::status read_7f8(host_int_4 addr, host_int_1& data); --------------040208040601010504080905--