diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-08-21 13:19:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-21 11:19:18 +0000 |
commit | d6ded03a6533b7799b3a4b7fd655e5980d326ec5 (patch) | |
tree | 3484c75c9c66544a5284d7a4604cd4a3e2bbd1c7 /python/servo/platform/windows.py | |
parent | 078785217e816b81c8de27b7113a523ecd0fca2b (diff) | |
download | servo-d6ded03a6533b7799b3a4b7fd655e5980d326ec5.tar.gz servo-d6ded03a6533b7799b3a4b7fd655e5980d326ec5.zip |
Get LLVM from chocolatey (#30140)
LLVM is the largest package that we get from servo-build-deps, so
installing it via chocolatey should reduce the amount of data that we
transfer from that source. In addition, it's one less dependency that we
have to manage.
It also seems that installing LLVM to the default location with choco
means that we no longer have to set the LIBCLANG_PATH environment
variable for bindgen.
Co-authored-by: Mukilan Thiyagarajan <mukilan@igalia.com>
Diffstat (limited to 'python/servo/platform/windows.py')
-rw-r--r-- | python/servo/platform/windows.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/python/servo/platform/windows.py b/python/servo/platform/windows.py index 02d013bafc6..f283696ade9 100644 --- a/python/servo/platform/windows.py +++ b/python/servo/platform/windows.py @@ -19,7 +19,6 @@ from .base import Base DEPS_URL = "https://github.com/servo/servo-build-deps/releases/download/msvc-deps/" DEPENDENCIES = { - "llvm": "15.0.5", "moztools": "3.2", } |