Build Error with "CL.exe" exited with code -1073741515

Description
I’m trying to build SDK Electron.
And, it occurs “CL.exe” exited with code -1073741515, so I want to get an advice.

Which version?
v4.6.21666.0428
Base SDK versions:
win32 native sdk version:zoom-sdk.4.6.21666.0428
mac native sdk version:All_mac_sdk_4.6.21666.0427

To Reproduce(If applicable)
Steps to reproduce the behavior:

  1. Just run “build_nodeaddon_win_ia32.bat” on cmd.exe.

Screenshots
FYI, the Korean language in the screenshot means “exited with code”.

Smartphone (please complete the following information):

  • Device: PC
  • OS: MS Windows 10

Additional context
I guess it is because of the environment setting, please let me know what I’m missing. T…T

I’ve solved this issue, so I’m just leaving a memo…

1.

I think it was because of my PC has many different versions of MS Visual Studios.

Anyway, I’ve modified the last part of build_nodeaddon_win_ia32.bat to use MS VS 2017.

call node-gyp rebuild --target=%elec_ver% --arch=ia32 --dist-url=https://atom.io/download/electron --release --msvs_version=2017

2.

Also, I’ve had a several Electron versions issues.

So, I’ve modified the same file as below.

:: for /f "tokens=1 delims=v" %%i in ('electron -v') do set elec_ver=%%i
set elec_ver=5.0.2

Thank you.

Hi @jay.casee,

Thanks for the post and glad to hear that you have found the solution. Yes, to run the Electron SDK demo app, there is a specific version requirement. But if you are integrating the Electron SDK into your own app, there are no such requirements.

Thanks for sharing your findings, we will add those to the doc to help other developers.

Thanks!