Mike Gelfand

Results 257 comments of Mike Gelfand

Seems like adding `CMAKE_ARGS += -DBUILD_SHARED_LIBS=OFF` to cross/transmission/Makefile might help, although I'd say it shouldn't ideally be required for you to do that. IIUC what's causing it is the build...

Looks like it's unable to definitively tell what target you're migrating to. Could be e.g. you previously copied the transmission directory from Mac, and it now contains some files that...

Would you be able to provide a backtrace for that crash? I can probably try to deduce it to a few locations myself, but it would help. With gdb, something...

Yeah, you've seemingly forgotten to run the second command that actually prints the backtrace :)

I've added a couple of new log messages for troubleshooting, and a check to prevent that crash. Could you try out latest `main`, with `--verbose`, and post the output here...

I've made another small change in 559b58cf58910cb733c70bc8681467e3022103bc, could you try rebuilding from `main` and trying again?

Sorry, Deluge's source code got me confused, I should've researched it better before changing anything. I have now reverted the previous change but improved the logic around handling files that...

That's the reality of this world, you need to call `waitpid()` for child process to terminate, and `Process::isRunning()` doesn't do that. I've cooked up a small patch to make `Process::isRunning(const...

Note that dedicated thread will also allow for nice `Process::tryWait()` / `ProcessHandle::tryWait()` implementation, which is possible on Windows right now but not on *NIX. Another good thing about it would...

Committed that small patch I was talking about before. Let's see where it leads us to.