aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/command_base.py
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2019-05-31 12:47:13 -0400
committerJosh Matthews <josh@joshmatthews.net>2019-05-31 15:40:44 -0400
commit3162c9a1d7d032d86c3fafbd9d5c9fe26fda3e29 (patch)
tree8acb8e95d88325b14e5748f82685cfca5f94a1eb /python/servo/command_base.py
parent5e461853a1df28331d4a2f8b385dba0457d8da34 (diff)
downloadservo-3162c9a1d7d032d86c3fafbd9d5c9fe26fda3e29.tar.gz
servo-3162c9a1d7d032d86c3fafbd9d5c9fe26fda3e29.zip
Switch windows openssl binaries to ones generated by vcpkg.
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r--python/servo/command_base.py16
1 files changed, 12 insertions, 4 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index a7e6ead3bf0..0902a956912 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -584,7 +584,6 @@ install them, let us know by filing a bug!")
extra_path = []
extra_lib = []
if "msvc" in (target or host_triple()):
- msvc_x64 = "64" if "x86_64" in (target or host_triple()) else ""
msvc_deps_dir = path.join(self.context.sharedir, "msvc-dependencies")
def package_dir(package):
@@ -593,10 +592,19 @@ install them, let us know by filing a bug!")
extra_path += [path.join(package_dir("cmake"), "bin")]
extra_path += [path.join(package_dir("llvm"), "bin")]
extra_path += [path.join(package_dir("ninja"), "bin")]
+
+ arch = (target or host_triple()).split('-')[0]
+ vcpkg_arch = {
+ "x86_64": "x64-windows",
+ "i686": "x86-windows",
+ "aarch64": "arm64-windows",
+ }
+ openssl_base_dir = path.join(package_dir("openssl"), vcpkg_arch[arch])
+
# Link openssl
- env["OPENSSL_INCLUDE_DIR"] = path.join(package_dir("openssl"), "include")
- env["OPENSSL_LIB_DIR"] = path.join(package_dir("openssl"), "lib" + msvc_x64)
- env["OPENSSL_LIBS"] = "libsslMD:libcryptoMD"
+ env["OPENSSL_INCLUDE_DIR"] = path.join(openssl_base_dir, "include")
+ env["OPENSSL_LIB_DIR"] = path.join(openssl_base_dir, "lib")
+ env["OPENSSL_LIBS"] = "libeay32:ssleay32"
# Link moztools, used for building SpiderMonkey
env["MOZTOOLS_PATH"] = os.pathsep.join([
path.join(package_dir("moztools"), "bin"),