Toby Ealden
Toby Ealden
I came across this too recently, I ended up adding a `Rpc::TryCancel` method and calling it from `Service::StopServing`. Something along the lines of: ``` void Rpc::TryCancel() { if (IsRpcEventPending(Rpc::Event::READ) ||...
I'm seeing this too with a remix SPA + tailwind setup - it's infuriating! https://github.com/remix-run/remix/assets/1628365/1bdf438a-e26c-4c7e-9ff0-2abccf2e58d7
https://github.com/remix-run/remix/pull/8970 fixes this issue for me.
Thanks for this! It does indeed look similar to what I'm trying to do. I'll take a look and get back to you.
I've attached a log of the build output. [errors.log](https://github.com/OlivierLDff/QtStaticCMake/files/5856846/errors.log)
Thanks for the fast response! > Do you have a link of already compiled qt static binary? The hello world example doesn't compile so I don't have a binary yet....
I've attached the output of the cmake step: [cmake.log](https://github.com/OlivierLDff/QtStaticCMake/files/5857816/cmake.log) And one more thing I've eliminated - the examples included with the static Qt install build and run fine using the...
> * but are you compiling release or debug? You can see in cmake logs `(debug library not available, use release as fallback)`. Maybe symbols are not exactly the same....
Here are two versions of the link.txt produced during builds - one from my Mac version which is working, the other from the ubuntu build which is broken. Both are...
And this is the output of a build of the `dev/qt-static-build/qtdeclarative/examples/quick/tableview/gameoflife` example on the same ubuntu Qt build via the default Qt build system. This example uses `import QtQuick.Controls 2`...