From 4ef849d95921bdc9ce13e0998123d7802a1111ac Mon Sep 17 00:00:00 2001 From: Brian Armstrong Date: Tue, 25 Jul 2017 01:04:01 -0700 Subject: [PATCH] dumpbin correct file --- .appveyor-install-tools.cmd | 7 ------- appveyor.yml | 6 ++++-- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.appveyor-install-tools.cmd b/.appveyor-install-tools.cmd index 9248e28..6a3a3de 100644 --- a/.appveyor-install-tools.cmd +++ b/.appveyor-install-tools.cmd @@ -44,11 +44,4 @@ if NOT EXIST ninja ( @set PATH=C:\projects\tools\ninja;%PATH% ninja --version -::########################################################################### -:: Setup the cached copy of LLVM -::########################################################################### -git clone --depth=1 http://llvm.org/git/llvm.git - - @echo off - diff --git a/appveyor.yml b/appveyor.yml index 64eafa1..6a1ed78 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,12 +15,14 @@ environment: # MSVC_BAT_ARCH: x86 # GENERATOR: "Visual Studio 14 2015 Win64" # APPVEYOR_SAVE_CACHE_ON_ERROR: true + # DLL_PATH: lib\Release\fec.dll - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 COMPILER: "C:/projects/tools/LLVM-install/bin/clang-cl.exe" MSVC_BAT: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat MSVC_BAT_ARCH: x86 GENERATOR: "Ninja" APPVEYOR_SAVE_CACHE_ON_ERROR: true + DLL_PATH: lib\fec.dll install: @@ -33,10 +35,10 @@ before_build: build_script: - mkdir build - cd build - - cmake -G "%GENERATOR%" -DCMAKE_C_COMPILER=%COMPILER% -DCMAKE_CXX_COMPILER=%COMPILER% -DCMAKE_BUILD_TYPE=Release "-DLLVM_PATH=C:\projects\tools\llvm" .. + - cmake -G "%GENERATOR%" -DCMAKE_C_COMPILER=%COMPILER% -DCMAKE_CXX_COMPILER=%COMPILER% -DCMAKE_BUILD_TYPE=Release .. - cmake --build . --config Release --target shim - cmake --build . --config Release --target test_runners - - dumpbin /EXPORTS lib\Release\fec.dll + - dumpbin /EXPORTS %DLL_PATH% test_script: - cd tests