diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2020-05-25 23:27:14 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2020-05-28 12:35:51 -0700 |
| commit | 78509dbb7966906c78a16bec24e6c31e307b78aa (patch) | |
| tree | e460d114b190ee050b49e72cffaaa56e52f0385c | |
| parent | d7f5367b53f6fd410e1ebb270f52c2d9f4b3435a (diff) | |
| download | meta-openembedded-78509dbb7966906c78a16bec24e6c31e307b78aa.tar.gz | |
multipath-tools: fix compiling parallel issue
Add explicit dependency on libraries
[snip]
gcc/i686-overc-linux/10.1.0/ld: cannot find -lmpathpersist
collect2: error: ld returned 1 exit status
Makefile:36: recipe for target 'multipathd' failed
make[1]: *** [multipathd] Error 1
make[1]: Leaving directory 'git/multipathd'
Makefile:29: recipe for target 'multipathd' failed
make: *** [multipathd] Error 2
ln -sf libmpathpersist.so.0 libmpathpersist.so
[snip]
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-support/multipath-tools/files/0001-add-explicit-dependency-on-libraries.patch | 40 | ||||
| -rw-r--r-- | meta-oe/recipes-support/multipath-tools/multipath-tools_0.8.4.bb | 1 |
2 files changed, 41 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/multipath-tools/files/0001-add-explicit-dependency-on-libraries.patch b/meta-oe/recipes-support/multipath-tools/files/0001-add-explicit-dependency-on-libraries.patch new file mode 100644 index 0000000000..2827bb8745 --- /dev/null +++ b/meta-oe/recipes-support/multipath-tools/files/0001-add-explicit-dependency-on-libraries.patch | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | From 04884263d1de8c427a7a15bd1cf6466ea65d3a0b Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
| 3 | Date: Mon, 25 May 2020 23:22:55 -0700 | ||
| 4 | Subject: [PATCH] add explicit dependency on libraries | ||
| 5 | |||
| 6 | [snip] | ||
| 7 | gcc/i686-overc-linux/10.1.0/ld: cannot find -lmpathpersist | ||
| 8 | collect2: error: ld returned 1 exit status | ||
| 9 | Makefile:36: recipe for target 'multipathd' failed | ||
| 10 | make[1]: *** [multipathd] Error 1 | ||
| 11 | make[1]: Leaving directory 'git/multipathd' | ||
| 12 | Makefile:29: recipe for target 'multipathd' failed | ||
| 13 | make: *** [multipathd] Error 2 | ||
| 14 | ln -sf libmpathpersist.so.0 libmpathpersist.so | ||
| 15 | [snip] | ||
| 16 | |||
| 17 | Upstream-Status: Pending | ||
| 18 | |||
| 19 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
| 20 | --- | ||
| 21 | Makefile | 3 ++- | ||
| 22 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
| 23 | |||
| 24 | diff --git a/Makefile b/Makefile | ||
| 25 | index bea0a0b2..37a77129 100644 | ||
| 26 | --- a/Makefile | ||
| 27 | +++ b/Makefile | ||
| 28 | @@ -29,7 +29,8 @@ $(BUILDDIRS): | ||
| 29 | $(MAKE) -C $@ | ||
| 30 | |||
| 31 | multipath multipathd mpathpersist libmpathpersist : libmultipath | ||
| 32 | -mpathpersist: libmpathpersist | ||
| 33 | +mpathpersist multipathd: libmpathpersist | ||
| 34 | +libdmmp libmultipath mpathpersist multipath multipathd: libmpathcmd | ||
| 35 | |||
| 36 | DEPS_ON_MULTIPATH := \ | ||
| 37 | multipath \ | ||
| 38 | -- | ||
| 39 | 2.21.0 | ||
| 40 | |||
diff --git a/meta-oe/recipes-support/multipath-tools/multipath-tools_0.8.4.bb b/meta-oe/recipes-support/multipath-tools/multipath-tools_0.8.4.bb index 2795a8d091..af34a4b392 100644 --- a/meta-oe/recipes-support/multipath-tools/multipath-tools_0.8.4.bb +++ b/meta-oe/recipes-support/multipath-tools/multipath-tools_0.8.4.bb | |||
| @@ -44,6 +44,7 @@ SRC_URI = "git://git.opensvc.com/multipath-tools/.git;protocol=http \ | |||
| 44 | file://0030-Always-use-devmapper.patch \ | 44 | file://0030-Always-use-devmapper.patch \ |
| 45 | file://0031-Always-use-devmapper-for-kpartx.patch \ | 45 | file://0031-Always-use-devmapper-for-kpartx.patch \ |
| 46 | file://0001-fix-bug-of-do_compile-and-do_install.patch \ | 46 | file://0001-fix-bug-of-do_compile-and-do_install.patch \ |
| 47 | file://0001-add-explicit-dependency-on-libraries.patch \ | ||
| 47 | " | 48 | " |
| 48 | 49 | ||
| 49 | LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" | 50 | LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" |
