Im using ecl lisp and one possibility there is to build a library into a monolithic library which you can link against in your c programs (so you dont have to explicitely (require 'library), which might take awhile).
The problem is that the library is not registered with asdf. So, if i attempt to (require 'library), or to load another library which depends upon it from the c code, it'll rebuild the library from the file system because it doesn't know it has already 'loaded' it. So, is there a 'best' way to manually register it so it doesn't attempt to rebuild???
The problem is that the library is not registered with asdf. So, if i attempt to (require 'library), or to load another library which depends upon it from the c code, it'll rebuild the library from the file system because it doesn't know it has already 'loaded' it. So, is there a 'best' way to manually register it so it doesn't attempt to rebuild???