On Android, in srfi/69.sld, I tried to replace (include-shared "hash") with (load "libhash.so"), and it caused some problems:
WARNING: reference to undefined variable: hash-table-cell
WARNING: reference to undefined variable: hash
WARNING: reference to undefined variable: hash-by-identity
WARNING: importing undefined variable: hash-table-delete!
But when I do (include-shared "libhash"), it tries to look for "srfi/libhash.so".
Where do I need to hack away to remove the directory paths? I just have libhash.so living in a flat lib/ directory (and I can't figure out how to get CMake on android to
move it to lib/srfi/).
Hi,
On Android, in srfi/69.sld, I tried to replace (include-shared "hash") with (load "libhash.so"), and it caused some problems:
But when I do (include-shared "libhash"), it tries to look for "srfi/libhash.so".
Where do I need to hack away to remove the directory paths? I just have libhash.so living in a flat lib/ directory (and I can't figure out how to get CMake on android to move it to lib/srfi/).