All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/2] python3-matplotlib: Disable LTO on mips/clang
@ 2020-12-14 18:42 Khem Raj
  2020-12-14 18:42 ` [meta-oe][PATCH 2/2] redis: Update to 6.0.9 Khem Raj
  2020-12-15 15:02 ` [oe] [meta-python][PATCH 1/2] python3-matplotlib: Disable LTO on mips/clang Trevor Gamblin
  0 siblings, 2 replies; 3+ messages in thread
From: Khem Raj @ 2020-12-14 18:42 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

It needs lld with lto and lld does not yet support gnu_hash for mips

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb
index 3cfa3f31f4..25709a1176 100644
--- a/meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb
+++ b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb
@@ -26,6 +26,7 @@ inherit pypi setuptools3 pkgconfig
 
 # LTO with clang needs lld
 LDFLAGS_append_toolchain-clang = " -fuse-ld=lld"
+LDFLAGS_remove_toolchain-clang_mips = "-fuse-ld=lld"
 
 RDEPENDS_${PN} = "\
     freetype \
@@ -40,6 +41,7 @@ RDEPENDS_${PN} = "\
 
 ENABLELTO_toolchain-clang_riscv64 = "echo enable_lto = False >> ${S}/setup.cfg"
 ENABLELTO_toolchain-clang_riscv32 = "echo enable_lto = False >> ${S}/setup.cfg"
+ENABLELTO_toolchain-clang_mips = "echo enable_lto = False >> ${S}/setup.cfg"
 do_compile_prepend() {
     echo [libs] > ${S}/setup.cfg
     echo system_freetype = true >> ${S}/setup.cfg
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-oe][PATCH 2/2] redis: Update to 6.0.9
  2020-12-14 18:42 [meta-python][PATCH 1/2] python3-matplotlib: Disable LTO on mips/clang Khem Raj
@ 2020-12-14 18:42 ` Khem Raj
  2020-12-15 15:02 ` [oe] [meta-python][PATCH 1/2] python3-matplotlib: Disable LTO on mips/clang Trevor Gamblin
  1 sibling, 0 replies; 3+ messages in thread
From: Khem Raj @ 2020-12-14 18:42 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../recipes-extended/redis/{redis_6.0.8.bb => redis_6.0.9.bb} | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
 rename meta-oe/recipes-extended/redis/{redis_6.0.8.bb => redis_6.0.9.bb} (94%)

diff --git a/meta-oe/recipes-extended/redis/redis_6.0.8.bb b/meta-oe/recipes-extended/redis/redis_6.0.9.bb
similarity index 94%
rename from meta-oe/recipes-extended/redis/redis_6.0.8.bb
rename to meta-oe/recipes-extended/redis/redis_6.0.9.bb
index 14091b565c..50571ed550 100644
--- a/meta-oe/recipes-extended/redis/redis_6.0.8.bb
+++ b/meta-oe/recipes-extended/redis/redis_6.0.9.bb
@@ -18,9 +18,7 @@ SRC_URI = "http://download.redis.io/releases/${BP}.tar.gz \
            file://riscv32.patch \
            file://ilp32.patch \
            "
-
-SRC_URI[md5sum] = "70113b4b8ea7ee4c7e148be62b5d1e0b"
-SRC_URI[sha256sum] = "04fa1fddc39bd1aecb6739dd5dd73858a3515b427acd1e2947a66dadce868d68"
+SRC_URI[sha256sum] = "dc2bdcf81c620e9f09cfd12e85d3bc631c897b2db7a55218fd8a65eaa37f86dd"
 
 inherit autotools-brokensep update-rc.d systemd useradd
 
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [oe] [meta-python][PATCH 1/2] python3-matplotlib: Disable LTO on mips/clang
  2020-12-14 18:42 [meta-python][PATCH 1/2] python3-matplotlib: Disable LTO on mips/clang Khem Raj
  2020-12-14 18:42 ` [meta-oe][PATCH 2/2] redis: Update to 6.0.9 Khem Raj
@ 2020-12-15 15:02 ` Trevor Gamblin
  1 sibling, 0 replies; 3+ messages in thread
From: Trevor Gamblin @ 2020-12-15 15:02 UTC (permalink / raw)
  To: Khem Raj, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1440 bytes --]


On 2020-12-14 1:42 p.m., Khem Raj wrote:
> [Please note this e-mail is from an EXTERNAL e-mail address]
>
> It needs lld with lto and lld does not yet support gnu_hash for mips
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb
> index 3cfa3f31f4..25709a1176 100644
> --- a/meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb
> @@ -26,6 +26,7 @@ inherit pypi setuptools3 pkgconfig
>
>   # LTO with clang needs lld
>   LDFLAGS_append_toolchain-clang = " -fuse-ld=lld"
> +LDFLAGS_remove_toolchain-clang_mips = "-fuse-ld=lld"
>
>   RDEPENDS_${PN} = "\
>       freetype \
> @@ -40,6 +41,7 @@ RDEPENDS_${PN} = "\
>
>   ENABLELTO_toolchain-clang_riscv64 = "echo enable_lto = False >> ${S}/setup.cfg"
>   ENABLELTO_toolchain-clang_riscv32 = "echo enable_lto = False >> ${S}/setup.cfg"
> +ENABLELTO_toolchain-clang_mips = "echo enable_lto = False >> ${S}/setup.cfg"
>   do_compile_prepend() {
>       echo [libs] > ${S}/setup.cfg
>       echo system_freetype = true >> ${S}/setup.cfg
> --
> 2.29.2
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 2245 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-12-15 15:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-14 18:42 [meta-python][PATCH 1/2] python3-matplotlib: Disable LTO on mips/clang Khem Raj
2020-12-14 18:42 ` [meta-oe][PATCH 2/2] redis: Update to 6.0.9 Khem Raj
2020-12-15 15:02 ` [oe] [meta-python][PATCH 1/2] python3-matplotlib: Disable LTO on mips/clang Trevor Gamblin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.