* [Buildroot] [PATCH 1/1] package/azure-iot-sdk: fix static build
@ 2023-11-03 17:36 Fabrice Fontaine
2023-11-03 19:54 ` Thomas Petazzoni via buildroot
2023-11-08 16:26 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2023-11-03 17:36 UTC (permalink / raw)
To: buildroot; +Cc: Sergio Prado, Fabrice Fontaine
Disable provisioning client when building statically to avoid the
following build failure raised since bump to version LTS_01_2022_Ref01
in commit 06bb3640c13191f7515f2140c2207f5b7a2cb7ab and
https://github.com/Azure/azure-iot-sdk-c/commit/1de399fd4875d16eb78e8193778238b9762ed44f
which enabled provisioning client by default:
/home/buildroot/autobuild/instance-3/output-1/build/azure-iot-sdk-c-LTS_01_2023_Ref02/provisioning_client/deps/utpm/src/tpm_comm_linux.c:13:10: fatal error: dlfcn.h: No such file or directory
13 | #include <dlfcn.h>
| ^~~~~~~~~
Fixes:
- http://autobuild.buildroot.org/results/894188649f66d9917e1ed94989ebe307102ab28c
- http://autobuild.buildroot.org/results/735b96c842796f309c33a0545eeb2e8f8d1f75ca
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/azure-iot-sdk-c/azure-iot-sdk-c.mk | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/package/azure-iot-sdk-c/azure-iot-sdk-c.mk b/package/azure-iot-sdk-c/azure-iot-sdk-c.mk
index b6cd0e623a..a6cb968d65 100644
--- a/package/azure-iot-sdk-c/azure-iot-sdk-c.mk
+++ b/package/azure-iot-sdk-c/azure-iot-sdk-c.mk
@@ -15,4 +15,10 @@ AZURE_IOT_SDK_C_INSTALL_STAGING = YES
AZURE_IOT_SDK_C_DEPENDENCIES = libxml2 openssl libcurl util-linux
AZURE_IOT_SDK_C_CONF_OPTS = -Dskip_samples=ON
+ifeq ($(BR2_STATIC_LIBS),y)
+AZURE_IOT_SDK_C_CONF_OPTS += -Duse_prov_client=OFF
+else
+AZURE_IOT_SDK_C_CONF_OPTS += -Duse_prov_client=ON
+endif
+
$(eval $(cmake-package))
--
2.42.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/azure-iot-sdk: fix static build
2023-11-03 17:36 [Buildroot] [PATCH 1/1] package/azure-iot-sdk: fix static build Fabrice Fontaine
@ 2023-11-03 19:54 ` Thomas Petazzoni via buildroot
2023-11-08 16:26 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-11-03 19:54 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Sergio Prado, buildroot
On Fri, 3 Nov 2023 18:36:45 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> Disable provisioning client when building statically to avoid the
> following build failure raised since bump to version LTS_01_2022_Ref01
> in commit 06bb3640c13191f7515f2140c2207f5b7a2cb7ab and
> https://github.com/Azure/azure-iot-sdk-c/commit/1de399fd4875d16eb78e8193778238b9762ed44f
> which enabled provisioning client by default:
>
> /home/buildroot/autobuild/instance-3/output-1/build/azure-iot-sdk-c-LTS_01_2023_Ref02/provisioning_client/deps/utpm/src/tpm_comm_linux.c:13:10: fatal error: dlfcn.h: No such file or directory
> 13 | #include <dlfcn.h>
> | ^~~~~~~~~
>
> Fixes:
> - http://autobuild.buildroot.org/results/894188649f66d9917e1ed94989ebe307102ab28c
> - http://autobuild.buildroot.org/results/735b96c842796f309c33a0545eeb2e8f8d1f75ca
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> package/azure-iot-sdk-c/azure-iot-sdk-c.mk | 6 ++++++
> 1 file changed, 6 insertions(+)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/azure-iot-sdk: fix static build
2023-11-03 17:36 [Buildroot] [PATCH 1/1] package/azure-iot-sdk: fix static build Fabrice Fontaine
2023-11-03 19:54 ` Thomas Petazzoni via buildroot
@ 2023-11-08 16:26 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2023-11-08 16:26 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Sergio Prado, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> Disable provisioning client when building statically to avoid the
> following build failure raised since bump to version LTS_01_2022_Ref01
> in commit 06bb3640c13191f7515f2140c2207f5b7a2cb7ab and
> https://github.com/Azure/azure-iot-sdk-c/commit/1de399fd4875d16eb78e8193778238b9762ed44f
> which enabled provisioning client by default:
> /home/buildroot/autobuild/instance-3/output-1/build/azure-iot-sdk-c-LTS_01_2023_Ref02/provisioning_client/deps/utpm/src/tpm_comm_linux.c:13:10: fatal error: dlfcn.h: No such file or directory
> 13 | #include <dlfcn.h>
> | ^~~~~~~~~
> Fixes:
> - http://autobuild.buildroot.org/results/894188649f66d9917e1ed94989ebe307102ab28c
> - http://autobuild.buildroot.org/results/735b96c842796f309c33a0545eeb2e8f8d1f75ca
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2023.02.x and 2023.08.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-11-08 16:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-03 17:36 [Buildroot] [PATCH 1/1] package/azure-iot-sdk: fix static build Fabrice Fontaine
2023-11-03 19:54 ` Thomas Petazzoni via buildroot
2023-11-08 16:26 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox