[PATCH v2 1/2] libsimplelog: add binary log feature and cache hit/miss support

Thuận Nguyễn-Thái <[email protected]>
Newsgroups org.openembedded.lists.openembedded-devel
Message-ID <[email protected]>
Introduce a new binary log feature based on UTF-8 encoding patterns
to optimize logging capabilities.

Add cache hit and miss tracking mechanism to monitor performance
effectiveness.

Signed-off-by: Thuận Nguyễn-Thái <[email protected]>
---
 .../0001-allow-build-with-cmake-4.patch       | 40 -------------------
 .../libsimplelog/libsimplelog_1.0.8.bb        | 18 ---------
 .../libsimplelog/libsimplelog_1.1.0.bb        | 29 ++++++++++++++
 3 files changed, 29 insertions(+), 58 deletions(-)
 delete mode 100644 meta-oe/recipes-support/libsimplelog/libsimplelog/0001-allow-build-with-cmake-4.patch
 delete mode 100644 meta-oe/recipes-support/libsimplelog/libsimplelog_1.0.8.bb
 create mode 100644 meta-oe/recipes-support/libsimplelog/libsimplelog_1.1.0.bb

diff --git a/meta-oe/recipes-support/libsimplelog/libsimplelog/0001-allow-build-with-cmake-4.patch b/meta-oe/recipes-support/libsimplelog/libsimplelog/0001-allow-build-with-cmake-4.patch
deleted file mode 100644
index 17adf92bb0..0000000000
--- a/meta-oe/recipes-support/libsimplelog/libsimplelog/0001-allow-build-with-cmake-4.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 77be1b3e7d6ff4261114424278413a679672bb92 Mon Sep 17 00:00:00 2001
-From: Alper Ak <[email protected]>
-Date: Wed, 9 Jul 2025 12:10:37 +0300
-Subject: [PATCH] cmake: Set minimum required version to 3.5 for CMake 4+
- compatibility
-
-Fix:
-
-| CMake Error in CMakeLists.txt:
-|   No cmake_minimum_required command is present.  A line of code such as
-|
-|     cmake_minimum_required(VERSION 4.0)
-|
-|   should be added at the top of the file.  The version specified may be lower
-|   if you wish to support older CMake versions for this project.  For more
-|   information run "cmake --help-policy CMP0000".
-|
-|
-| -- Configuring incomplete, errors occurred!
-
-Upstream-Status: Submitted [https://github.com/thuanalg/simplelog-topic/pull/1]
-
-Signed-off-by: Alper Ak <[email protected]>
----
- CMakeLists.txt | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index dca80f1..0fc6db0 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -1,3 +1,5 @@
-+cmake_minimum_required(VERSION 3.5)
-+
- # Add main.cpp file of the project root directory as a source file
- project(simplelog_topic_project)
- set(SOURCE_LIB_FILES src/simplelog.c )
--- 
-2.43.0
-
diff --git a/meta-oe/recipes-support/libsimplelog/libsimplelog_1.0.8.bb b/meta-oe/recipes-support/libsimplelog/libsimplelog_1.0.8.bb
deleted file mode 100644
index 41b9d47686..0000000000
--- a/meta-oe/recipes-support/libsimplelog/libsimplelog_1.0.8.bb
+++ /dev/null
@@ -1,18 +0,0 @@
-
-SUMMARY = "simplelog-topc - Simple, STABLE, powerful of logging library in ANSI C/C++. Ready for billion records."
-DESCRIPTION = "Async and Fast C/C++ multi-thread logger with topics. No external dependencies."
-HOMEPAGE = "https://github.com/thuanalg/simplelog-topic"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=22cdd382a6275cb4c2e75c517952ac7c"
-
-SRC_URI = "git://github.com/thuanalg/simplelog-topic.git;branch=main;protocol=https;tag=v${PV} \
-        file://0001-allow-build-with-cmake-4.patch"
-
-SRCREV = "093d80b4006042b75a433a5e63760ae9bebad142"
-
-inherit cmake
-
-# Specify any options you want to pass to cmake using EXTRA_OECMAKE:
-EXTRA_OECMAKE += "-DUNIX_LINUX=1"
-
-
diff --git a/meta-oe/recipes-support/libsimplelog/libsimplelog_1.1.0.bb b/meta-oe/recipes-support/libsimplelog/libsimplelog_1.1.0.bb
new file mode 100644
index 0000000000..7a385d537b
--- /dev/null
+++ b/meta-oe/recipes-support/libsimplelog/libsimplelog_1.1.0.bb
@@ -0,0 +1,29 @@
+
+SUMMARY = "simplelog-topc - Simple, STABLE, powerful of logging library in ANSI C/C++. Ready for billion records."
+DESCRIPTION = "Async and Fast C/C++ multi-thread logger with topics. No external dependencies."
+HOMEPAGE = "https://github.com/thuanalg/simplelog-topic"
+LICENSE = "MIT"
+#The checksum of "LIC_FILES_CHKSUM" changed b/c I did change from "2024" to "2024-2026"
+#libsimplelog  is allways full "MIT license".
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=594fdc3cb85f0b684cf5d7b332a741be"
+
+SRC_URI = "git://github.com/thuanalg/simplelog-topic.git;branch=main;protocol=https;tag=v${PV}"
+
+SRCREV = "151e83902ca9755bcd285791d2f49de6fc30bfe6"
+
+inherit cmake
+
+EXTRA_OECMAKE += "-DUNIX_LINUX=1 -D__LINUX__=1 -D_GNU_SOURCE=1"
+
+# From v.1.0.8 -> v1.1.0
+# Note for -D__LINUX__=1 -D_GNU_SOURCE=1
+# If don't use these flags, v.1.1.0 works like v1.0.8, and well adapt with musl (strictly POSIX)
+# If use 2 flags, they helps the source is more effective. Please test for 2 cases, you will see.
+# Please check "p->r = sched_getcpu();" in "simplelog.c"
+# You can use as below without any problem
+# EXTRA_OECMAKE += "-DUNIX_LINUX=1"
+
+# Drop 0001-allow-build-with-cmake-4.patch as it is now integrated upstream. 
+# Please see branch "main", commit "4827c4325063266f6d2a7e133a9d3a9050ff6a3c" by 
+# Author: Alper Ak <[email protected]>
+
-- 
2.43.0
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.