trentforkert
trentforkert
You've commented on an issue on dcarp's cmake-d, but I'm assuming this was directed at my fork: > Hello, is there any progress on this? My project's been on a...
Fresh build of GDC (upstream branch gdc-4.9) with the --enable-shared flag passed to configure allows for some insights: - No shared phobos/druntime were built, which is what I expected -...
Segfault. My test is fairly limited, though, just trying replicate what JNI would do using libdl in C. You need to initialize the D runtime before calling any of the...
I've tried building gunroar for Android, and hit some snags: - The only Derelict component whose cmake configs worked for me was DerelictUtil. The others couldn't get through configure, saying...
I've actually spent some time trying to implement this today, and I've hit a snag in the way I had planned on doing this, since I need variables that haven't...
I've fixed up the flags and things so that creating shared libraries works if the compiler supports it (AFAIK: only recent DMD or LDC on Linux x86{,_64}). However, after encountering...
Long ago, that was the plan. However, 1. I got burned out pretty bad on this project a while back when I lost a _load_ of work, including tests, a...
My version detection works via D's __VERSION__ "special token", which is an integer in the form XYYY, where X is the major version and YYY the minor. Unless the devs...
> Ah, you're probably using the `math` command to get the versions then? Yeah, that'd strip the zero. Not directly. `Modules/CMakeDCompilerId.d.in` is responsible for the actual compiler version detection, and...
As of bbaa6b1f82d6c55154a95d1995007e408c31103e dependency resolution/tracking is implemented for all Makefile-based generators. Ninja, Visual Studio and XCode will require more work.