rust: Fix warning_level=everything case

Fixes: #13100
pull/13146/head
Xavier Claessens 10 months ago committed by Dylan Baker
parent 27dc1bcacb
commit 3a94aef38d
  1. 1
      mesonbuild/compilers/rust.py

@ -43,6 +43,7 @@ class RustCompiler(Compiler):
'1': [],
'2': [],
'3': ['-W', 'warnings'],
'everything': ['-W', 'warnings'],
}
# Those are static libraries, but we use dylib= here as workaround to avoid

Loading…
Cancel
Save