Re: I'll be presenting at NWCPP on Jan 21 at Microsoft

2015-01-23 Thread Leandro Lucarella via Digitalmars-d-announce
, el 23 de January a las 16:19 me escribiste: > On Thursday, 22 January 2015 at 17:21:42 UTC, Meta wrote: > >I'm also interested in how the presentation went. > > Rust ppl too: > > http://discuss.rust-lang.org/t/interfacing-d-to-legacy-c-code-a-summary-of-a-competing-languages-capabilities/1406

Re: Calypso: Direct and full interfacing to C++

2015-01-23 Thread Elie Morisse via Digitalmars-d-announce
Nevermind it's just that CodeGen is ambiguous with clang::CodeGen although my compiler doesn't complain. Fixed.

Re: Calypso: Direct and full interfacing to C++

2015-01-23 Thread Elie Morisse via Digitalmars-d-announce
On Friday, 23 January 2015 at 23:06:16 UTC, Kelly wrote: People might still need the small quick fixes for gen/cpp/assistbuilder.cpp, but just adding "clang::" in a couple spots shouldn't be too arduous for anybody if they really want to compile and play with Calypso. Weird, assistbuilder.cpp

Re: Calypso: Direct and full interfacing to C++

2015-01-23 Thread Kelly via Digitalmars-d-announce
Hello Elie, The small patch for defining size_t works here. Thanks. I just wanted to let people know that showcase.d should build fine (one deprecation warning, but not a big deal). People might still need the small quick fixes for gen/cpp/assistbuilder.cpp, but just adding "clang::" in a co

Re: I'll be presenting at NWCPP on Jan 21 at Microsoft

2015-01-23 Thread MattCoder via Digitalmars-d-announce
On Friday, 23 January 2015 at 05:54:41 UTC, Walter Bright wrote: On 1/22/2015 12:52 PM, Gary Willoughby wrote: Me too, is there any video available? https://www.youtube.com/watch?v=IkwaV6k6BmM I can't bear to watch it, you'll have to do it for me! My right ear can't hear too! :) Matheus.

Re: Calypso: Direct and full interfacing to C++

2015-01-23 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-01-23 18:56, Elie Morisse wrote: It's planned to add Objective-C to Calypso, although I never used it and know little about it. Would you be interested in implementing support for its different flavors in Calypso, Jacob? You'd be welcome to the team :-) For the time being I think I nee

DLang Silicon Valley First Meetup

2015-01-23 Thread Andrei Alexandrescu via Digitalmars-d-announce
Hi folks, Yesterday's first DLang/Silicon Valley Meetup was really nice. We've had three talks (even I talked in spite of having a really hoarse voice following a cold) and we've made a number of important plans and decisions going forward. Vic Cekvenich, the initiator of the meetup, was ou

Re: This Week in D, issue 2

2015-01-23 Thread Dmitry Olshansky via Digitalmars-d-announce
On 19-Jan-2015 20:05, Adam D. Ruppe wrote: http://arsdnet.net/this-week-in-d/jan-18.html http://www.reddit.com/r/programming/comments/2sy7lg/this_week_in_d_january_18_2015/ For those of you who saw the draft earlier, hit refresh to ensure you aren't seeing a cached version. RSS feed: http://a

Re: Calypso: Direct and full interfacing to C++

2015-01-23 Thread Kelly via Digitalmars-d-announce
Hello Elie, Just a little build script until cmake can be used properly: #!/bin/bash set -x clang++ -std=c++11 -c showcase.cpp -o showcase.cpp.o ar rcs libshowcase.a showcase.cpp.o /bin/rm calypso_cache* ldc2 -cpp-args -std=c++11 -Llibshowcase.a -L-lstdc++ showcase.d I remove the the calypso_

Re: Calypso: Direct and full interfacing to C++

