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
Then need to set LD_LIBRARY_PATH=/path/to/sbcl-src/src/runtime when compiling the executable. When running the executable, LD_LIBRARY_PATH=/path/to/sbcl-librian/example:/path/to/sbcl-src/src/runtime.
The text was updated successfully, but these errors were encountered:
I guess eventually the idea is that the shared library will ship in the right location with everything else in the binary distribution. Until that happens, you need the shared library from source or to link your C program directly with libsbcl.a.
Requires compiling SBCL
cd sbcl-src
sh make.sh
sh make-shared-library.sh
Then need to set
LD_LIBRARY_PATH=/path/to/sbcl-src/src/runtime
when compiling the executable. When running the executable,LD_LIBRARY_PATH=/path/to/sbcl-librian/example:/path/to/sbcl-src/src/runtime
.The text was updated successfully, but these errors were encountered: