You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Poppler is an optional dependency for GDAL 3.11.3, see here. We currently do not add a dependency for this, but also do not explicitly disable the inclusion in GDAL. GDAL will therefore try to find Poppler on the system. If one is found, it will try to use that one for building. In my case when trying to build #24002, this failed with the following error:
This gave the clear hint that libpoppler is taken from the system.
To fix this, explicitly disable building GDAL with support for Poppler.
The documentation for GDAL 3.9 -- 3.11 all show this option, so copy this to the older GDAL versions as well. For even older versions, I wasn't able to find online documentation immediately, so not sure if we'd need to go back even further.
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
2023b2024aissues & PRs related to 2024a common toolchains2025aissues & PRs related to 2025a common toolchainsbug fix
3 participants
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.
(created using
eb --new-pr)Copied from #24009:
Poppler is an optional dependency for GDAL 3.11.3, see here. We currently do not add a dependency for this, but also do not explicitly disable the inclusion in GDAL. GDAL will therefore try to find Poppler on the system. If one is found, it will try to use that one for building. In my case when trying to build #24002, this failed with the following error:
This gave the clear hint that
libpoppleris taken from the system.To fix this, explicitly disable building GDAL with support for Poppler.
The documentation for GDAL 3.9 -- 3.11 all show this option, so copy this to the older GDAL versions as well. For even older versions, I wasn't able to find online documentation immediately, so not sure if we'd need to go back even further.