User forums > Nightly builds

The 19 april 2006 build is out.

<< < (2/2)

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.

--- End quote ---

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.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

--- End quote ---


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/

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

--- End code ---

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

Navigation

[0] Message Index

[*] Previous page

Go to full version