-
Notifications
You must be signed in to change notification settings - Fork 214
build: support meson build system #375
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
Open
mochaaP
wants to merge
40
commits into
microsoft:main
Choose a base branch
from
mcha-forks:mochaa
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
0a07d5c
tests: migrate deprecated std::is_trivial_v
mochaaP 9904bdd
tools: add python typings
mochaaP b33dc01
build: support meson build system
mochaaP 72bd4d2
ci: fix shellcheck warnings
mochaaP a478e01
ci: add meson tests
mochaaP 10c0fd3
style: run clang-format
mochaaP 1363a27
ci: workaround clang sanitizer linking bug
mochaaP ae9c89e
build/meson: fix modules builds on mingw winpthreads
mochaaP ec80d04
build/meson: do not link -nodefaultlibs on sanitized builds
mochaaP 3b8e063
build/meson: increase max object section count on msvc
mochaaP d998003
ci: only test release builds, do not run benchmarks
mochaaP de5f1bb
ci: pin runner versions
mochaaP dffce20
ci: exclude unsupported / broken platforms
mochaaP 4c3ff52
build: add a notice about clang-cl broken msvc compatibility
mochaaP 5e8745e
build: meson gtest autodiscovery
mochaaP 56edfc0
build: meson doctest autoglob
mochaaP bdcf49f
ci: manage meson builds from proxy-ci
mochaaP 8de73b7
build: meson benchmarks autogen
mochaaP 4e64a00
build: make meson use common doctest extract logic
mochaaP 337c368
build/meson: auto disable tests if in a subproject
mochaaP cf35391
build/meson: auto disable benchmarks if in a subproject
mochaaP 479b2c1
build/meson: remove docdir installation
mochaaP 6692953
build/meson: remove all autogen
mochaaP e020f0b
build/meson: only add WINPTHREAD_COND_DECL workaround if winpthreads …
mochaaP 443b90f
ci: reword step names
mochaaP 124bce2
ci: move meson ci tests into bvt workflows
mochaaP 32071d5
build/meson: support pgi compilers
mochaaP df5bd1b
ci: remove meson from compatibility tests
mochaaP f32138f
ci: run meson and cmake in one pass
mochaaP 886f11f
Test for std::format using __cpp_lib_format
mochaaP 76e68d2
build/meson: remove module support
mochaaP 09e7ef2
fixup! ci: add meson tests
mochaaP 5dd012d
fixup! Test for std::format using __cpp_lib_format
mochaaP e5fad93
build/meson: add test and benchmarks to all targets, only test build …
mochaaP 952456f
fixup! Test for std::format using __cpp_lib_format
mochaaP a740673
fixup! build/meson: add test and benchmarks to all targets, only test…
mochaaP 717c86d
fixup! build/meson: add test and benchmarks to all targets, only test…
mochaaP 4744c25
build/meson: update fmt to 12.1.0
mochaaP 2c7f068
fixup! tools: add python typings
mochaaP 0ad0d06
fixup! build/meson: remove all autogen
mochaaP 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
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
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
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
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
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
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
Oops, something went wrong.
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.
I noticed that this change was released in 1.10.0. Thanks for the update! However, when building locally with NVHPC, I encountered several errors. I haven't had a chance to investigate in detail yet, but it seems related to the configuration.
In our CMake setup, we explicitly declare
fmtas aSYSTEMdependency to suppress compiler warnings from third-party code, which helps avoid build failures with NVHPC. Does Meson offer a similar mechanism to mark dependencies as system includes?