From d472bcdbd2c19beb433f79fab8d6a7abc23c8c05 Mon Sep 17 00:00:00 2001 From: Dmitry Patsura Date: Wed, 12 May 2021 12:04:30 +0300 Subject: [PATCH] feat(cubestore): Use MSVC build for Windows --- rust/js-wrapper/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/js-wrapper/utils.ts b/rust/js-wrapper/utils.ts index 2db03bcef9a9..212282cd835d 100644 --- a/rust/js-wrapper/utils.ts +++ b/rust/js-wrapper/utils.ts @@ -54,7 +54,7 @@ export function getTarget(): string { if (process.arch === 'x64') { switch (process.platform) { case 'win32': - return 'x86_64-pc-windows-gnu'; + return 'x86_64-pc-windows-msvc'; case 'linux': return `x86_64-unknown-linux-${detectLibc()}`; case 'darwin':