From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 104771 invoked by alias); 19 Jul 2017 10:48:57 -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 104756 invoked by uid 89); 19 Jul 2017 10:48:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=Xavier, xavier X-HELO: smtp.eu.adacore.com Received: from mel.act-europe.fr (HELO smtp.eu.adacore.com) (194.98.77.210) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 19 Jul 2017 10:48:55 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id EBDCB81392 for ; Wed, 19 Jul 2017 12:48:52 +0200 (CEST) Received: from smtp.eu.adacore.com ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SiTDk_he7Un7 for ; Wed, 19 Jul 2017 12:48:52 +0200 (CEST) Received: from [IPv6:2a02:2ab8:224:1:d681:d7ff:fe8f:b69d] (unknown [IPv6:2a02:2ab8:224:1:d681:d7ff:fe8f:b69d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.eu.adacore.com (Postfix) with ESMTPSA id D91BE8136D for ; Wed, 19 Jul 2017 12:48:52 +0200 (CEST) Subject: Re: [RFA] darwin: support last version of dyld To: gdb-patches@sourceware.org References: <568f168b-b6bd-83dd-7346-042b2a5dd548@adacore.com> From: Tristan Gingold Message-ID: Date: Wed, 19 Jul 2017 10:48:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <568f168b-b6bd-83dd-7346-042b2a5dd548@adacore.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2017-07/txt/msg00284.txt.bz2 On 19/07/2017 12:26, Xavier Roirand wrote: > Hi, > > This patch increases DYLD_VERSION_MAX to support the most recent version > of dyld (dynamic linker). Ok! > > gdb/ > * solib-darwin.c (DYLD_VERSION_MAX): Increase value. > > diff --git a/gdb/solib-darwin.c b/gdb/solib-darwin.c > index d83ac3b..c3bb981 100644 > --- a/gdb/solib-darwin.c > +++ b/gdb/solib-darwin.c > @@ -67,7 +67,7 @@ struct gdb_dyld_all_image_infos > > /* Current all_image_infos version. */ > #define DYLD_VERSION_MIN 1 > -#define DYLD_VERSION_MAX 14 > +#define DYLD_VERSION_MAX 15 > > /* Per PSPACE specific data. */ > struct darwin_info >