Varpie
Varpie
With the mass extinction of Twitter third-party clients, Harpy seems to be the only viable option left... But it still does not have DMs, which I consider essential. Since DMs...
I've tried to run `v up` (to version 0.4.4 efa98d9), delete `thirdparty/photon/photonwrapper.so` and build the `simple_coroutines.v` again, but I got the same errors on tcc, gcc and clang. For all...
It's odd that V didn't try to download `photonwrapper.so` again after you deleted it, since you use `-use-coroutines`...
Alright, I got past the missing `pthread_getattr_np` by adding `-cflags -D_GNU_SOURCE` to the compile command. The rest of the tcc errors remain however. And I have the same errors for...
A few interesting things to note: If I remove `-use-coroutines`, I have the following errors: ``` $ v -cflags -D_GNU_SOURCE -cg examples/coroutines/simple_coroutines.v tcc: error: undefined symbol 'photon_sleep_ms' tcc: error: undefined...
@JalonSolov it seems like the clang message only has one error, that could be fixed by adding `-cflags -D_GNU_SOURCE` to your command, as it did for me.
Even though the pipelines fail in the PR, I tried to apply it locally, and it is able to fetch the .so file. So hopefully, the pipeline issues can be...
Yes, I've run `v up` and also tried to recompile v after the .so file was added just in case, but it didn't change anything. `thirdparty/photon/photonwrapper.h` has (omitting the non-relevant...
I tried to clean up my `/tmp`, which didn't fix it, then had a look at the `.tmp.c` that V created. I can see that both methods are called in...
Using `import coroutines` actually increased the number of undefined symbols... I tried to compile the `simple_coroutines.v` example, and here is the output: ``` $ v -cg -use-coroutines simple_coroutines.v In file...