Manuel Mausz
Manuel Mausz
Mingw-w64 looks superior. Maybe it's time to move on :-)
Nope. ``` root@debian-stable:~# apt-get install wine32 .... E: Package 'wine32' has no installation candidate ```
ok, `dpkg --add-architecture i386` will solve this. But can't you just pin the mingw/wine job to your build machine? The mingw setup is rather special. Edit: I'll see if I...
I managed to get mingw-w64 working. However std::mutex is not available because there's no glibc on windows and std::mutex depends on pthreads. Any ideas?
mingw status right now: - added dlfcn-win32 as external project to libloader. this way cmake checks out + compiles the library as an additional build step. I'm linking the archive...
Are tests usually enabled for the mingw build job? Yesterday all of them were disabled.
I compiled the whole repo with C++11 enabled. Nothing more. But executables like bin/basename.exe built with -posix run fine as long as you copy the required dlls to the bin...
@markus2330 I managed to get elektra to compile with mingw + running with wine without copying any dlls. The trick is to always enable static linking for both executable AND...
crashes in src/plugins/wresolver/wresolver.c because pk->filename is NULL
pk is of type `resolverHandles.user` I tried to take a look at the plugin but I fail to understand the for-loop in `elektraWresolverOpen`. The loop calls `elektraWresolveFileName` --> `elektraResolve{Spec,Dir,User,System}` which...