From patchwork Wed Jul 25 21:24:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 173285 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 4459A2C0089 for ; Thu, 26 Jul 2012 07:25:56 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 68856319DA; Wed, 25 Jul 2012 21:25:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CjySsDNOXAHZ; Wed, 25 Jul 2012 21:25:52 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 11DB032B8F; Wed, 25 Jul 2012 21:25:15 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id D520C8F753 for ; Wed, 25 Jul 2012 21:25:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 987478F791 for ; Wed, 25 Jul 2012 21:25:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ls117D-245lJ for ; Wed, 25 Jul 2012 21:24:53 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [85.10.205.246]) by whitealder.osuosl.org (Postfix) with ESMTPS id 90A258E7EA for ; Wed, 25 Jul 2012 21:24:25 +0000 (UTC) Received: from asgard (host45.186-125-85.telecom.net.ar [186.125.85.45]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q6PLOJqf008220 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 25 Jul 2012 21:24:21 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1343251463; bh=2/OEZeGTj8nbnxrjXyaUh+8gZ/P2Svk9yM4l4RmC6Jk=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=CiaW8aYcxRWyKZsCYWekFqqavmr6Q8mw8MBvpi3+Ww87SATGN+fMPSimG6UEFYDr4 GT7VeuBmEw2QhBFxRLBagQK1kSgBUl5oSgAgn8AP+Qtf+isvWjNlSqcaytbD6c4IcU vNPTSxOOHZaiah2S9SVDj0A87TQIZAnCIEiMyUqk= Received: by asgard (sSMTP sendmail emulation); Wed, 25 Jul 2012 18:24:19 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 25 Jul 2012 18:24:12 -0300 Message-Id: <1343251453-6462-2-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 In-Reply-To: <1343251453-6462-1-git-send-email-gustavo@zacarias.com.ar> References: <1343251453-6462-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 1/2] mips64: remove toolchain kludge X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net -mno-abicalls is an old kludge for some (probably) old issue. Remove it since it's actually harmful, static busybox doesn't build with it for a modern-ish toolchain (defaults as of this commit, uClibc 0.9.33.2 + gcc 4.5.4). Signed-off-by: Gustavo Zacarias --- package/Makefile.in | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/package/Makefile.in b/package/Makefile.in index 6fad224..340e387 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -87,10 +87,6 @@ endif TARGET_CFLAGS=$(TARGET_ABI) $(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING) -ifeq ($(findstring yy,$(BR2_mips)$(BR2_MIPS_ABI64)),yy) -TARGET_CFLAGS+=-fno-pic -mno-abicalls -endif - ifeq ($(BR2_LARGEFILE),y) TARGET_CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 endif