Developer forums (C::B DEVELOPMENT STRICTLY!) > Development
Directories layout changed
MortenMacFly:
--- Quote from: Biplab on February 14, 2007, 04:50:11 pm ---Today I've compiled the SDK Manual. It's now 4MB+ in size. But it lacks detailed graphs. ;)
--- End quote ---
I know. This is one of the modification I held back until now. IMHO you don't really need the call- and caller-graphs. At least I'm well without and it saves quite a lot of band-width. In the end if someone really needs them (s)he can compile her/himself. If people request them urgently back... they will return. No problem. ;-)
With regards, Morten.
jfpjr:
Where can I get the SDK Manual.
stahta01:
--- Quote from: jfpjr on February 15, 2007, 01:00:51 am ---Where can I get the SDK Manual.
--- End quote ---
http://developer.berlios.de/project/showfiles.php?group_id=5358
http://prdownload.berlios.de/codeblocks/codeblocks_sdk_doc_r3605.chm
Tim S
Biplab:
I've compiled C::B with GCC-4.1.1 in Windows. I deleted the sdk folder and then downloaded again from svn. That solved the problem.
SVN number problem is solved. But there is one more issue. In the start page the the SVN date is wrongly printed. Please look at the following line which I'm getting in the Start Page.
--- Quote ---svn build rev 3607 (2007-02-14T15:36:18.174745Z) gcc 4.1.1 Windows/unicode
--- End quote ---
svn info --xml --non-interactive command returns date as-
--- Quote ---<date>2007-02-14T15:36:18.174745Z</date>
--- End quote ---
It needs to be parsed properly by autorevision.exe before it generates autorevision.h file. I'm using the following patch to solve the problem.
--- Code: ---Index: src/build_tools/autorevision/autorevision.cpp
===================================================================
--- src/build_tools/autorevision/autorevision.cpp (revision 3607)
+++ src/build_tools/autorevision/autorevision.cpp (working copy)
@@ -123,7 +123,11 @@
revision = e->Attribute("revision") ? e->Attribute("revision") : "";
TiXmlElement *d = e->FirstChildElement("date");
if(d && d->GetText())
+ {
date = d->GetText();
+ date = date.substr(0, date.find_first_of('T')) + " "
+ + date.substr(date.find_first_of('T') + 1, date.find_first_of('.') - date.find_first_of('T') - 1);
+ }
return 1;
}
--- End code ---
Regards,
Biplab :D
killerbot:
also onlinux there's such a problem :
--- Quote ---svn build rev 3609 (2007-02-15T15:43:11.509615Z) gcc 4.1.2 Linux/unicode
--- End quote ---
Navigation
[0] Message Index
[*] Previous page
Go to full version