diff options
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 1f3d784ebc3..bfc7192df97 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -297,9 +297,8 @@ class CommandBase(object): def set_use_geckolib_toolchain(self, use_geckolib_toolchain=True): self._use_geckolib_toolchain = use_geckolib_toolchain if use_geckolib_toolchain: - # Cargo maintainer's position is that CARGO_INCREMENTAL is a nightly-only feature - # and should not be used on the stable channel. - # https://github.com/rust-lang/cargo/issues/3835 + # We use Cargo Nightly 1.24 with Rust 1.22, + # it passes `-C incremental` to rustc, which is new in Rust 1.24. self.config["build"]["incremental"] = False def toolchain(self): |