Target vc++ dll missing

pull/5228/head
ioedeveloper 4 months ago committed by bunsenstraat
parent 2280c08d3e
commit 3f4ec08945
  1. 1
      apps/circuit-compiler/src/app/app.tsx

@ -134,6 +134,7 @@ function App() {
dispatch({ type: 'SET_COMPILER_FEEDBACK', payload: report })
} catch (e) {
if (process.platform === 'win32' && err.message.includes('3221225781')) return dispatch({ type: 'SET_COMPILER_FEEDBACK', payload: 'The compiler failed to start because of some missing dependecies. Please install or repair the Microsoft Visual C++ Redistributable package to resolve this issue.' })
dispatch({ type: 'SET_COMPILER_FEEDBACK', payload: err.message })
}
}

Loading…
Cancel
Save