aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreter.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-03-10 21:41:15 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2021-03-23 17:26:08 +0200
commit9ab4dadef99cacb6a556154b7f520afba0877dc4 (patch)
treeeebee3b11ea28dc2b69764c0cf4ff09e9658a9cd /mesonbuild/interpreter.py
parentea48edbb0fcd567b26d94e27b9b61612f56728f5 (diff)
downloadmeson-9ab4dadef99cacb6a556154b7f520afba0877dc4.zip
meson-9ab4dadef99cacb6a556154b7f520afba0877dc4.tar.gz
meson-9ab4dadef99cacb6a556154b7f520afba0877dc4.tar.bz2
Remove -pipe from default list of args. Closes #8508.
Diffstat (limited to 'mesonbuild/interpreter.py')
-rw-r--r--mesonbuild/interpreter.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py
index 5cf3dde..812f7bd 100644
--- a/mesonbuild/interpreter.py
+++ b/mesonbuild/interpreter.py
@@ -4716,9 +4716,6 @@ This warning will become a hard error in a future Meson release.
elif arg == '-g':
mlog.warning(f'Consider using the built-in debug option instead of using "{arg}".',
location=self.current_node)
- elif arg == '-pipe':
- mlog.warning("You don't need to add -pipe, Meson will use it automatically when it is available.",
- location=self.current_node)
elif arg.startswith('-fsanitize'):
mlog.warning(f'Consider using the built-in option for sanitizers instead of using "{arg}".',
location=self.current_node)