diff options
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/add_optimization_plain_option.md | 10 | ||||
-rw-r--r-- | docs/markdown/snippets/jni_system_dependency_bsd_support.md | 4 |
2 files changed, 14 insertions, 0 deletions
diff --git a/docs/markdown/snippets/add_optimization_plain_option.md b/docs/markdown/snippets/add_optimization_plain_option.md new file mode 100644 index 0000000..67910df --- /dev/null +++ b/docs/markdown/snippets/add_optimization_plain_option.md @@ -0,0 +1,10 @@ +## Add `optimization` `plain` option + +The `optimization` built-in option now accepts `plain` value, +which will not set any optimization flags. This is now the default +value of the flag for `buildtype=plain`, which is useful for distros, +that set the optimization and hardening flags by other means. + +If you are using the value of `get_option('optimization')` in your +Meson scripts, make sure you are not making assumptions about it, +such as that the value can be passed to a compiler in `-O` flag. diff --git a/docs/markdown/snippets/jni_system_dependency_bsd_support.md b/docs/markdown/snippets/jni_system_dependency_bsd_support.md new file mode 100644 index 0000000..bf1a299 --- /dev/null +++ b/docs/markdown/snippets/jni_system_dependency_bsd_support.md @@ -0,0 +1,4 @@ +## BSD support for the `jni` dependency + +This system dependency now supports all BSD systems that Meson currently +supports, including FreeBSD, NetBSD, OpenBSD, and DragonflyBSD. |