-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmake: use upstream BoostConfig.cmake unconditionally #218
Conversation
Fixes the following deprecation warning: ``` CMake Warning (dev) at src/CMakeLists.txt:38 (find_package): Policy CMP0167 is not set: The FindBoost module is removed. Run "cmake --help-policy CMP0167" for policy details. Use the cmake_policy command to set the policy and suppress this warning. ```
@lzaoral Thanks for the update! Does it still make sense to compile with OSH is now automatically triggered by Packit, so compiler warnings are processed in a more structured way. |
Not with the latest GCC, I've disabled that explicitly. |
OK. I was thinking about dropping |
Older GCCs tend to have different warnings and AFAIK, OSH does not catch clang warnings at all (only clang analyzer), right? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OSH catches both kinds of warnings if Clang is enabled. However, we have disabled the Clang Analyzer on both the OSH instances because it did not support the cleanup
attribute as reported 16 years ago: https://bugs.llvm.org/show_bug.cgi?id=3888
@lzaoral Bad news. I again forgot that we still build This change caused the
Any chance we could make the |
Can you test this patch on EL7, please? diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 5d04096..5406858 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -34,9 +34,14 @@ if(SANITIZERS)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-sanitize-recover=all")
endif()
+# Disable deprecated internal FindBoost module if possible.
+if(POLICY CMP0167)
+ cmake_policy(SET CMP0167 NEW)
+endif()
+
# find Boost
set(Boost_VERBOSE TRUE)
-find_package(Boost CONFIG REQUIRED
+find_package(Boost REQUIRED
COMPONENTS filesystem
program_options
regex
@@ -127,7 +132,7 @@ macro(build_pycsdiff version)
# find boost_python${version}
set(PYTHON_VERSION_SUFFIX "${version}${Python${version}_VERSION_MINOR}")
- find_package(Boost CONFIG REQUIRED COMPONENTS python${PYTHON_VERSION_SUFFIX})
+ find_package(Boost REQUIRED COMPONENTS python${PYTHON_VERSION_SUFFIX})
message(STATUS "Python ${version} binding enabled. "
"The pycsdiff module will be built!")
This assumes that if CMake is new enough, Boost will be modern enough as well. |
Fixes: commit 9878741 Related: csutils#218 Closes: csutils#219
Fixes: commit 9878741 Related: csutils#218 Closes: csutils#221
Fixes: commit 9878741 Related: csutils#218 Closes: csutils#221
Fixes the following deprecation warning: