We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d75ebf commit e087eedCopy full SHA for e087eed
rts/System/SpringApp.cpp
@@ -121,6 +121,18 @@ SpringApp::~SpringApp()
121
*/
122
bool SpringApp::Initialize()
123
{
124
+#if defined(_WIN32) && defined(__GNUC__)
125
+ // load QTCreator's gdb helper dll; a variant of this should also work on other OSes
126
+ {
127
+ // don't display a dialog box if gdb helpers aren't found
128
+ UINT olderrors = SetErrorMode(SEM_FAILCRITICALERRORS);
129
+ if(LoadLibrary("gdbmacros.dll")) {
130
+ LogObject() << "QT Creator's gdbmacros.dll loaded";
131
+ }
132
+ SetErrorMode(olderrors);
133
134
+#endif
135
+
136
// Initialize class system
137
creg::System::InitializeClasses();
138
0 commit comments