gdc Questions
4
Solved
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. ...
Petroglyph asked 30/7, 2011 at 4:54
2
Solved
I made a little program in D that computes Fibonacci's numbers. It was supposed to be the most efficient possible, as I did this to compare D's speed of execution to that of other languages. Then I...
Dorrie asked 24/7, 2014 at 15:46
2
Solved
I would like to try out D but I'm not quite sure what compiler to use for it. I have found some articles, and also SO questions, on the topic, but I did not find any up-to-date ones.
What are the...
Deathbed asked 16/8, 2013 at 22:6
2
Solved
string reverse(string str) pure nothrow
{
string reverse_impl(string temp, string str) pure nothrow
{
if (str.length == 0)
{
return temp;
}
else
{
return reverse_impl(str[0] ~ temp, str[1....
1
Solved
2
Solved
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 ...
3
Solved
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 ...
Kinny asked 20/7, 2011 at 19:0
1
Solved
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 b...
Indole asked 31/12, 2011 at 9:5
4
Solved
2
Solved
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...
Clothing asked 19/10, 2011 at 19:20
3
Solved
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 compi...
1
Solved
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...
Twinflower asked 1/8, 2011 at 21:24
3
Solved
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 defin...
Cormick asked 19/7, 2011 at 20:55
1
© 2022 - 2024 — McMap. All rights reserved.