diff options
author | Kai Kang <kai.kang@windriver.com> | 2019-02-26 04:38:57 -0500 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-02-26 17:37:33 -0800 |
commit | ee1b9e4dda413751dffe8630fde6626f51b5c5b7 (patch) | |
tree | 571b8885309e58293ed0b6b570e2dce8308e966f | |
parent | 875cc55028c7ea511763d46f5586c61eee53e42e (diff) | |
download | meta-openembedded-ee1b9e4dda413751dffe8630fde6626f51b5c5b7.tar.gz |
pv: 1.5.3 -> 1.6.6
Update pv from 1.5.3 to 1.6.6.
* export LDEMULATION for mipsn32 to fix compile error
MACHINE ?= "qemumips64"
DEFAULTTUNE = "mips64-n32"
| mips64-poky-linux-gnun32-ld
--sysroot=/home/kkang/buildarea/Yocto/build/tmp/work/mips64-n32-poky-linux-gnun32/pv/1.5.3-r0/recipe-sysroot
-r -o src/library.o src/library/getopt.o src/library/gettext.o
| mips64-poky-linux-gnun32-ld: src/library/getopt.o: ABI is incompatible with that of the selected emulation
| mips64-poky-linux-gnun32-ld: failed to merge target specific data of file src/library/getopt.o
| mips64-poky-linux-gnun32-ld: src/library/gettext.o: ABI is incompatible with that of the selected emulation
| mips64-poky-linux-gnun32-ld: failed to merge target specific data of file src/library/gettext.o
| mips64-poky-linux-gnun32-ld: attempt to do relocatable link with elf32-ntradbigmips input and elf64-tradbigmips output
| mips64-poky-linux-gnun32-ld: src/library/gettext.o: file class ELFCLASS32 incompatible with ELFCLASS64
| mips64-poky-linux-gnun32-ld: final link failed: file in wrong format
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/pv/pv_1.5.3.bb | 11 | ||||
-rw-r--r-- | meta-oe/recipes-support/pv/pv_1.6.6.bb | 13 |
2 files changed, 13 insertions, 11 deletions
diff --git a/meta-oe/recipes-support/pv/pv_1.5.3.bb b/meta-oe/recipes-support/pv/pv_1.5.3.bb deleted file mode 100644 index 5e3dd67c5..000000000 --- a/meta-oe/recipes-support/pv/pv_1.5.3.bb +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | SUMMARY = "Terminal-based tool for monitoring the progress of data through a pipeline" | ||
2 | |||
3 | LICENSE = "Artistic-2.0" | ||
4 | LIC_FILES_CHKSUM = "file://doc/COPYING;md5=9c50db2589ee3ef10a9b7b2e50ce1d02" | ||
5 | |||
6 | SRC_URI = "http://www.ivarch.com/programs/sources/pv-${PV}.tar.bz2" | ||
7 | SRC_URI[md5sum] = "efe8e9e4cad5f3264a32258a63bf2c8e" | ||
8 | SRC_URI[sha256sum] = "76f3999b1c3b3027163dce6ef667cdf8dafb75218ee25e54a03bfe590478f90e" | ||
9 | |||
10 | inherit autotools | ||
11 | |||
diff --git a/meta-oe/recipes-support/pv/pv_1.6.6.bb b/meta-oe/recipes-support/pv/pv_1.6.6.bb new file mode 100644 index 000000000..9649555b8 --- /dev/null +++ b/meta-oe/recipes-support/pv/pv_1.6.6.bb | |||
@@ -0,0 +1,13 @@ | |||
1 | SUMMARY = "Terminal-based tool for monitoring the progress of data through a pipeline" | ||
2 | |||
3 | LICENSE = "Artistic-2.0" | ||
4 | LIC_FILES_CHKSUM = "file://doc/COPYING;md5=9c50db2589ee3ef10a9b7b2e50ce1d02" | ||
5 | |||
6 | SRC_URI = "http://www.ivarch.com/programs/sources/${BP}.tar.bz2" | ||
7 | SRC_URI[md5sum] = "ff3564fddcc2b9bd4a9c1d143aba4b4c" | ||
8 | SRC_URI[sha256sum] = "608ef935f7a377e1439c181c4fc188d247da10d51a19ef79bcdee5043b0973f1" | ||
9 | |||
10 | inherit autotools | ||
11 | |||
12 | LDEMULATION_mipsarchn32 = "${@bb.utils.contains('TUNE_FEATURES', 'bigendian', 'elf32btsmipn32', 'elf32ltsmipn32', d)}" | ||
13 | export LDEMULATION | ||