public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [openembedded-core] [master] [PATCH] cmake-native: disable libidn2 for native build
@ 2026-02-12  5:03 Deepak Rathore -X (deeratho - E INFOCHIPS PRIVATE LIMITED at Cisco)
  2026-02-16 13:55 ` [OE-core] " Ross Burton
  0 siblings, 1 reply; 4+ messages in thread
From: Deepak Rathore -X (deeratho - E INFOCHIPS PRIVATE LIMITED at Cisco) @ 2026-02-12  5:03 UTC (permalink / raw)
  To: openembedded-core

From: Deepak Rathore <deeratho@cisco.com>

CMake's bundled curl forces USE_LIBIDN2 to ON, which makes the build include
<idn2.h>. The native sysroot does not provide that header, so the build fails
and we end up with a native dependency loop. Allow the option to be overridden
and default it to OFF when it is not preset.

Signed-off-by: Deepak Rathore <deeratho@cisco.com>

diff --git a/meta/recipes-devtools/cmake/cmake-native_4.2.2.bb b/meta/recipes-devtools/cmake/cmake-native_4.2.2.bb
index 128fef8a6e..9e1aae379e 100644
--- a/meta/recipes-devtools/cmake/cmake-native_4.2.2.bb
+++ b/meta/recipes-devtools/cmake/cmake-native_4.2.2.bb
@@ -7,6 +7,7 @@ SRC_URI += "file://OEToolchainConfig.cmake \
             file://environment.d-cmake.sh \
             file://0001-Disable-use-of-ext2fs-ext2_fs.h-by-cmake-s-internal.patch \
             file://0002-CMakeLists.txt-disable-USE_NGHTTP2.patch \
+            file://0003-Disable-libidn2-in-bundled-curl.patch \
             "
 
 LICENSE:append = " & BSD-1-Clause & MIT & BSD-2-Clause & curl"
diff --git a/meta/recipes-devtools/cmake/cmake/0003-Disable-libidn2-in-bundled-curl.patch b/meta/recipes-devtools/cmake/cmake/0003-Disable-libidn2-in-bundled-curl.patch
new file mode 100644
index 0000000000..bafa0ae89b
--- /dev/null
+++ b/meta/recipes-devtools/cmake/cmake/0003-Disable-libidn2-in-bundled-curl.patch
@@ -0,0 +1,26 @@
+From 7c6b3d07d8087cae729ba7d82602f50b82086e39 Mon Sep 17 00:00:00 2001
+From: Deepak Rathore <deeratho@cisco.com>
+Date: Mon, 10 Feb 2026 00:00:00 +0000
+Subject: [PATCH] cmcurl: disable libidn2 for native build
+
+CMake's bundled curl forces USE_LIBIDN2 to ON, which makes the build include
+<idn2.h>. The native sysroot does not provide that header, so the build fails
+and we end up with a native dependency loop. Allow the option to be overridden
+and default it to OFF when it is not preset.
+
+Upstream-Status: Inappropriate [native-only configuration]
+
+Signed-off-by: Deepak Rathore <deeratho@cisco.com>
+---
+ Utilities/cmcurl/CMakeLists.txt | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/Utilities/cmcurl/CMakeLists.txt b/Utilities/cmcurl/CMakeLists.txt
+index ab5f1c50c6..c1fb0e3e6d 100644
+--- a/Utilities/cmcurl/CMakeLists.txt
++++ b/Utilities/cmcurl/CMakeLists.txt
+@@ -105,1 +105,3 @@
+-set(USE_LIBIDN2 ON)
++if(NOT DEFINED USE_LIBIDN2)
++  set(USE_LIBIDN2 OFF)
++endif()
-- 
2.35.6



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

end of thread, other threads:[~2026-02-18 17:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-12  5:03 [openembedded-core] [master] [PATCH] cmake-native: disable libidn2 for native build Deepak Rathore -X (deeratho - E INFOCHIPS PRIVATE LIMITED at Cisco)
2026-02-16 13:55 ` [OE-core] " Ross Burton
2026-02-17  5:22   ` Deepak Rathore
     [not found]   ` <920657.1771264467737815347@lists.openembedded.org>
2026-02-18 17:00     ` [OE-core] " Ross Burton

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