From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 63967 invoked by alias); 27 Apr 2015 08:54:22 -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 63957 invoked by uid 89); 27 Apr 2015 08:54:20 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: eusmtp01.atmel.com Received: from eusmtp01.atmel.com (HELO eusmtp01.atmel.com) (212.144.249.242) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 27 Apr 2015 08:54:19 +0000 Received: from apsmtp01.atmel.com (10.168.254.31) by eusmtp01.atmel.com (10.161.101.30) with Microsoft SMTP Server id 14.2.347.0; Mon, 27 Apr 2015 10:54:15 +0200 Received: from PENCHT01.corp.atmel.com (10.168.5.161) by apsmtp01.atmel.com (10.168.254.31) with Microsoft SMTP Server (TLS) id 14.2.347.0; Mon, 27 Apr 2015 16:55:36 +0800 Received: from atmel.com (10.168.5.13) by cas-ap.atmel.com (10.168.5.161) with Microsoft SMTP Server (TLS) id 14.2.342.3; Mon, 27 Apr 2015 16:54:15 +0800 Date: Mon, 27 Apr 2015 08:54:00 -0000 From: Senthil Kumar Selvaraj To: CC: Subject: [avr] Fix 'multiple definition of sim_{read,write}' Message-ID: <20150427085603.GA1476@atmel.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-SW-Source: 2015-04/txt/msg00984.txt.bz2 Hi, This patch does whatever was done in https://sourceware.org/ml/gdb-patches/2015-04/msg00437.html to fix broken gdb build for the AVR target. If ok, could someone commit please? I don't have commit access. Regards Senthil sim/avr/ChangeLog 2015-04-27 Senthil Kumar Selvaraj * Makefile.in (SIM_OBJS): Move interp.o above $(SIM_NEW_COMMON_OBJS). diff --git sim/avr/Makefile.in sim/avr/Makefile.in index 80a1230..f0a9bcc 100644 --- sim/avr/Makefile.in +++ sim/avr/Makefile.in @@ -17,8 +17,8 @@ ## COMMON_PRE_CONFIG_FRAG SIM_OBJS = \ - $(SIM_NEW_COMMON_OBJS) \ interp.o \ + $(SIM_NEW_COMMON_OBJS) \ sim-hload.o \ sim-reason.o \ sim-resume.o \