Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/imx-uuc: fix static build with musl
@ 2019-07-07 13:55 Fabrice Fontaine
  2019-07-07 13:55 ` [Buildroot] [PATCH 2/2] package/imx-uuc: bump to version fc48b497fe961d601b4bcced807f562090854ec9 Fabrice Fontaine
  2019-07-14 14:00 ` [Buildroot] [PATCH 1/2] package/imx-uuc: fix static build with musl Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2019-07-07 13:55 UTC (permalink / raw)
  To: buildroot

Use TARGET_CONFIGURE_OPTS to pass -static in LDFLAGS when building
statically

Fixes:
 - http://autobuild.buildroot.org/results/12c08173f83315fb68fe3c3d34a78ed919ba5a79

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/freescale-imx/imx-uuc/imx-uuc.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/freescale-imx/imx-uuc/imx-uuc.mk b/package/freescale-imx/imx-uuc/imx-uuc.mk
index 52d2b7c7a3..e94648b832 100644
--- a/package/freescale-imx/imx-uuc/imx-uuc.mk
+++ b/package/freescale-imx/imx-uuc/imx-uuc.mk
@@ -14,7 +14,7 @@ IMX_UUC_LICENSE_FILES = COPYING
 IMX_UUC_DEPENDENCIES = host-dosfstools
 
 define IMX_UUC_BUILD_CMDS
-	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) CC=$(TARGET_CC)
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS)
 endef
 
 define IMX_UUC_INSTALL_TARGET_CMDS
-- 
2.20.1

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

* [Buildroot] [PATCH 2/2] package/imx-uuc: bump to version fc48b497fe961d601b4bcced807f562090854ec9
  2019-07-07 13:55 [Buildroot] [PATCH 1/2] package/imx-uuc: fix static build with musl Fabrice Fontaine
@ 2019-07-07 13:55 ` Fabrice Fontaine
  2019-07-14 14:00 ` [Buildroot] [PATCH 1/2] package/imx-uuc: fix static build with musl Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2019-07-07 13:55 UTC (permalink / raw)
  To: buildroot

Add hash for license file

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/freescale-imx/imx-uuc/imx-uuc.hash | 3 ++-
 package/freescale-imx/imx-uuc/imx-uuc.mk   | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/freescale-imx/imx-uuc/imx-uuc.hash b/package/freescale-imx/imx-uuc/imx-uuc.hash
index 623bd27644..57a5098597 100644
--- a/package/freescale-imx/imx-uuc/imx-uuc.hash
+++ b/package/freescale-imx/imx-uuc/imx-uuc.hash
@@ -1,2 +1,3 @@
 # Locally computed
-sha256 ac4960b9dc53cfd09709951c4bf1f774567ff0918d0b216b480e1f7df8c6ee48  imx-uuc-79e9798eee9cd972d92ed2b18f170de856d153c9.tar.gz
+sha256 2784e0826074335893fdad20e9a4faaedced2f206565c383043fbd169e9273a4  imx-uuc-fc48b497fe961d601b4bcced807f562090854ec9.tar.gz
+sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
diff --git a/package/freescale-imx/imx-uuc/imx-uuc.mk b/package/freescale-imx/imx-uuc/imx-uuc.mk
index e94648b832..040d7bd874 100644
--- a/package/freescale-imx/imx-uuc/imx-uuc.mk
+++ b/package/freescale-imx/imx-uuc/imx-uuc.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-IMX_UUC_VERSION = 79e9798eee9cd972d92ed2b18f170de856d153c9
+IMX_UUC_VERSION = fc48b497fe961d601b4bcced807f562090854ec9
 IMX_UUC_SITE = $(call github,NXPmicro,imx-uuc,$(IMX_UUC_VERSION))
 IMX_UUC_LICENSE = GPL-2.0+
 IMX_UUC_LICENSE_FILES = COPYING
-- 
2.20.1

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

* [Buildroot] [PATCH 1/2] package/imx-uuc: fix static build with musl
  2019-07-07 13:55 [Buildroot] [PATCH 1/2] package/imx-uuc: fix static build with musl Fabrice Fontaine
  2019-07-07 13:55 ` [Buildroot] [PATCH 2/2] package/imx-uuc: bump to version fc48b497fe961d601b4bcced807f562090854ec9 Fabrice Fontaine
@ 2019-07-14 14:00 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2019-07-14 14:00 UTC (permalink / raw)
  To: buildroot

On Sun,  7 Jul 2019 15:55:32 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Use TARGET_CONFIGURE_OPTS to pass -static in LDFLAGS when building
> statically
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/12c08173f83315fb68fe3c3d34a78ed919ba5a79
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/freescale-imx/imx-uuc/imx-uuc.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Both applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2019-07-14 14:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-07 13:55 [Buildroot] [PATCH 1/2] package/imx-uuc: fix static build with musl Fabrice Fontaine
2019-07-07 13:55 ` [Buildroot] [PATCH 2/2] package/imx-uuc: bump to version fc48b497fe961d601b4bcced807f562090854ec9 Fabrice Fontaine
2019-07-14 14:00 ` [Buildroot] [PATCH 1/2] package/imx-uuc: fix static build with musl Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox