diff options
author | Aneesh Agrawal <aneeshusa@gmail.com> | 2017-04-14 23:56:59 -0400 |
---|---|---|
committer | Aneesh Agrawal <aneeshusa@gmail.com> | 2017-04-16 22:12:17 -0400 |
commit | 022f0aa34a6b8688e816ff0c3ecbf970fc210cf7 (patch) | |
tree | b7ae7a427414d500a80e38f41792bbab0c34e5e2 /python/servo/testing_commands.py | |
parent | ff74faee109fc4977865512aa5657166667da6b4 (diff) | |
download | servo-022f0aa34a6b8688e816ff0c3ecbf970fc210cf7.tar.gz servo-022f0aa34a6b8688e816ff0c3ecbf970fc210cf7.zip |
Remove more deprecated Windows GNU code/docs
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index c00bcc42057..70c90eab136 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -245,13 +245,10 @@ class MachCommands(CommandBase): env = self.build_env() env["RUST_BACKTRACE"] = "1" - if sys.platform in ("win32", "msys"): - if "msvc" in host_triple(): - # on MSVC, we need some DLLs in the path. They were copied - # in to the servo.exe build dir, so just point PATH to that. - env["PATH"] = "%s%s%s" % (path.dirname(self.get_binary_path(False, False)), os.pathsep, env["PATH"]) - else: - env["RUSTFLAGS"] = "-C link-args=-Wl,--subsystem,windows" + if "msvc" in host_triple(): + # on MSVC, we need some DLLs in the path. They were copied + # in to the servo.exe build dir, so just point PATH to that. + env["PATH"] = "%s%s%s" % (path.dirname(self.get_binary_path(False, False)), os.pathsep, env["PATH"]) features = self.servo_features() if len(packages) > 0: |