diff options
| -rw-r--r-- | meta-oe/recipes-devtools/flatcc/flatcc/0002-allow-build-with-cmake-4.patch | 52 | ||||
| -rw-r--r-- | meta-oe/recipes-devtools/flatcc/flatcc_git.bb | 2 |
2 files changed, 53 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/flatcc/flatcc/0002-allow-build-with-cmake-4.patch b/meta-oe/recipes-devtools/flatcc/flatcc/0002-allow-build-with-cmake-4.patch new file mode 100644 index 0000000000..b0b0cedbfb --- /dev/null +++ b/meta-oe/recipes-devtools/flatcc/flatcc/0002-allow-build-with-cmake-4.patch | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | From 4a53680194dac08b8f0247a7f3459c95ce0fddbb Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Alper Ak <alperyasinak1@gmail.com> | ||
| 3 | Date: Wed, 9 Jul 2025 13:03:33 +0300 | ||
| 4 | Subject: [PATCH] cmake: Set minimum required version to 3.5 for CMake 4+ | ||
| 5 | compatibility | ||
| 6 | |||
| 7 | Fix: | ||
| 8 | |||
| 9 | | CMake Error at CMakeLists.txt:2 (cmake_minimum_required): | ||
| 10 | | Compatibility with CMake < 3.5 has been removed from CMake. | ||
| 11 | | | ||
| 12 | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | ||
| 13 | | to tell CMake that the project requires at least <min> but has been updated | ||
| 14 | | to work with policies introduced by <max> or earlier. | ||
| 15 | | | ||
| 16 | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | ||
| 17 | | | ||
| 18 | | | ||
| 19 | | -- Configuring incomplete, errors occurred! | ||
| 20 | |||
| 21 | Upstream-Status: Submitted [https://github.com/dvidelabs/flatcc/pull/349] | ||
| 22 | |||
| 23 | Signed-off-by: Alper Ak <alperyasinak1@gmail.com> | ||
| 24 | --- | ||
| 25 | CMakeLists.txt | 2 +- | ||
| 26 | external/hash/CMakeLists.txt | 2 +- | ||
| 27 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
| 28 | |||
| 29 | diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
| 30 | index cb6715a..b69b0bb 100644 | ||
| 31 | --- a/CMakeLists.txt | ||
| 32 | +++ b/CMakeLists.txt | ||
| 33 | @@ -1,5 +1,5 @@ | ||
| 34 | # Ubuntu 14.04 (Trusty) | ||
| 35 | -cmake_minimum_required (VERSION 2.8.12.2) | ||
| 36 | +cmake_minimum_required (VERSION 3.5) | ||
| 37 | # Centos 7 | ||
| 38 | #cmake_minimum_required (VERSION 2.8.11) | ||
| 39 | #cmake_minimum_required (VERSION 2.8) | ||
| 40 | diff --git a/external/hash/CMakeLists.txt b/external/hash/CMakeLists.txt | ||
| 41 | index 7b7d990..12eb3da 100644 | ||
| 42 | --- a/external/hash/CMakeLists.txt | ||
| 43 | +++ b/external/hash/CMakeLists.txt | ||
| 44 | @@ -1,4 +1,4 @@ | ||
| 45 | -cmake_minimum_required (VERSION 3.0.2) | ||
| 46 | +cmake_minimum_required (VERSION 3.5) | ||
| 47 | |||
| 48 | project (HashTest) | ||
| 49 | |||
| 50 | -- | ||
| 51 | 2.43.0 | ||
| 52 | |||
diff --git a/meta-oe/recipes-devtools/flatcc/flatcc_git.bb b/meta-oe/recipes-devtools/flatcc/flatcc_git.bb index 2565e3b9bd..a4bdda162d 100644 --- a/meta-oe/recipes-devtools/flatcc/flatcc_git.bb +++ b/meta-oe/recipes-devtools/flatcc/flatcc_git.bb | |||
| @@ -11,10 +11,10 @@ PV = "0.6.2+git" | |||
| 11 | SRC_URI = " \ | 11 | SRC_URI = " \ |
| 12 | git://github.com/dvidelabs/flatcc.git;protocol=https;branch=master \ | 12 | git://github.com/dvidelabs/flatcc.git;protocol=https;branch=master \ |
| 13 | file://0001-Check-for-C-standard-version-23-for-__fallthrough__.patch \ | 13 | file://0001-Check-for-C-standard-version-23-for-__fallthrough__.patch \ |
| 14 | file://0002-allow-build-with-cmake-4.patch \ | ||
| 14 | " | 15 | " |
| 15 | SRCREV = "1653ec964730ec7d9892a08a1695ada6d20f5196" | 16 | SRCREV = "1653ec964730ec7d9892a08a1695ada6d20f5196" |
| 16 | 17 | ||
| 17 | |||
| 18 | inherit cmake | 18 | inherit cmake |
| 19 | 19 | ||
| 20 | # Enable installation for target | 20 | # Enable installation for target |
