Dmd stands for the Digital Mars D compiler.

learn more… | top users | synonyms

0
votes
0answers
17 views

GtkD noob: Executable broken after linking with GtkD.lib

I've installed all combinations of GtkD with the Gtk-Runtime found here: https://code.google.com/p/gtkd-packages/downloads/list except for trying GtkD 1.7.2 because it had errors on build. My setup ...
2
votes
1answer
88 views

D type inference depends on order of template arguments

T maybe(alias nullCheck, T)(T expr, T def) { if (nullCheck(expr)) { return def; } else { return expr; } } auto tokens = chomp(readln()) ...
4
votes
2answers
133 views

Which D compilers will perform tail-call optimization on this function?

string reverse(string str) pure nothrow { string reverse_impl(string temp, string str) pure nothrow { if (str.length == 0) { return temp; } else ...
1
vote
2answers
108 views

D how to mark everything __gshared?

Is there any way to mark all objects __gshared with DMD? I am working on a game engine where pretty much everything needs to be shared between threads, and spamming __gshared or shared everywhere ...
0
votes
0answers
27 views

Linker issues with dmd and Derelict in Linux: Ld can't find .a files

I am trying to write a test program in D using Derelict2 bindings. Here is my code: import std.stdio; import derelict.sfml.audio; pragma(lib, "/home/ryan/Derelict2/lib/libDerelictSFMLAudio.a"); ...
0
votes
2answers
115 views

Detect Non-Mutating Call Statements to Pure Functions in D

I believe D has the potential to add yet another cool feature to its suite of compilers, namely the power to disallow non-side-effect calls to pure functions. For example auto s = "a"; toStringz(a); ...
1
vote
3answers
111 views

View Assembly from DMD with line numbers

How can I look at the assembly code for a specific line in the source code? I tried compiling my source with DMD and -g and -gc (on Windows) and used objconv to output the assembly of the .obj and ...
1
vote
2answers
106 views

Separating Compilation and Linking - in D

OK, I'm currently playing with D (for the first time), so supposedly I'll be having some ultra-basic question... And here I am... :-) When I compile-link with dmd it compiles fine : dmd myMain.d ...
1
vote
2answers
139 views

Template Conflict for Palindrome Algorithm on String (Array)

After having viewed the excellent Three Unlikely Successful Features of D by Andrei Alexandrescu I tested the palindrome algorithms given there as follows import std.exception; bool ...
6
votes
2answers
161 views

D Development Process

What is the recommended development process for D programs that use packages that are cloned from github and separately built? Typically in relation to how C/C++ projects are built using make, ...
1
vote
1answer
197 views

DMD Generated Executable Segfaults on Ubuntu 12.10 64-bit with Hardened GCC

I'm having problems getting DMD 2.061 to work on my configuration of Ubuntu 12.10. When I first install it using the following script if grep -qE "^deb http://d-apt.googlecode.com/files /" ...
6
votes
1answer
246 views

Choosing Between GDC and DMD

I'm new to programming in D. What are the pros and cons of choosing either DMD (2.061) or GDC (4.6, 4.7 or 4.8, snapshot). And what GDC version should I pick? I've successfully built a recent snapshot ...
5
votes
2answers
319 views

How to compile D application without the D runtime?

Iv been trying to figure this one out forever, and its starting to annoy me. I understand the D runtime library. What it is, what it does. I also understand that you can compile a D app without it. ...
3
votes
3answers
172 views

Statically linking SQLite with DMD (Windows x86)

I've tried to statically link with sqlite3 without success. I'm using the 'etc.c.sqlite3' header, and the sqlite3 amalgamation. To create the .lib file I've tried both VC++ and MinGW-gcc, both of ...
1
vote
1answer
82 views

Converting void* array of arguments to static types

If I have a class such as the following: import std.traits; class Test(T) if(isCallable!T) { alias ParameterTypeTuple!T Parameters; alias ReturnType!T delegate(Parameters) DelegateType; ...
5
votes
1answer
73 views

error instantiating redBlackTree template

I'm having trouble instantiating a RedBlackTree container with chars, but it works with ints: import std.stdio; import std.container; void main() { auto r1 = redBlackTree!(int)(); // works ...
3
votes
1answer
240 views

How to compile/link static library with DMD

Whenever I build a static library using DMD, I'm able to link it to my application and it compiles fine but anytime in the application the library is called I get: Segmentation fault (core dumped) ...
3
votes
1answer
193 views

Should I ensure my code compiles with both DMD and GDC?

I guess partially equivalent question: Should code that compiles with DMD, automatically compile in all circumstances with GDC? I ask because I'm having issues getting a modern version of GDC ...
2
votes
1answer
279 views

Can't install DMD 2.060 on OS X 10.6.8

I am planning to try D for the first time in my life. I have a MacBook Pro running OS X 10.6.8 (Snow Leopard). I went on the D downloads page and clicked on the link for the dmd 2.060 installer for ...
0
votes
1answer
59 views

can you link D object files with C object files?

Let's say I have two source files, one written in the D programming language and the other one written in the C programming language. I both just compile them, the D source with the DMD (Digital Mars ...
4
votes
2answers
194 views

d programming, parse or convert string to double

as easy as it is in other languages, i can't seem to find an option in the d programming language where i can convert a string (ex: "234.32") into a double/float/real. using atof from the ...
1
vote
1answer
130 views

D compiler DMD doesn't link object files

i have a source file for d named "dprogram.d" and use the command $ dmd dprogram.d in the terminal on mac osx to create an executable. according to the official documentation the compiler will ...
2
votes
1answer
97 views

contracts.d cannot be read

I recently unzipped the subdirs windows and src from dmd.2.060.zip. Then I tried to import std.contracts; but the compiler did not like it: Error: module contracts is in file 'std\contracts.d' which ...
2
votes
1answer
69 views

New compilation error for a basic Windows Application with D 2.060

I use d-ide to develop with D. With D 2.059 compiler version, the project Windows template compile et run like a charm. With D 2.060 compiler version, the project Windows template does not compile ...
2
votes
3answers
66 views

How to fix this union size/alignment requirement under DMD 2.060

A D2 source code containing the following snippet can be compiled under DMD 2.059 union Prefix { char[9] data; align(1) struct { uint fileno; uint lineno; char delim; }; } static ...
1
vote
1answer
72 views

Request for explanation of an idiomatic D2 construct

I often come accros the following construct that I don't quite grasp in a D2 source code: alias uint SymbolRef; struct SymbolTable { alias entries this; SymbolRef startSymbol; Symbol[] ...
1
vote
2answers
118 views

DMD2 (D language) how to link with a c library (libdl.so.2)

Im using Eclipse with the DDT plugin and DMD 2.06 as the compiler. When I try to to use functions like dlopen, dlsym usw I get "unresolved reference" errors, in C and GCC I fixed them by linking with ...
2
votes
2answers
118 views

DMD: link to libc.a? Or core.simd info?

I'm guessing No, but I want to here from the community because I'm not real experienced with this stuff. Is it possible to link with /etc/lib/libc.a (I'm on Linux x64) with DMD? My reason is, I'm ...
1
vote
0answers
94 views

Eclipse DDT not set up properly

Is SO the right forum for this or should I post in Programmers? I'm trying to do a basic hello world with DDT (D Dev Tools), and I get a dialog box that pops up each time I try to add an 'import ...
3
votes
1answer
262 views

“Segmentation fault: 11” when using Derelict and OpenGL

I'm trying to run this on OSX 10.7: /** * simple.d */ import std.stdio; import derelict.sdl.sdl; import derelict.sdl.macinit.SDLMain; import derelict.opengl.gl; pragma(lib, ...
5
votes
1answer
147 views

Sending a templated function as an argument to a templated function in D

I'm trying to send D's sort function as a template argument to the pipe function. When I use sort without template arguments it works: import std.stdio,std.algorithm,std.functional; void main() { ...
1
vote
2answers
168 views

d language thread

How to properly pass a handle using core.thread in D? I have tried to do it like this, but the handle will change and I don't know why: void WorkerThread(handle hand) { … } … auto worker = new ...
3
votes
1answer
1k views

Rendering a simple rectangle with OpenGL 3 in D language

I'm going insane because I can't make a simple set of triangles appear in my screen. I'm using OpenGL3 (without the deprecated fixed pipeline) using the derelict bindings for the D programming ...
2
votes
1answer
107 views

Overriding 'package' member functions in D

I have a member function in a class with the package protection attribute and I want to override it in a subclass, in the same package, different module. The dmd compiler shouts that I cannot override ...
4
votes
4answers
192 views

struct to ubyte[] or ubyte[] to struct for d language

How the implementation of the struct in the D language to ubyte [] or ubyte [] to the struct, please brothers help answer this question, thank you! If a struct contains the string or char [] what to ...
5
votes
3answers
505 views

Remove white space characters from a char[] array in D

What is the recomended way to remove white space from a char[] in D. for example using dmd 2.057 I have, import std.stdio; import std.string; import std.algorithm; char[] line; int main(){ line ...
7
votes
2answers
372 views

Parsing a file with D

I am new in D and would like to parse a biological file of the form >name1 acgcgcagagatatagctagatcg aagctctgctcgcgct >name2 acgggggcttgctagctcgatagatcga agctctctttctccttcttcttctagagaga ...
3
votes
1answer
139 views

How to pass ref/out function pointer to a function?

I want to instantiate a function pointer: static void GetProc (out function f) { auto full = demangle(f.mangleof); auto name = full[full.lastIndexOf('.')+1..$]; f = cast(typeof(f)) ...
4
votes
2answers
210 views

How to painlessly initialize function pointers?

I want to load Win32 API functions using Runtime.loadLibrary and GetProcAddress(...). Using mixin: template GetProcA(alias func, alias name_in_DLL) { const char[] GetProcA = func ~ ` = ...
1
vote
2answers
164 views

D implicitly cast Vector(T) types

Compare code fragments A: struct Vector2(T) { // ... auto opCast(U)() { return U(x, y); } void opOpAssign(string op)(Vector2 vector) { mixin ("x" ~ op ~ "= ...
1
vote
1answer
98 views

mixin gives error

The example at: http://www.d-programming-language.org/mixin.html, appears below: template GenStruct(char[] Name, char[] M1) { const char[] GenStruct = "struct " ~ Name ~ "{ int " ~ M1 ~ "; }"; } ...
8
votes
5answers
733 views

How to use gtkD in Win7 and dmd (D2)?

I downloaded gtkD-1.5.1 and extracted to some gtkD directory. What do I do next ? I don't understand if I have to compile and link it to some lib or just link to it in my code ? Edit: (@dsimcha) ...
7
votes
1answer
187 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 ...
5
votes
1answer
297 views

Mono-D DMD compiler issues

With features like Code Completion and simple refactoring, writing D in Mono-D is almost as productive as writing C# in Visual Studios. Everything works great on Linux, just install Mono Develop, add ...
2
votes
1answer
133 views

D opBinary()() overloading bug?

When I try and overload opBinary on a simple Vector struct, I get a strange and meaningless error: struct Vector(T) { T x, y; Vector opBinary(string op)(Vector!float vector) { ...
4
votes
3answers
302 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 ...
4
votes
1answer
319 views

dmd linker (OPTLINK) gives Error 42: Symbol Undefined when using extern

Linking the following two files gives me a link-error: a.d: import std.stdio; extern string test (); void main() { writeln(test()); readln(); } b.d: string test () { return "hello"; ...
1
vote
1answer
98 views

dfl_debug.lib not found

I'm trying to compile my first application using Forms in D, using the DFL / Tango libraries, but the compiler first attempt said: DFL lib files not found. Then I tried to compile the libs, and got ...
12
votes
2answers
491 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
2answers
275 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 ...

1 2