From patchwork Wed Oct 28 12:55:26 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yousong Zhou X-Patchwork-Id: 537333 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 91FB4140D7A for ; Wed, 28 Oct 2015 23:58:02 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=v99qZ0f9; dkim-atps=neutral Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id A80C128BE6C; Wed, 28 Oct 2015 13:54:46 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 187612803EB for ; Wed, 28 Oct 2015 13:54:10 +0100 (CET) X-policyd-weight: using cached result; rate:hard: -8.5 Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Wed, 28 Oct 2015 13:54:07 +0100 (CET) Received: by padhk11 with SMTP id hk11so6796899pad.1 for ; Wed, 28 Oct 2015 05:55:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=r9+pqBDQTi+Lt+FwR2Bn1mcDAOJwajQ0kgLe/sw0Uoc=; b=v99qZ0f9sGxsex2gHvZVIfztlJeyWNC/vhyu4GC/UxGo3Sj5MXwN0rLVqYQwZs8r0j 7bk2k8i/thcOg1VdZ2/OymyUjDPD6MlHcg99MY+oKk2lS+zsxAWUnQiabIxoG3FafQwh pFZjcdOBHfghp+/A5WmBs+3vDySPnl/qfqQnx0ViZEOz9DFT0n1ESTVgqNVUGqrf5MNY JNIBJsMb4doAjGgvXrEgwJJBrYZr1WUo1npJ1HBnfRpQgfhHvF5slu4r9dp+VbxhbzEB UDurhABtIuDX+yYj5TAtjGSOJu2cRfth9vaZ/zi6wT1gv0MesirF34/xVdDOxAmUQxGu OH1w== X-Received: by 10.68.248.6 with SMTP id yi6mr34973018pbc.158.1446036949378; Wed, 28 Oct 2015 05:55:49 -0700 (PDT) Received: from debian.corp.sankuai.com ([103.29.140.57]) by smtp.gmail.com with ESMTPSA id u10sm45409337pbs.63.2015.10.28.05.55.47 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 28 Oct 2015 05:55:48 -0700 (PDT) From: Yousong Zhou To: florian@openwrt.org Date: Wed, 28 Oct 2015 20:55:26 +0800 Message-Id: <1446036929-19163-3-git-send-email-yszhou4tech@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1446036929-19163-1-git-send-email-yszhou4tech@gmail.com> References: <1446036929-19163-1-git-send-email-yszhou4tech@gmail.com> Cc: openwrt-devel@lists.openwrt.org Subject: [OpenWrt-Devel] [PATCH 2/5] target.mk: add optimization flags for MIPS 24Kc. X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" Signed-off-by: Yousong Zhou --- include/target.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/include/target.mk b/include/target.mk index 3e7f17d..119f88c 100644 --- a/include/target.mk +++ b/include/target.mk @@ -212,6 +212,7 @@ ifeq ($(DUMP),1) CPU_CFLAGS_mips32 = -mips32 -mtune=mips32 CPU_CFLAGS_mips32r2 = -mips32r2 -mtune=mips32r2 CPU_CFLAGS_mips64 = -mips64 -mtune=mips64 -mabi=64 + CPU_CFLAGS_24kc = -mips32r2 -mtune=24kc CPU_CFLAGS_24kec = -mips32r2 -mtune=24kec CPU_CFLAGS_34kc = -mips32r2 -mtune=34kc CPU_CFLAGS_74kc = -mips32r2 -mtune=74kc