Developer forums (C::B DEVELOPMENT STRICTLY!) > Development

Release 15.12, RC1 has arrived

<< < (18/19) > >>

ollydbg:

--- Quote from: Grabusz on January 04, 2016, 03:25:49 pm ---So... after unsuccessfully trying to compile gdb with msys I found a compiled version, run the C::B, successfully crashed it, attached it to gdb and used "thread apply all bt", here's the gdb output:

--- End quote ---
Thanks for the report. But there is not much information I see about the crash. Can you build C::B yourself? I think if you can, then the crash bt can have many source line information.

BTW: I reread your old posts, and I still not sure what exact steps you have to reproduce the crash.

ollydbg:
@Grabusz
I suggest write a bug report here Tickets
so that it won't lost, thanks.

oBFusCATed:
ollydbg: See this post: http://forums.codeblocks.org/index.php/topic,20730.msg142057.html#msg142057

stahta01:
I was able to get CB GTK2 Wizard and MSys2 GCC Compiler to work with a very minor patch. CB Thread http://forums.codeblocks.org/index.php/topic,20827.msg142175.html#msg142175
The import library ends in .dll.a for the GTK2 file.

A user wanted GTK3 to work and I do NOT have the time to add the GUI front end to change between to two.
But, if the CB Devs can make this minor change before the next release it will be easy to write directions; so, an user can edit the current CB Wizard to use GTK3.

Thank you all for your hard work.

Tim S.


--- Code: ---From b609f23f9b1f85b7375bac6ab985d35533bd13a0 Mon Sep 17 00:00:00 2001
From: Tim S <stahta01@users.sourceforge.net>
Date: Mon, 4 Jan 2016 19:09:16 -0500
Subject: [PATCH] * scriptedwizard: Added option to look for "libGL.dll.a" if
 all else fails.(Thanks stahta01)

---
 src/plugins/scriptedwizard/resources/common_functions.script | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/plugins/scriptedwizard/resources/common_functions.script b/src/plugins/scriptedwizard/resources/common_functions.script
index f9691a1..15d8537 100644
--- a/src/plugins/scriptedwizard/resources/common_functions.script
+++ b/src/plugins/scriptedwizard/resources/common_functions.script
@@ -551,7 +551,8 @@ function SilentVerifyLibFile(dir, file)
             || IO.FileExists(dir + wxFILE_SEP_PATH + _T("lib") + file + _T(".a"))
             || IO.FileExists(dir + wxFILE_SEP_PATH + _T("lib") + file + _T(".lib"))
             || IO.FileExists(dir + wxFILE_SEP_PATH + _T("lib") + file + _T(".la"))
-            || IO.FileExists(dir + wxFILE_SEP_PATH + _T("lib") + file + _T(".so")) );
+            || IO.FileExists(dir + wxFILE_SEP_PATH + _T("lib") + file + _T(".so"))
+            || IO.FileExists(dir + wxFILE_SEP_PATH + _T("lib") + file + _T(".dll") + _T(".a")) );
 }
 
 // verify the existence of a file of library type (add prefix lib, postfix .a and .lib)
--
2.7.0.windows.1

--- End code ---

MortenMacFly:

--- Quote from: stahta01 on January 06, 2016, 04:16:47 am ---But, if the CB Devs can make this minor change before the next release it will be easy to write directions; so, an user can edit the current CB Wizard to use GTK3.

--- End quote ---
Done that in SVN (slightly modified).

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version