From patchwork Wed Jul 6 04:09:47 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: wbx X-Patchwork-Id: 645068 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from helium.openadk.org (helium.openadk.org [IPv6:2a00:1828:2000:679::23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rknMn3Q3Lz9s3v for ; Wed, 6 Jul 2016 14:09:56 +1000 (AEST) Received: from helium.openadk.org (localhost [IPv6:::1]) by helium.openadk.org (Postfix) with ESMTP id 3419910116; Wed, 6 Jul 2016 06:09:50 +0200 (CEST) X-Original-To: devel@uclibc-ng.org Delivered-To: devel@helium.openadk.org Received: by helium.openadk.org (Postfix, from userid 1000) id D237710116; Wed, 6 Jul 2016 06:09:47 +0200 (CEST) MIME-Version: 1.0 To: devel@uclibc-ng.org X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 0550ecce0e6580c5ad34e9a9a39ff18ccf8774f9 X-Git-Newrev: 10f469f6ce1a0c14e4506c42e47e15aa83be2eef Auto-Submitted: auto-generated Message-Id: <20160706040947.D237710116@helium.openadk.org> Date: Wed, 6 Jul 2016 06:09:47 +0200 (CEST) From: wbx@helium.openadk.org (wbx) Subject: [uclibc-ng-devel] uClibc-ng - small C library for embedded systems branch master updated. v1.0.16-2-g10f469f X-BeenThere: devel@uclibc-ng.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: uClibc-ng Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: devel-bounces@uclibc-ng.org Sender: "devel" This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "uClibc-ng - small C library for embedded systems". The branch, master has been updated via 10f469f6ce1a0c14e4506c42e47e15aa83be2eef (commit) from 0550ecce0e6580c5ad34e9a9a39ff18ccf8774f9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 10f469f6ce1a0c14e4506c42e47e15aa83be2eef Author: Waldemar Brodkorb Date: Wed Jul 6 06:08:51 2016 +0200 bfin: allow to build ldd ----------------------------------------------------------------------- Summary of changes: utils/ldd.c | 5 +++++ 1 file changed, 5 insertions(+) hooks/post-receive diff --git a/utils/ldd.c b/utils/ldd.c index f6413c6..5d2c8f4 100644 --- a/utils/ldd.c +++ b/utils/ldd.c @@ -35,6 +35,11 @@ #define ELFCLASSM ELFCLASS32 #endif +#if defined(__bfin__) +#define MATCH_MACHINE(x) (x == EM_BLACKFIN) +#define ELFCLASSM ELFCLASS32 +#endif + #if defined(__s390__) #define MATCH_MACHINE(x) (x == EM_S390) #define ELFCLASSM ELFCLASS32