User forums > Nightly builds
The 06 December 2014 build (10050) is out.
Melchior:
After a quite a bit of effort an tweaks to the project files and such
I got it finish compiling but its still crashing... >:( >:(
some of the projects stored the "WX_SUFFIX = u" at the target level and did not get overwritten when I use the
Project Options Manipulator plugin to overwrite all the u with ud
so I had to manually do it each time the compiler stopped to complain...
in contrib plugin NassiShneiderman the way the project file was written needs help...
it targets >:( long story short I had to do this for both base and include
Global Variable: boost
base : "F:\Dev-src\boost_1_57_0\"
include: "F:\Dev-src\boost_1_57_0\"
Search.Dir.Compiler
$(#wx.include) <<-- when i set up wx I filled in all/most global variable, so this was safe :P
$(#boost.include) <<-- Really?! ::)
$(#boost) <<-- is what it really should be because they declare the full path so only base is needed right?!
--- Code: ---#include <boost/spirit/include/classic.hpp>
#include <boost/spirit/include/classic_core.hpp>
#include <boost/spirit/include/classic_symbols.hpp>
#include <boost/spirit/include/classic_confix.hpp>
--- End code ---
___________________
EDIT1:
I found adplus in the Debbuging tools for windows I had installed a while back.... so I gave it a try
archive with logs attached,
dmp files are way to big..
140MB - FULLDUMP_FirstChance_epr_Process_Shut_Down_codeblocks.exe__04d4_2015-01-14_18-54-24-593_03a4.dmp
140MB - FULLDUMP_SecondChance_av_AccessViolation_codeblocks.exe__04d4_2015-01-14_18-54-19-859_03a4.dmp
8.5MB - MINIDUMP_FirstChance_av_AccessViolation_codeblocks.exe__04d4_2015-01-14_18-54-11-812_03a4.dmp
ollydbg:
@Melchior
--- Quote ---"cb_release_type"
since this references a release build... shouldn't there be a "cb_debug_type"?
in which all debug global variables could be defined?
--- End quote ---
"release_type" does not mean this is a "release build", the value of "cb_release_type" can be either "release version" or "debug version". For the "debug version", you need "-g", and for "release version", you may need "-O2"
--- Quote ---cb_release_type:
base: "F:\Dev-src\CodeBlocks_src -g -D__WXDEBUG__ " <<-- The directory is the least thing I can put here... so it isn't null...
Lib : "F:\Dev-src\CodeBlocks_src\src\devel" <<-- not fully sure what was needed so I added this one,
CB doesn't complain....
--- End quote ---
I think you don't need to set the "lib" field, only "base" field is enough. It is the same to the wx global compiler variable.
--- Quote ---...
instead adding " -g -D__WXDEBUG__ " to the global variable base... they should be added in here as part a a debug target:
...
--- End quote ---
Yes, the "-D__WXDEBUG__" can be put there if you want to build C::B against debug version of wx library.
--- Quote ---for that other mention of using git, git doesn't run on XP anymore... it will not install...
--- End quote ---
Use msysgit, it works fine in my Windows XP.
--- Quote ---some of the projects stored the "WX_SUFFIX = u" at the target level and did not get overwritten when I use the
Project Options Manipulator plugin to overwrite all the u with ud
so I had to manually do it each time the compiler stopped to complain...
--- End quote ---
I never used project Options Manipulator plugin, cbp files are just XML files, so you can just open those files in any editor, and search and replace those text from "WX_SUFFIX = u" to "WX_SUFFIX = ud".
BTW: I suggest you to use GDB to get the useful crash report and call stack. You don't need to build C::B against debug version of wx, I think building C::B against release of wx is enough to catch the crash. I don't use other debugging tools, so I don't understand you posted logs from other tools.
oBFusCATed:
--- Quote from: scarphin on January 13, 2015, 03:46:16 pm ---I realized 'clear' button in 'project build options -> search directories -> compiler|linker|resource compiler' doesn't work if nothing is selected. Can anyone else reproduce this?
--- End quote ---
Yes, I'm able to reproduce it and I have a fix for it in my local repo...
scarphin:
Nice to hear that.
Navigation
[0] Message Index
[*] Previous page
Go to full version