User forums > Nightly builds
The 28 May 2014 build (9781) is out.
nanyu:
url link doesn't work :
click http://prdownload.berlios.de/codeblocks/CB_20140528_rev9781_win32.7z
will open the web "http://www.berlios.de/" homepage only。
--
firefox 29.01 / IE 11
ollydbg:
--- Quote from: nanyu on June 08, 2014, 09:32:38 pm ---url link doesn't work :
click http://prdownload.berlios.de/codeblocks/CB_20140528_rev9781_win32.7z
will open the web "http://www.berlios.de/" homepage only。
--
firefox 29.01 / IE 11
--- End quote ---
It looks like the whole https://developer.berlios.de/projects/codeblocks/ was down. They have said before, see: berlios will close project host in 2014.04
EDIT
You can download the bin files from mirror sites: http://sourceforge.net/projects/codeblocks.berlios/files/
ToApolytoXaos:
--- Quote from: ToApolytoXaos on June 08, 2014, 06:04:34 pm ---Is there a problem with auto-completion?
I am using svn9793 on debian testing (64-bit) and as soon as I complete <stdio it stops drop down listbox and I have to press Ctrl-space to auto-complete it.
--- End quote ---
Another thing I have noticed is that under a C project if you use C99 syntax for structures and press "dot" to get a member, instead of getting the name of a desired member, you only get C++ keywords.
Is it possible for the parser to search only for C data members, reserved keywords, and such?
Thank you.
ollydbg:
--- Quote from: ToApolytoXaos on June 09, 2014, 02:39:30 pm ---
--- Quote from: ToApolytoXaos on June 08, 2014, 06:04:34 pm ---Is there a problem with auto-completion?
I am using svn9793 on debian testing (64-bit) and as soon as I complete <stdio it stops drop down listbox and I have to press Ctrl-space to auto-complete it.
--- End quote ---
Another thing I have noticed is that under a C project if you use C99 syntax for structures and press "dot" to get a member, instead of getting the name of a desired member, you only get C++ keywords.
Is it possible for the parser to search only for C data members, reserved keywords, and such?
Thank you.
--- End quote ---
You mean:
http://www.dribin.org/dave/blog/archives/2010/05/15/c99_syntax/
--- Code: ---NSPoint point = { .x = 0, .y = 0};
--- End code ---
?
1, we should know it is an initialization statement.
2, we are after the dot.
3, we are in a C file, but we have C99 option enabled.
The hardest part is 1. How do we locate that we are in an C stile initialization? Currently, CC only remember the "{}" pair for function bodies and class definition.
ToApolytoXaos:
--- Quote from: ollydbg on June 09, 2014, 03:36:34 pm ---You mean:
http://www.dribin.org/dave/blog/archives/2010/05/15/c99_syntax/
--- Code: ---NSPoint point = { .x = 0, .y = 0};
--- End code ---
?
--- End quote ---
Yes, exactly.
--- Quote from: ollydbg on June 09, 2014, 03:36:34 pm ---1, we should know it is an initialization statement.
2, we are after the dot.
3, we are in a C file, but we have C99 option enabled.
The hardest part is 1. How do we locate that we are in an C stile initialization? Currently, CC only remember the "{}" pair for function bodies and class definition.
--- End quote ---
As far as I know, GCC currently has C99/C11 features added (enabled?) in C by default and currently waiting to incorporate C11 as their default flag.
Should not it work since point #3 is partially available by default?
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version