Author Topic: Directories layout changed  (Read 18336 times)

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7591
    • My Best Post
Re: Directories layout changed
« Reply #15 on: February 14, 2007, 04:14:37 pm »
As for the ANSI version patch, I 'm not touching it until Tiwag or Seth sees it (they 're working with it)...

I uploaded my updated patch file to Berlios
[ Patch #1884 ] Updated ANSI build patch file ANSI_BUILD_cb-projectfiles.pat
https://developer.berlios.de/patch/?func=detailpatch&patch_id=1884&group_id=5358

thanks tim !

since i sent my notebook with Win98 into retirement at end of 2006
i don't have any 16bit WinOS for testing ansi builds ....

should we delete the ansi patch file from svn ?
or is anyone working with it and still does provide ansi builds ?

thx --tiwag

Removing it from SVN makes sense to me, I think we should create a wiki page with the information on it instead.

Tim S
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline tiwag

  • Developer
  • Lives here!
  • *****
  • Posts: 1196
  • sailing away ...
    • tiwag.cb
Re: Directories layout changed
« Reply #16 on: February 14, 2007, 04:33:26 pm »
Removing it from SVN makes sense to me, I think we should create a wiki page with the information on it instead.

ok, removed the ANSI_BUILD_cb-projectfiles.patch from svn

my latest patchfile vs. svn rev 3605 is attached here

--tiwag


[attachment deleted by admin]

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: Directories layout changed
« Reply #17 on: February 14, 2007, 04:39:02 pm »
sdk.doxy file needs to patched. Patch file is attached with this post.  :)
Applied that (with slightly modifications) in SVN. Thanks.
Have also uploaded another revision of the SDK docs (codeblocks_sdk_doc_r3605.chm). SDK hasn't changed which would be relevant to the docs... but I had done it anyway for testing... ;-)
Wit regards, Morten.
Ps.: @Yiannis: Would you move the chm to the usual position, please?!
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Re: Directories layout changed
« Reply #18 on: February 14, 2007, 04:50:11 pm »
@Morten,

Thanks for the update.  :)

Today I've compiled the SDK Manual. It's now 4MB+ in size. But it lacks detailed graphs. ;)
Be a part of the solution, not a part of the problem.

sethjackson

  • Guest
Re: Directories layout changed
« Reply #19 on: February 14, 2007, 07:49:55 pm »
seth does provide from time to time an ansi build

Yeah I haven't done one in awhile though.....

Maybe I should make one more often....
« Last Edit: February 14, 2007, 07:52:31 pm by sethjackson »

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: Directories layout changed
« Reply #20 on: February 14, 2007, 08:08:35 pm »
Today I've compiled the SDK Manual. It's now 4MB+ in size. But it lacks detailed graphs. ;)
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.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline jfpjr

  • Multiple posting newcomer
  • *
  • Posts: 27
Re: Directories layout changed
« Reply #21 on: February 15, 2007, 01:00:51 am »
Where can I get the SDK Manual.

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7591
    • My Best Post
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Re: Directories layout changed
« Reply #23 on: February 15, 2007, 02:32:55 pm »
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

svn info --xml --non-interactive command returns date as-
Quote
<date>2007-02-14T15:36:18.174745Z</date>

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;
         }

Regards,

Biplab :D
« Last Edit: February 16, 2007, 02:25:15 am by Biplab »
Be a part of the solution, not a part of the problem.

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5494
Re: Directories layout changed
« Reply #24 on: February 16, 2007, 05:17:43 pm »
also onlinux there's such a problem :

Quote
svn build rev 3609 (2007-02-15T15:43:11.509615Z) gcc 4.1.2 Linux/unicode