Browse thread
Dynamic loading of native code : what about librairies and packs ?
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2009-09-01 (10:01) |
From: | Alain Frisch <alain@f...> |
Subject: | Re: [Caml-list] Dynamic loading of native code : what about librairies and packs ? |
Pierre-Loïc Garoche wrote: > error loading shared library: blabla/MyPlugin.cmxs: undefined symbol: camlHashtbl__create_79 You need to ensure that the main program is linked with all the modules that are needed by the dynamically loaded modules (including the modules from the standard library). Linking the main program with -linkall should solve your problem. -- Alain