Attempting to fix build error due to hardcoded boost version#471
Open
lassoan wants to merge 6 commits into
Open
Attempting to fix build error due to hardcoded boost version#471lassoan wants to merge 6 commits into
lassoan wants to merge 6 commits into
Conversation
79dadea to
494bb89
Compare
AppVeyor reported this build error: ``` CMake Error at /home/appveyor/miniconda/conda-bld/vmtk_1719629534026/_build_env/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake:230 (message): Could NOT find Boost: Found unsuitable version "1.74.0", but required is exact version "1.78.0" (found /home/appveyor/miniconda/conda-bld/vmtk_1719629534026/_build_env/include, ) Call Stack (most recent call first): /home/appveyor/miniconda/conda-bld/vmtk_1719629534026/_build_env/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake:598 (_FPHSA_FAILURE_MESSAGE) /home/appveyor/miniconda/conda-bld/vmtk_1719629534026/_build_env/share/cmake-3.29/Modules/FindBoost.cmake:2393 (find_package_handle_standard_args) /home/appveyor/miniconda/conda-bld/vmtk_1719629534026/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac/lib/cmake/vtk-9.1/VTK-vtk-module-find-packages.cmake:350 (find_package) /home/appveyor/miniconda/conda-bld/vmtk_1719629534026/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac/lib/cmake/vtk-9.1/vtk-config.cmake:150 (include) CMakeLists.txt:78 (find_package) -- Configuring incomplete, errors occurred! -- Cache values ``` Boost 1.78 is needed.
494bb89 to
4a06b24
Compare
Contributor
Author
|
Setting the requested boost version fixed the boost issue, but then CMake complained that it could not find PythonLibs: I've tried to set some CMake variables but |
Contributor
|
Sure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
AppVeyor reported this build error:
This commit removes the specific boost version, to see if it can resolve the build error.