summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/istd.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-12-08 18:44:56 +0200
committerJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-12-08 18:44:56 +0200
commit6c96f8712cb108f0d62874fa7563d9c010ee4952 (patch)
treee45412248fa73655e704a3e2f572e8e7ce41f60b /docs/markdown/snippets/istd.md
parent65e924bba6d02335404c409d327d93bbbc82176b (diff)
downloadmeson-6c96f8712cb108f0d62874fa7563d9c010ee4952.tar.gz
Generate release notes for 1.10.
Diffstat (limited to 'docs/markdown/snippets/istd.md')
-rw-r--r--docs/markdown/snippets/istd.md19
1 files changed, 0 insertions, 19 deletions
diff --git a/docs/markdown/snippets/istd.md b/docs/markdown/snippets/istd.md
deleted file mode 100644
index 6b92d114a..000000000
--- a/docs/markdown/snippets/istd.md
+++ /dev/null
@@ -1,19 +0,0 @@
-## Experimental C++ import std support
-
-**Note**: this feature is experimental and not guaranteed to be
- backwards compatible or even exist at all in future Meson releases.
-
-Meson now supports `import std`, a new, modular way of using the C++
-standard library. This support is enabled with the new `cpp_importstd`
-option. It defaults to `false`, but you can set it to `true` either
-globally or per-target using `override_options` in the usual way.
-
-The implementation has many limitations. The biggest one is that the
-same module file is used on _all_ targets. That means you can not mix
-multiple different C++ standards versions as the compiled module file
-can only be used with the same compiler options as were used to build
-it. This feature only works with the Ninja backend.
-
-As `import std` is a major new feature in compilers, expect to
-encounter toolchain issues when using it. For an example [see
-here](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=122614).