X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f X-Recipient: djgpp AT delorie DOT com X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=TKn1WeI6zqR3V5S4mRvKlt5+P43rp3wUj9sA8TvFCM0=; b=l8Hi4oFhhaInzkcYuQqEgvriHg8lcsv+eJgX4ykqUmnRsPgQ/pQs6UMoHHmeCIC90b FPDHJmHwzgCb31KyndhDBp5rz5lwVVIE6bbgpM8XOEhet+mOM15WkCODLcDMko6vJ7El 2jvNsF2jUsPgDfTnG7IffISCqeLXicxMeUJfiiNTAG9qBZrF0vhrPAMzfW7BjWnmv+ED c0hNqUvOs4zr+WTHumfPS0QBDyfAIvWegjl9Q2pgervjFm4dhQYPfBB4OB+u43P4ei89 wrdtjSSMGk5Mitz9z5oU1FBy2HA/14w2OGAN4EFyIf+zmth9qwW1oUkUaIKUZ4lrutbl LwZQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=TKn1WeI6zqR3V5S4mRvKlt5+P43rp3wUj9sA8TvFCM0=; b=A7jy0paffKARmNLlCP3UXriQu74RpbGAjNw18BjyGN1R4NxZOdzpBNZpnFlox/Z+b8 pBU0o3mtTZpowRxYV8VIAemJXsiPE2m1z2BBWA467ecrVUYU++Z0BckYig6mJBrhZ8+I lDTcrWpxt+zWwxlcftmGV9HyJTvB+GRE1f01Rp6wED1sokWYFlU5P+xRrmvfEezrLfwq i/G23mu4BgcYo4Tx7xFHNH72f7Nf2qsCt8CAuln5PhMGA/ELUOlpv+aCFjFeM2LhLfqZ s3X5TESGL9/p/8QaGExfYuicJYtindbTZg0miuZfuUUBIeUp8UBrpqsCzgUUK8vFO4fC p9MQ== X-Gm-Message-State: AEkoouvpYUQD2AHxOJ7pSGTsQUGw2C7rmReEpaMAxHxh446U5XnYwmdXlDfxSwhOTja8IuB6U7X8EGSf5W7YXA== X-Received: by 10.107.14.74 with SMTP id 71mr14180801ioo.93.1469347223681; Sun, 24 Jul 2016 01:00:23 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <201607240315.u6O3F88A019150@delorie.com> References: <201607240315 DOT u6O3F88A019150 AT delorie DOT com> From: "Ozkan Sezer (sezeroz AT gmail DOT com) [via djgpp AT delorie DOT com]" Date: Sun, 24 Jul 2016 11:00:23 +0300 Message-ID: Subject: Re: ANNOUNCE: DJGPP port of GNU binutils 2.26.1 uploaded. To: djgpp AT delorie DOT com Content-Type: text/plain; charset=UTF-8 Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 7/23/16, Juan Manuel Guerrero (juan DOT guerrero AT gmx DOT de) [via djgpp-announce AT delorie DOT com] wrote: [...] > - This port provides a version of the linker that will be capable to > resolve > multiple symbol definitions conflicts when using DXE3 modules. The change to ld/configure (and ld/config.in) is there, but the corresponding change to ld/configure.ac is missed. If one changes ld/configure.ac and regenerates, the dxe3 changes would be lost. --- binutils-2.26.1/ld/configure.ac~ +++ binutils-2.26.1/ld/configure.ac @@ -437,6 +437,11 @@ [Additional extension a shared object might have.]) fi +case "$target_os" in + *djgpp) AC_DEFINE_UNQUOTED(HAVE_DXE3_SUPPORT, 1, + [DJGPP, DXE3 support: Enable resolution of multiple symbol definition introduced by the import libraries by the linker.]) ;; +esac + dnl Required by html, pdf, install-pdf and install-html AC_SUBST(datarootdir) AC_SUBST(docdir)