On 18/03/2022 5:56 PM, rikki cattermole wrote:
Are you trying to build dub on Android?
Android support for ldc is currently broken to due to removal of a
linker that is currently required for TLS support.
https://github.com/ldc-developers/ldc/issues/3918
My bad I didn't see FreeBSD.
Simi
Are you trying to build dub on Android?
Android support for ldc is currently broken to due to removal of a
linker that is currently required for TLS support.
https://github.com/ldc-developers/ldc/issues/3918
Dlang includes some good ideas.
But dub pulls in so much stuff. Too much for me.
I like things which are clean,lean,little,small.
But when i use dub it links with so many libraries.
Are they really needed ?
And how do you compare to pythons pip.
Feel free to elaborate.
On Tuesday, 8 March 2022 at 22:28:27 UTC, bauss wrote:
What D just needs is a way to specify the entry point, in which
it just defaults to the first main function found, but could be
any function given.
Which is similar to what Java does.
When i was first learning Java in a company i would
I disabled 32bit code maybe this created the following error
while building dub :
[00:02:18]
===
[00:02:18] ===>
[00:02:18] ===> Configuring for dub-1.14.0
[00:02:23]
=
zstack.d:
```
module zstack;
import std.stdio: writeln;
void bar (int [] i)
{
writeln ("i: ", i);
}
unittest {
int [] arr;
bar (arr);
}
```
zrepo.d:
```
module parser;
import std.regex;
import zstack;
```
```
$ dmd -g -i -unittest -checkaction=context -main -run zrepro
2>&1 | ddem
On Thursday, 17 March 2022 at 12:19:36 UTC, Patrick Schluter
wrote:
On Thursday, 17 March 2022 at 12:11:19 UTC, Patrick Schluter
wrote:
On Thursday, 17 March 2022 at 11:36:40 UTC, Patrick Schluter
wrote:
[...]
Something akin to
```d
auto lookup(ushort key)
{
return cp949[key-0x8141];
}
[.
On Thursday, 17 March 2022 at 12:11:19 UTC, Patrick Schluter
wrote:
On Thursday, 17 March 2022 at 11:36:40 UTC, Patrick Schluter
wrote:
[...]
Something akin to
```d
auto lookup(ushort key)
{
return cp949[key-0x8141];
}
[...]
Takes 165 ms to compile with dmd 2.094.2 -O on [godbolt] with t
On Thursday, 17 March 2022 at 11:36:40 UTC, Patrick Schluter
wrote:
On Monday, 14 March 2022 at 09:40:00 UTC, zhad3 wrote:
Hey everyone, I am in need of some help. I have written this
Windows CP949 encoding table
https://github.com/zhad3/zencoding/blob/main/windows949/source/zencoding/windows94
On Monday, 14 March 2022 at 09:40:00 UTC, zhad3 wrote:
Hey everyone, I am in need of some help. I have written this
Windows CP949 encoding table
https://github.com/zhad3/zencoding/blob/main/windows949/source/zencoding/windows949/table.d which is used to convert CP949 to UTF-16.
After some rese
10 matches
Mail list logo