From 9d40e1072abffd83345757729fdf99034813f1c1 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 27 Mar 2020 12:14:45 -0700 Subject: [PATCH] Include the Windows DLL import library in binaries This commit fixes an issue where you couldn't actually link to `wasmtime.dll` via a C compiler because it was missing its import library, `wasmtime.dll.lib` --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 79d8686fdc..12dc0d966d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -421,7 +421,7 @@ jobs: if: matrix.os == 'ubuntu-latest' - run: cp target/release/libwasmtime.{dylib,a} dist if: matrix.os == 'macos-latest' - - run: cp target/release/wasmtime.{dll,lib} dist + - run: cp target/release/wasmtime.{dll,lib,dll.lib} dist shell: bash if: matrix.os == 'windows-latest'