Node.js compilation for Windows x86 target architecture fails with code -1073741819 #4718
Replies: 0 comments 15 replies
-
You may want to consider checking your environment variables, Visual Studio installation, and Node.js source code for any potential issues. It would also be helpful to run a memory diagnostic tool to identify any memory-related problems. Additionally, disabling antivirus software may help resolve the error. If the problem persists, you may want to try using a different version of Visual Studio. |
Beta Was this translation helpful? Give feedback.
-
-1073741819 is 0xC0000005 is Access Violation, i.e., most likely a null or bad pointer dereference. Try building v14.21.3 instead (or the latest v16.x or v18.x); you may be hitting a bug that's already been fixed. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I have encountered troubles while building Node.js on 64-bit Microsoft Windows 19044.2728. The x64 executable and x64 MSI installer are built successfully. However, when I try to build Node.js for x86 target architecture, the system after some time of compilation outputs the following error:
C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Microsoft\VC\v160\Microsoft.CppCommon.targets(241,5): error MSB8066: Custom build for 'out\Release\\mkcodecache.exe;out\Release\\node_mksnapshot.exe' exited with code -1073741819. [node-14.19.3\node.vcxproj]
I performed a search and did not manage to find much information about this specific problem. Could you help to resolve this issue?
Beta Was this translation helpful? Give feedback.
All reactions