From patchwork Sun Oct 9 19:34:37 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: wbx X-Patchwork-Id: 680077 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from helium.openadk.org (helium.openadk.org [89.238.66.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3ssYP23lbnz9ryT for ; Mon, 10 Oct 2016 06:34:45 +1100 (AEDT) Received: from helium.openadk.org (localhost [IPv6:::1]) by helium.openadk.org (Postfix) with ESMTP id B94F5100FF; Sun, 9 Oct 2016 21:34:41 +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 C308B100FF; Sun, 9 Oct 2016 21:34:37 +0200 (CEST) MIME-Version: 1.0 To: devel@uclibc-ng.org X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 7136bb422a0681d787d07dc2936f08395b8a1007 X-Git-Newrev: 24ca498fc322936281b0c69c271dd64979c313eb Auto-Submitted: auto-generated Message-Id: <20161009193437.C308B100FF@helium.openadk.org> Date: Sun, 9 Oct 2016 21:34:37 +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.18-8-g24ca498 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 24ca498fc322936281b0c69c271dd64979c313eb (commit) from 7136bb422a0681d787d07dc2936f08395b8a1007 (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 24ca498fc322936281b0c69c271dd64979c313eb Author: Waldemar Brodkorb Date: Sun Oct 9 20:15:00 2016 +0200 fix mips/mips64 build for old compilers gcc 4.8 does not support nan flag. Reported-by: Thomas Petazzoni ----------------------------------------------------------------------- Summary of changes: Rules.mak | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive diff --git a/Rules.mak b/Rules.mak index 67189ff..b9dbf25 100644 --- a/Rules.mak +++ b/Rules.mak @@ -404,8 +404,8 @@ ifeq ($(TARGET_ARCH),mips) CPU_CFLAGS-$(CONFIG_MIPS_N64_ABI)+=-mabi=64 CPU_CFLAGS-$(CONFIG_MIPS_O32_ABI)+=-mabi=32 CPU_CFLAGS-$(CONFIG_MIPS_N32_ABI)+=-mabi=n32 - CPU_CFLAGS-$(CONFIG_MIPS_NAN_LEGACY)+=-mnan=legacy - CPU_CFLAGS-$(CONFIG_MIPS_NAN_2008)+=-mnan=2008 + CPU_CFLAGS-$(CONFIG_MIPS_NAN_LEGACY)+=$(call check_gcc,-mnan=legacy) + CPU_CFLAGS-$(CONFIG_MIPS_NAN_2008)+=$(call check_gcc,-mnan=2008) CPU_LDFLAGS-y += $(CPU_CFLAGS) endif