From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-da0-f43.google.com ([209.85.210.43]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1UV0Ed-0002nq-N6 for openembedded-core@lists.openembedded.org; Wed, 24 Apr 2013 15:59:50 +0200 Received: by mail-da0-f43.google.com with SMTP id u36so903041dak.16 for ; Wed, 24 Apr 2013 06:42:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=T4YSP4fqn60Hesf/PNss7EmX80bFNADM9emBYELLgUk=; b=jxizN6Lis2LJa2cB1uuCh40mQ5Vip0ztpe2mp1LPjwprCNOEltw9o4U//EfAluqPjF W3Q2VbitGpRg2prSFRd9eFS35Niy11/O27b8IRhJbXOn+e8Yl8Wx6cizc+Oljo2TFoaY JJYsLBxyOQq/WtUT2G9PyjKjyDFFYYmKUDZ3Pzok9PSsj+aZzeinSMd9D/B5WNOe13PT jscDQfg4B+8l91GgiZ3lcSzkUXqGfrwq2BbmTR3w/hzOtxNqgn60XuYDN6HFdILcdO3L fh7wERDKjod4urL46svRJ01RyHez/b+o3IkFlhIdn+AukY65BaT0RRRTLPZjgH54ARnS lB0A== X-Received: by 10.68.114.100 with SMTP id jf4mr44099666pbb.144.1366810924886; Wed, 24 Apr 2013 06:42:04 -0700 (PDT) Received: from localhost (ip-62-24-80-145.net.upcbroadband.cz. [62.24.80.145]) by mx.google.com with ESMTPSA id z8sm3118472pbt.23.2013.04.24.06.42.01 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 24 Apr 2013 06:42:03 -0700 (PDT) From: Martin Jansa To: openembedded-core@lists.openembedded.org Date: Wed, 24 Apr 2013 15:42:11 +0200 Message-Id: <1366810932-7377-1-git-send-email-Martin.Jansa@gmail.com> X-Mailer: git-send-email 1.8.2.1 In-Reply-To: <20130424102611.GH3217@jama> References: <20130424102611.GH3217@jama> Subject: [PATCH 1/2] tune-thumb.inc: Remove, replaced by arm/feature-arm-thumb.inc X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Apr 2013 13:59:54 -0000 Signed-off-by: Martin Jansa --- meta/conf/machine/include/tune-thumb.inc | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 meta/conf/machine/include/tune-thumb.inc diff --git a/meta/conf/machine/include/tune-thumb.inc b/meta/conf/machine/include/tune-thumb.inc deleted file mode 100644 index a2392c2..0000000 --- a/meta/conf/machine/include/tune-thumb.inc +++ /dev/null @@ -1,32 +0,0 @@ -#tune file for thumb instructions - -ARM_INSTRUCTION_SET ?= "arm" -# "arm" "thumb" -# The instruction set the compiler should use when generating application -# code. The kernel is always compiled with arm code at present. arm code -# is the original 32 bit ARM instruction set, thumb code is the 16 bit -# encoded RISC sub-set. Thumb code is smaller (maybe 70% of the ARM size) -# but requires more instructions (140% for 70% smaller code) so may be -# slower. - -THUMB_INTERWORK ?= "yes" -# "yes" "no" -# Whether to compile with code to allow interworking between the two -# instruction sets. This allows thumb code to be executed on a primarily -# arm system and vice versa. It is strongly recommended that DISTROs not -# turn this off - the actual cost is very small. - -OVERRIDE_THUMB = "${@['', ':thumb'][d.getVar('ARM_INSTRUCTION_SET', True) == 'thumb']}" -OVERRIDE_INTERWORK = "${@['', ':thumb-interwork'][d.getVar('THUMB_INTERWORK', True) == 'yes']}" -OVERRIDES .= "${OVERRIDE_THUMB}${OVERRIDE_INTERWORK}" - -# Compiler and linker options for application code and kernel code. These -# options ensure that the compiler has the correct settings for the selected -# instruction set and interworking. -ARM_INTERWORK_M_OPT = "${@['-mno-thumb-interwork', '-mthumb-interwork'][d.getVar('THUMB_INTERWORK', True) == 'yes']}" -ARM_THUMB_M_OPT = "${@['-marm', '-mthumb'][d.getVar('ARM_INSTRUCTION_SET', True) == 'thumb']}" - -# -TUNE_CCARGS += "${ARM_INTERWORK_M_OPT} ${ARM_THUMB_M_OPT}" -TARGET_CC_KERNEL_ARCH += "-mno-thumb-interwork -marm" - -- 1.8.2.1