Congyu

Results 136 comments of Congyu

I think it maybe a good idea to add an api to allow changing comparator. While making a separate Python package named rocksdict-comparators, which contains a collection of comparators.

Sorry, got a little busy at work recently.

PR proposals are welcome.

https://www.prisma.io/blog/prisma-orm-now-lets-you-choose-the-best-join-strategy-preview

Similar problem, but with clang. With 19.1.3, clang can't find stuff like `#include`. Now I'll have to manually add `--sysroot=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk` for things to work. I wonder if this is as...

@carlocab Not working. Running the following main.c ```c int main() { return 0; } ``` build.sh ```bash eval "$(brew shellenv)" export LLD=${HOMEBREW_PREFIX}/opt/lld/bin/ld64.lld export CC=${HOMEBREW_PREFIX}/opt/llvm/bin/clang ${CC} -O3 --target=arm64-apple-macosx10.14 -fuse-ld=${LLD} -o main...

``` ❯ ls /Library/Developer/CommandLineTools/SDKs/ MacOSX.sdk MacOSX12.1.sdk MacOSX12.3.sdk MacOSX14.5.sdk MacOSX14.sdk MacOSX15.1.sdk MacOSX15.sdk ``` I only have the above. MacOS 15.1, Xcode 16.1. There is no `MacOSX10.14.sdk`. Whereas we have ``` ❯...

> @Congyuwang, don't use `--target`. Use `-mmacos-version-min`. See discussion at #197532. I must say that this maybe the correct way to go. But I didn’t add the target flag myself,...

Okay. I did some research. Alpine linux does not use glibc but uses musl libc. Currently all our wheels use glibc. Quote google AI: > > The problem: > Alpine...

https://github.com/rocksdict/RocksDict/pull/155