News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

The 19 april 2006 build is out.

Started by killerbot, April 19, 2006, 08:28:19 PM

Previous topic - Next topic

killerbot

Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml
A link to the unicode windows wxWidget dll for Code::Blocks : http://download.berlios.de/codeblocks/wxmsw26u_gcc_cb.7z
For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://download.berlios.de/codeblocks/mingwm10.7z

For support of ansi builds, a link to the ansi windows wxWidget dll for Code::Blocks : http://download.berlios.de/codeblocks/wxmsw26_gcc_cb.7z

The 19 April 2006 build is out.
  - Windows : http://download.berlios.de/codeblocks/CB_20060419_rev2362_win32.7z
  - Linux :
         http://download.berlios.de/codeblocks/CB_20060419_rev2362_ubuntu.deb
         http://download.berlios.de/codeblocks/CB_20060419_rev2362_fc4+5.rpm

Resolved Fixed:


  • Bug #7152 : "New file" dialog does not have focus in text edit control
  • Projectwizard : no -WAll for DMD, adjust update.bat (no Makefile.am copying)

Regressions/Confirmed/Annoying/Common bugs:


  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)
  • there are several issues with Code Completion (is being redesigned : work in progress)


Deamon

Any chanse for a fixed ansi build ?  :)

Deamon

killerbot

what needs to be fixed ??

a recent ansi build was made 2 days ago.

aarti_pl

And what is the problem to apply my patch: [ Patch #956 ] Turned on DMD and GDC support on Linux ??

Are there any problems with this?

Till today people can not use DMD and GDC compilers on Linux  :?

If there are any problems with this patch, I will try to correct them. Just let me know :-)

Regards
Aarti_pl


killerbot

simple answer : lack of time :-(

we also need to test it, we just don't apply a patch directly.

Since I am a multicompiler fan, ;-) , but no D experience at all, you could guide me through this process :
1) where to download and how  to install those D compilers under linux (please don't tell me to compile them myself ...), I am using Suse10.
2) the I can try out your patch, and therefor ...
3) I need a real "hello world" D project
4) some other things I should know of as a D-dummy ?


Cheers,
Lieven

Deamon

Quote from: killerbot on April 20, 2006, 07:40:06 AM
what needs to be fixed ??

a recent ansi build was made 2 days ago.

Well, still the same as described here!

When opening Options->Editor then i get an access violation from C::B in CODECOMPLETITION.DLL

http://forums.next.codeblocks.org/index.php?topic=2785.0

Tried the new ansi build but bugs still the same.

regards,
Deamon

Viewizard

Hi, first at all I want to thank you for your amazing work. I just switched from 1.0RC2 on the latest night build... Wow!... I checked lot of IDE for linux, imho, CB is the best IDE for linux what I installed! :-)

I am using CB on Ubuntu linux 5.10 OS and got some issues:
1) When I switch on Russian language, and press "Backspace" button, looks like all buttons with letters were turned off... I should switch to En mode, and than switch to Rus mode back for continue taping on Russian language.
2) With latest night build (with 1.0RC2 all is ok), if I press on Save icon, or close the CB, I got warning dialog with message "error: can not change file permission" or something like this. Under root user all is ok. Project located on fat32 partition.

aarti_pl

Quote from: killerbot on April 20, 2006, 10:05:36 AM
simple answer : lack of time :-(

we also need to test it, we just don't apply a patch directly.

Since I am a multicompiler fan, ;-) , but no D experience at all, you could guide me through this process :
1) where to download and how  to install those D compilers under linux (please don't tell me to compile them myself ...), I am using Suse10.
2) the I can try out your patch, and therefor ...
3) I need a real "hello world" D project
4) some other things I should know of as a D-dummy ?


Cheers,
Lieven


Hello!

Sorry for my very long response time. Seems that not only you suffer from lack of time :-)

Here are my answers:
1. Linux compilers:
DMD
- link: http://www.digitalmars.com/d/dcompiler.html#linux
- download file, unzip and copy linux specific executable files to e.g. /usr/local/bin; library libphobos.a to /usr/local/lib. you will be interested only in dmd directory in zip file
- there is instruction when you follow above link.
- downloaded file contain also files for windows - just ignore it ;-) you will find descriptions for files in Readme.txt files in zip archive
- tested by me

GDC - unfortunately it seems that it's more difficult here. If you want to test you should compile gdc AND gcc
- link: http://home.earthlink.net/~dvdfrdmn/d/
- I did not test gdc on linux because I don't use it. But if you look on patch, you will see that only very few changes were made regarding gdc. I did not touch at all gdc compiler file itself, so it should work also same as for windows.

2. "Hello world!" project
That point is really simple :-) D does not differ so much from C/C++. You can get lot information on its homepage: www.digitalmars.com/d/

import std.stdio;

int main(char[][] args)
{
    writefln("Hello world!");
    writef("args.length = %d\n", args.length);
    for (int i = 0; i < args.length; i++)
writef("args[%d] = '%s'\n", i, args[i]);
    return 0;
}


Generally D is as much as possible C++ but without its strange awkwards.

I hope it was helpful. I will try to help more if necessary :-)

BR
Aarti_pl