This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
minor docs updates #5879
Merged
Merged
minor docs updates #5879
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule .mason
updated
6 files
+4 −1 | mason.cmake | |
+6 −8 | mason.sh | |
+0 −25 | scripts/boost_libregex_icu/1.61.0/.travis.yml | |
+0 −58 | scripts/boost_libregex_icu/1.61.0/script.sh | |
+0 −26 | scripts/osmium-tool/1.3.1/.travis.yml | |
+0 −63 | scripts/osmium-tool/1.3.1/script.sh |
This file contains 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
This file contains 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
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.
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.
It appears that we're no longer usingOops, looks like we're using it indirectly viapkg-config
either?find_package
in CMake nowI was previously using this to ensure we were compiling and linking against a mason-installed version of Mesa, ran into trouble rebasing 04fc3cb onto
master
because now it can't findEGL/egl.h
(which it previously found throughpkg-config --cflags
)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.
We are not using
find_package
in CMake. However, we are using it indirectly because we are invokingmason
(which could callpkg-config
based on thescript.sh
) when there is nomason.ini
file yet in the package. As we move on and more of the packages we use contain amason.ini
in the precompiled tarball download, we can remove the on-demandmason.ini
creation, which removes thepkg-config
requirement for Mapbox GL Native.For what it's worth, we only require Python for creating the shader files and version headers, but we can easily move this to node.js, which we require anyway because of our use of
npm
.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.
created ticket for Python removal: #6010