diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-03-10 21:41:15 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-03-23 00:12:59 +0200 |
commit | a165e17a7ebc50f207281fb85c1d66bb315a0996 (patch) | |
tree | 978cd9cbf9efed7162acc2831beb6803124314dc /docs/markdown/snippets | |
parent | 4fda4f50120fb8464fdce279f970c70bd9526d96 (diff) | |
download | meson-nopipe.tar.gz |
Remove -pipe from default list of args. Closes #8508.nopipe
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/nopipe.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/markdown/snippets/nopipe.md b/docs/markdown/snippets/nopipe.md new file mode 100644 index 000000000..431205bcf --- /dev/null +++ b/docs/markdown/snippets/nopipe.md @@ -0,0 +1,10 @@ +## `-pipe` no longer used by default + +Meson used to add the `-pipe` command line argument to all compilers +that supported it, but no longer does. If you need this, then you can +add it manually. However note that you should not do this unless you +have actually measured that it provides performance improvements. In +our tests we could not find a case where adding `-pipe` made +compilation faster and using `-pipe` [can cause sporadic build +failures in certain +cases](https://github.com/mesonbuild/meson/issues/8508). |