Compare commits

...

3 Commits

Author SHA1 Message Date
Josh Matthews
1ce9b4c7c6 More windows fixes. 2019-01-14 21:45:07 -05:00
Josh Matthews
5a11d13a74 Use current appveyor MSVC image. 2019-01-14 19:39:15 -05:00
Josh Matthews
b4170715cb Remove llvm from windows bootstrap. 2019-01-14 19:38:35 -05:00
3 changed files with 3 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
version: 1.0.{build}
image: Previous Visual Studio 2017
image: Visual Studio 2017
environment:
CCACHE_DIR: "%APPVEYOR_BUILD_FOLDER%\\.ccache"

View File

@@ -575,7 +575,7 @@ install them, let us know by filing a bug!")
return path.join(msvc_deps_dir, package, msvc_deps[package])
extra_path += [path.join(package_dir("cmake"), "bin")]
extra_path += [path.join(package_dir("llvm"), "bin")]
#extra_path += [path.join(package_dir("llvm"), "bin")]
extra_path += [path.join(package_dir("ninja"), "bin")]
# Link openssl
env["OPENSSL_INCLUDE_DIR"] = path.join(package_dir("openssl"), "include")
@@ -589,7 +589,7 @@ install them, let us know by filing a bug!")
# Link autoconf 2.13, used for building SpiderMonkey
env["AUTOCONF"] = path.join(package_dir("moztools"), "msys", "local", "bin", "autoconf-2.13")
# Link LLVM
env["LIBCLANG_PATH"] = path.join(package_dir("llvm"), "lib")
#env["LIBCLANG_PATH"] = path.join(package_dir("llvm"), "lib")
if not os.environ.get("NATIVE_WIN32_PYTHON"):
env["NATIVE_WIN32_PYTHON"] = sys.executable

View File

@@ -4,7 +4,6 @@
WINDOWS_MSVC = {
"cmake": "3.7.2",
"llvm": "6.0.0",
"moztools": "3.2",
"ninja": "1.7.1",
"openssl": "1.1.0e-vs2015",