FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Post in this thread to notify me if you open a new thread

 
Post new topic   Reply to topic     Forum Index -> cl4d
View previous topic :: View next topic  
Author Message
Trass3r



Joined: 29 Feb 2008
Posts: 66
Location: Germany

PostPosted: Wed Apr 14, 2010 7:28 pm    Post subject: Post in this thread to notify me if you open a new thread Reply with quote

I won't notice if you create a new topic here otherwise.

Last edited by Trass3r on Fri Jan 14, 2011 5:18 pm; edited 1 time in total
Back to top
View user's profile Send private message
JNewt



Joined: 05 Jun 2008
Posts: 69

PostPosted: Fri Jan 14, 2011 4:37 pm    Post subject: Ping Reply with quote

Trass3r: regarding your bitbucket repo: I've found a number of bugs/issues with main.d alone (I understand that this is a quick demonstration) and would like to help improve this project. Would you like me report each item as an issue, fork the code, or are you looking to open the repository for pushes from others?
Back to top
View user's profile Send private message
Trass3r



Joined: 29 Feb 2008
Posts: 66
Location: Germany

PostPosted: Fri Jan 14, 2011 6:07 pm    Post subject: Reply with quote

Ah great, you're welcome to contribute! Very Happy
I think filing issues is a good idea. Also feel free to fork it and send pull requests. Whatever is more appropriate.
Anyone who proves to be a valuable contributor will eventually get write access Wink

(note that things like design decisions etc. must go into bitbucket issues so they can be discussed)
Back to top
View user's profile Send private message
Trass3r



Joined: 29 Feb 2008
Posts: 66
Location: Germany

PostPosted: Wed Jan 19, 2011 1:21 pm    Post subject: Reply with quote

Are you able to compile cl4d with latest dmd?

EDIT: Ok it's http://d.puremagic.com/issues/show_bug.cgi?id=5373
Currently cl4d is only compilable with 2.050.
Back to top
View user's profile Send private message
andrden



Joined: 18 Jun 2011
Posts: 1

PostPosted: Sat Jun 18, 2011 7:43 am    Post subject: main.d on dmd 2.053 64bit Reply with quote

dmd is now 64bit by default on 64bit Linux, so array.length no longer compatible with int, the following change is needed to compile and run

- int[VECTOR_SIZE] va = void; foreach(i,e; va) va[i] = i;
- int[VECTOR_SIZE] vb = void; foreach(i,e; vb) vb[i] = vb.length - i;
+ int[VECTOR_SIZE] va = void; foreach(int i,e; va) va[i] = i;
+ int[VECTOR_SIZE] vb = void; foreach(int i,e; vb) vb[i] = cast(int)vb.length - i;
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic     Forum Index -> cl4d All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group