mirror of
https://git.yoctoproject.org/poky
synced 2026-07-16 15:57:04 +00:00
linux-yocto/3.2/3.4: arm: Fix linking errors with binutils 2.23
Updating the 3.2/3.4 linux-yocto SRCREVs to pickup the following fix:
arm: Fix linking errors with binutils 2.23
We end up with linking errors on arm using latest binutils
because we are linking asm generated objects which use -march=all
generating different attributes into object and use some c objects
e.g. misc.o which use different march therefore generating a
different set of attributes into object. When linking is done
the ld complains since it finds incompatible attributes and ends
up with errors like
error: DIV usage mismatch between arch/arm/boot/compressed/head.o and
output
error: DIV usage mismatch between arch/arm/boot/compressed/misc.o and
output
error: DIV usage mismatch between arch/arm/boot/compressed/decompress.o
and output
error: DIV usage mismatch between arch/arm/boot/compressed/lib1funcs.o
and output
This patch fixes it by providing correct march to assembly routines
which than matches with output of ld.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(From OE-Core rev: e67ffb708522a622d149641ea09b249259ed3fb4)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
80048ceebf
commit
c24befffaf
@@ -3,12 +3,12 @@ require recipes-kernel/linux/linux-yocto.inc
|
||||
KBRANCH_DEFAULT = "standard/base"
|
||||
KBRANCH = "${KBRANCH_DEFAULT}"
|
||||
|
||||
SRCREV_machine_qemuarm ?= "67376c621baf82ce51657246896647ababf5aa7c"
|
||||
SRCREV_machine_qemumips ?= "7a8c1836ce33d49ff68e549e9415538a7419e3dc"
|
||||
SRCREV_machine_qemuppc ?= "5a3c4cf87fd94add818880a158e8e5a9e07303c9"
|
||||
SRCREV_machine_qemux86 ?= "a4c7a048fe3407e8eea0020db4a9c41d3feb8247"
|
||||
SRCREV_machine_qemux86-64 ?= "a4c7a048fe3407e8eea0020db4a9c41d3feb8247"
|
||||
SRCREV_machine ?= "a4c7a048fe3407e8eea0020db4a9c41d3feb8247"
|
||||
SRCREV_machine_qemuarm ?= "84d8ee32265eea5d60f57a2f70bd3b9a0fb9213d"
|
||||
SRCREV_machine_qemumips ?= "ba0e336d4527080233c3c410989d4f351529ee4e"
|
||||
SRCREV_machine_qemuppc ?= "e82b8a111430e3820b11f507863c4b8e8734ed8e"
|
||||
SRCREV_machine_qemux86 ?= "0985844fa6235422c67ef269952fa4e765f252f9"
|
||||
SRCREV_machine_qemux86-64 ?= "0985844fa6235422c67ef269952fa4e765f252f9"
|
||||
SRCREV_machine ?= "0985844fa6235422c67ef269952fa4e765f252f9"
|
||||
SRCREV_meta ?= "463299bc2e533e1bd38b0053ae7b210980f269c3"
|
||||
|
||||
SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;protocol=git;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
|
||||
|
||||
Reference in New Issue
Block a user