Jump to content

Hello! 👋

These forums are now archived (read only).

Join us on Discord.

Synergy.exe Crashes After Successful Compilation


Recommended Posts

After a successful compilation using VS 12 (2013) x64, synergy.exe crashes on launch with "Micrsoft Visual c++ Runtime Library Runtime Error!" I couldn't deduce how to do a debug build, so I am unable to give any further details.
Link to post
Share on other sites
To be more specific, I had to edit a few things to even get this to compile. First, I had to set my generators to: [code]win32_generators = { 1 : VisualStudioGenerator('10'), 2 : VisualStudioGenerator('10 Win64'), 3 : VisualStudioGenerator('9 2008'), 4 : VisualStudioGenerator('9 2008 Win64'), 5 : VisualStudioGenerator('8 2005'), 6 : VisualStudioGenerator('8 2005 Win64'), 7 : VisualStudioGenerator('12'), 8 : VisualStudioGenerator('12 Win64') } [/code] I also had to change a couple things to fit VS10+: [code]~line 893: if generator.startswith('Visual Studio 1'): again ~line 1778: if generator.startswith('Visual Studio 1'):[/code] Lastly, I added: [code]~line 1734: elif generator.startswith('Visual Studio 12'): value,type = _winreg.QueryValueEx(key, '12.0')[/code] After all that was good, I had to play with things to get it to compile. I had added everything to the path ok: [code]PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\CMake\bin;C:\Python27;C:\Program Files(x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\Qt\2010.02\qt\bin;C:\Qt\2010.02\mingw\bin;C:\Qt\2010.02\qt\include\QtCore;C:\Program Files (x86)\CMake\bin[/code] But I apparently still needed some variables: [code]set QTDIR = C:\Qt\2010.02\qt\ QT_INSTALL_BINS = C:\Qt\2010.02\qt\ [/code] Yet, despite having no errors or warnings, I can't get synergy.exe to start. It just crashes on launch.
Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...