2011-09-13 02:06:08 -04:00
|
|
|
USING: alien.c-types alien.libraries alien.syntax io.encodings.utf8
|
|
|
|
io.pathnames system ;
|
2011-09-12 15:27:34 -04:00
|
|
|
IN: alien.libraries.unix
|
|
|
|
|
|
|
|
FUNCTION-ALIAS: (dlerror)
|
2011-09-13 02:06:08 -04:00
|
|
|
c-string dlerror ( ) ;
|
|
|
|
|
|
|
|
M: unix dlerror (dlerror) ;
|
|
|
|
|
|
|
|
M: unix >deployed-library-path
|
|
|
|
file-name "$ORIGIN" prepend-path ;
|
|
|
|
|
|
|
|
M: macosx >deployed-library-path
|
|
|
|
file-name "@executable_path/../Frameworks" prepend-path ;
|
|
|
|
|