You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implementation files (in C) for libpkl as described in SPICE
As a demonstration of how to build a shared library together with our
`native-image` shared library, use the following locally:
```
❯ gradle :libpkl:assembleNative
❯ clang -v -shared \
-o libpkl.dylib \
libpkl/src/main/c/libpkl.c \
-Ilibpkl/src/main/c \
-Ilibpkl/build/libs/macos-aarch64 \
-Llibpkl/build/libs/macos-aarch64 \
-lpkl-macos-aarch64
```
0 commit comments