2015-01-23 Thread Elie Morisse via Digitalmars-d-announce
On Friday, 23 January 2015 at 10:02:55 UTC, Jacob Carlborg wrote: Could this work for Objective-C as well. I'm working on adding support for Objective-C to DMD [1]. [1] https://github.com/D-Programming-Language/dmd/pull/4321 It's planned to add Objective-C to Calypso, although I never used i

Re: Calypso: Direct and full interfacing to C++

2015-01-23 Thread Elie Morisse via Digitalmars-d-announce
On Friday, 23 January 2015 at 12:29:56 UTC, Kelly wrote: Hello Elie, This project looks great, thanks for the hard work. I downloaded Calypso and ldc2 about 6 hours ago to try your project out. I can get Calypso to compile with a couple small changes to assistbuilder.cpp (just adding a name

Re: I'll be presenting at NWCPP on Jan 21 at Microsoft

2015-01-23 Thread via Digitalmars-d-announce
On Thursday, 22 January 2015 at 17:21:42 UTC, Meta wrote: I'm also interested in how the presentation went. Rust ppl too: http://discuss.rust-lang.org/t/interfacing-d-to-legacy-c-code-a-summary-of-a-competing-languages-capabilities/1406

Re: DlangUI project update

2015-01-23 Thread FrankLike via Digitalmars-d-announce
On Thursday, 22 January 2015 at 13:37:16 UTC, Vadim Lopatin wrote: If use dco to build the dlangIDE,config local.ini local.ini--- DC=dmd DCStandardEnvBin=dmd2\windows\bin SpecialLib=dlanguilib importPath= -I..\..\dlangui\src ;lflags=console lflags=win32 ;

Re: Calypso: Direct and full interfacing to C++

2015-01-23 Thread Kelly via Digitalmars-d-announce
Hello Elie, This project looks great, thanks for the hard work. I downloaded Calypso and ldc2 about 6 hours ago to try your project out. I can get Calypso to compile with a couple small changes to assistbuilder.cpp (just adding a namespace qualifier for two class instantiations of CodeGen).

Re: Interfacing D to existing C++ code

2015-01-23 Thread FrankLike via Digitalmars-d-announce
On Friday, 23 January 2015 at 11:04:12 UTC, Walter Bright wrote: Mandatory reddit link: http://www.reddit.com/r/programming/comments/2tdy5z/interfacing_d_to_legacy_c_code_by_walter_bright/ There's been a lot of interest in this topic. Great!

Interfacing D to existing C++ code

2015-01-23 Thread Walter Bright via Digitalmars-d-announce
Mandatory reddit link: http://www.reddit.com/r/programming/comments/2tdy5z/interfacing_d_to_legacy_c_code_by_walter_bright/ There's been a lot of interest in this topic.

Re: Calypso: Direct and full interfacing to C++

2015-01-23 Thread Jacob Carlborg via Digitalmars-d-announce
On 2014-12-23 00:14, Elie Morisse wrote: Hi everyone, I have the pleasure to announce to you all the existence of a modified LDC able to interface directly to C++ libraries, wiping out the need to write bindings: https://github.com/Syniurge/Calypso Could this work for Objective-C as well. I

Re: Silicon Valley D Users' first meeting

2015-01-23 Thread Joakim via Digitalmars-d-announce
On Thursday, 22 January 2015 at 06:47:13 UTC, Ali Çehreli wrote: Thursday, January 22, 2015, 6pm Many people you know from the forums will be there. Andrei is giving a presentation as well: http://www.meetup.com/D-Lang-Sillicon-Valley/events/219413448/ Will there be a video or writeup for

Re: I'll be presenting at NWCPP on Jan 21 at Microsoft

2015-01-23 Thread deadalnix via Digitalmars-d-announce
On Friday, 23 January 2015 at 05:54:41 UTC, Walter Bright wrote: On 1/22/2015 12:52 PM, Gary Willoughby wrote: Me too, is there any video available? https://www.youtube.com/watch?v=IkwaV6k6BmM I can't bear to watch it, you'll have to do it for me! Mandatory reddit link: http://www.reddit.c