Chris Wicklein
Chris Wicklein
There is necessarily a problem using the pre-built libcxxffi.so for Linux on CentOS 7. The pre-built DSOs require CXXABI_1.3.9, but CentOS 7 only provides CXXABI_1.3.7. I needed to build libcxxffi.so...
Regarding (2), the tool chain can be used to figure out where headers are installed. From https://gcc.gnu.org/onlinedocs/cpp/Search-Path.html via https://stackoverflow.com/questions/17939930/finding-out-what-the-gcc-include-path-is : ``` $ cpp -v /dev/null -o /dev/null Using built-in specs....
Regarding the first error, it's not clear to me whence the first definition comes, but on my test system, there is no c++ compiler installed other than devtoolset-8 g++. Maybe...
The DSO I built for CentOS 7 doesn't work on a newer (Fedora 19) system; there might be a C++ name-mangling change which makes it fundamentally incompatible, but I'm not...
Possibly fixed a problem I encountered in testing this patch while trying to get it working with pypy... [decompressobj.c.diff.txt](https://github.com/indygreg/python-zstandard/files/1246729/decompressobj.c.diff.txt)
Yes, that's exactly my use case, and `decompress2()` was an expedient solution. I'll probably continue to use my hack as-is while watching for an update to `python-zstandard` which incorporates a...
This issue has some commonality with #29 in that although I'm only trying to process one frame at a time, I still don't know where the frame boundaries occur. I...
Greetings and salutations, I find myself here as a UTM user after hitting a perceived limitation of QEMU, deciding I'll probably need to build QEMU myself to work on this...
@tamird Thanks, I needed that reminder! I decided early on that I *really* didn't want to run QEMU as `root`, but given the apparent lack of alternatives, I ended up...