diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-11-01 21:48:47 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-11-06 16:12:04 +0100 |
commit | 99cd7ba3d460e6ae5a3f9614de4c817459bbf88a (patch) | |
tree | d367e910163b0cca1f445fd925e76e7e4564fe5f /python/servo | |
parent | 9f9bf8f6bc1897aa7c637a4a0d4021ec6b6c2819 (diff) | |
download | servo-99cd7ba3d460e6ae5a3f9614de4c817459bbf88a.tar.gz servo-99cd7ba3d460e6ae5a3f9614de4c817459bbf88a.zip |
Disable unused-extern-crates warnings for now
There are *many* new ones in rust 2018!
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 3770de6c9cd..08382061379 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -646,8 +646,6 @@ install them, let us know by filing a bug!") if target.startswith('arm') or target.startswith('aarch64'): env['RUSTFLAGS'] = env.get('RUSTFLAGS', "") + " -C target-feature=+neon" - env['RUSTFLAGS'] = env.get('RUSTFLAGS', "") + " -W unused-extern-crates" - git_info = [] if os.path.isdir('.git') and is_build: git_sha = subprocess.check_output([ |