Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
2answers
874 views

DMD vs. GDC vs. LDC

What are the Pros/Cons of the different D Compilers? How is the performance and the standard compliance/D2 support? How well are debuggers supported? How good are the Error messages and is the IDE ...
11
votes
2answers
300 views

Elegant operator overloading in D

For a while I was confused about the direction of D's operator overloading, but now I realize it's a beautiful system... if It would only work with core types (int, float, etc). Consider the follow ...
11
votes
1answer
178 views

Extension Functions in D

I bought "The D Programming Language" a little while ago. Great book, very educational. However I'm having trouble trying to compile a language feature listed in the book: Extension Functions. In the ...
7
votes
4answers
222 views

ncurses api with the D Programming Language

I am trying to teach myself AI using neural networks. Long story short, I wanted to create a simple graphic that would display what is happening in my program using ncurses. The tutorial that I am ...
6
votes
1answer
107 views

D performance: union vs @property

I'm in the process of porting, enhancing, and D-atizing our reign SDK from C# to D. Currently working on the Vector2 math module. Will there be any performance difference between the two structs ...
6
votes
1answer
200 views

D2 gdc link error - undefined reference to `_D3std6stdint12__ModuleInfoZ`

I'm using https://bitbucket.org/goshawk/gdc/downloads/gcc-4.5.2-tdm-1-gdc-r575-20110723.zip with TDM GCC 4.5.2 in -v2 mode to build a DLL. In one of the modules I do import std.stdint. So I thought I ...
5
votes
3answers
297 views

How to impose D2 on gdc

I have installed GDC from the software center of ubuntu. The problem is that when I tried to compile a source that contain the keyword immutable, it gives me an error. Then I deduced that it compiles ...
4
votes
3answers
315 views

D programming on Fedora 16

I've recently installed Fedora 16 (which is great), mostly because I wanted to try LDC2 but also because Gnome Shell runs much smoother on Fedora than Ubuntu 11.10 (at least on my hardware). LDC2 ...
4
votes
1answer
195 views

gnu Makefile for gdc

Can someone please fill me in on how one would go about building a Makefile to compile *.d sources with gdc? Specifically, I have built the Android NDK, gcc, binutils with D support via GDC (had to ...
3
votes
3answers
94 views

Is there a way to create an elegant class-member window-function?

The Window-Procedure in the Win32 API must be static \ global function since it cannot take a class-object (the this) parameter. One can of-course use workarounds like a hWnd->object dictionary and ...
3
votes
1answer
152 views

GDC D2 Compile: undefined reference to `_Unwind_SjLj_XYZ'

I just downloaded GDC (gcc-4.5.2-tdm-1-gdc-r575-20110723.zip) to use with MinGW-w32, and upon trying to compile/link a file, I got these errors: ...
3
votes
1answer
203 views

Compiling With LDC2 and GDC

I had ldc2 and gdc compiled from source and working up until a month ago. Nothing has changed, except I can't remember the variable(s) I would set in the terminal to get ldc2 and gdc to work. I get ...
2
votes
4answers
340 views

Compiling GDC on Windows — where to get GMP and MPFR dependencies?

I'm trying to compile GDC (v2) on Windows 7, using MinGW's MSYS. When I get to this step: $ ../configure --enable-languages=d --disable-shared --disable-bootstrap I get: checking build system ...
1
vote
0answers
39 views

issues configuring G-WAN to use D2

I've downloaded, compiled and installed gdc from it's bitbucket repository. Then I downloaded, extracted and ran G-WAN from it's site. I can now compile D2 code using gdc and it runs fine, and I can ...
1
vote
3answers
163 views

Is addsubview on iOS thread safe?

I'm using Apple's Page Control sample and my UIScrollview isn't smooth when scrolling. I'm thinking about using GCD. I believe that all my code is thread safe, except for my last line which is ...
1
vote
3answers
854 views

What library does ld option -lrt refer to (Bionic libc)?

What does this option to ld mean? -lrt I know to some degree it means that ld is looking for the library with real-time extensions, but after searching extensively, I couldn't find an exact ...
0
votes
1answer
662 views

crtbegin_so.o missing for android toolchain (custom build)

I have compiled gdc together with gcc using the android build-gcc.sh script, and have included a new stub in build/core/definitions.mk to deal with D language files as a part of the build process. I ...