aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2020-09-17 13:35:24 -0400
committerJosh Matthews <josh@joshmatthews.net>2021-02-25 10:15:05 -0500
commit9535f228f37a98c2899d086b4701ab74403c44d6 (patch)
treee8b107370a399d41906a6687308e7bfedc956767 /python/servo
parent15f3445a341d68d0f77dfa1a01032ba63fec614b (diff)
downloadservo-9535f228f37a98c2899d086b4701ab74403c44d6.tar.gz
servo-9535f228f37a98c2899d086b4701ab74403c44d6.zip
Use build-std instead of xargo.
Diffstat (limited to 'python/servo')
-rw-r--r--python/servo/build_commands.py1
-rw-r--r--python/servo/command_base.py6
-rw-r--r--python/servo/packages.py1
3 files changed, 2 insertions, 6 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index 7095cfbcad4..a3aae798eac 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -273,7 +273,6 @@ class MachCommands(CommandBase):
if uwp:
# Ensure libstd is ready for the new UWP target.
check_call(["rustup", "component", "add", "rust-src"])
- env['RUST_SYSROOT'] = path.expanduser('~\\.xargo')
# Don't try and build a desktop port.
libsimpleservo = True
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index 9f63a579f48..0ba6a823756 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -608,7 +608,6 @@ install them, let us know by filing a bug!")
extra_path += [path.join(self.msvc_package_dir("llvm"), "bin")]
extra_path += [path.join(self.msvc_package_dir("ninja"), "bin")]
extra_path += [self.msvc_package_dir("nuget")]
- extra_path += [path.join(self.msvc_package_dir("xargo"))]
arch = (target or host_triple()).split('-')[0]
vcpkg_arch = {
@@ -932,9 +931,8 @@ install them, let us know by filing a bug!")
args += ["--features", " ".join(features)]
if target and 'uwp' in target:
- return call(["xargo", command] + args + cargo_args, env=env, verbose=verbose)
- else:
- return self.call_rustup_run(["cargo", command] + args + cargo_args, env=env, verbose=verbose)
+ cargo_args += ["-Z", "build-std"]
+ return self.call_rustup_run(["cargo", command] + args + cargo_args, env=env, verbose=verbose)
def android_support_dir(self):
return path.join(self.context.topdir, "support", "android")
diff --git a/python/servo/packages.py b/python/servo/packages.py
index 6a7b375964f..7e0f9bd5d03 100644
--- a/python/servo/packages.py
+++ b/python/servo/packages.py
@@ -11,5 +11,4 @@ WINDOWS_MSVC = {
"openssl": "111.3.0+1.1.1c-vs2017-2019-09-18",
"gstreamer-uwp": "1.16.0.5",
"openxr-loader-uwp": "1.0",
- "xargo": "v0.3.22",
}