mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
Not default nor even distributed in the .tar.gz, the cmake build allows for loadable yasm plugins by building libyasm as a shared library. Example plugins are in the plugins/ directory, and may be loaded into a cmake-built yasm using the -N command line option (non-cmake builds will not have this option). Tested only on Linux so far, but should be relatively painless to port to Windows thanks to the use of cmake rather than libtool to create shared libraries. The only modification to the main source tree is some conditional-compiled additions to yasm.c. svn path=/trunk/yasm/; revision=2098
20 lines
773 B
Text
20 lines
773 B
Text
These directories contain example yasm plugins.
|
|
Yasm is only capable of loading plugins when it was built using cmake.
|
|
To build yasm with cmake on Unix, from the yasm source tree, do:
|
|
mkdir objdir
|
|
cd objdir
|
|
cmake ..
|
|
make
|
|
|
|
The plugins are written to be compiled against an *installed* yasm.
|
|
Plugins may be loaded on the yasm command line using the -N command line
|
|
option, e.g.:
|
|
yasm -N ./libdbgmod.so
|
|
yasm -N /usr/local/lib/libx86mod
|
|
(the .so will be automatically appended)
|
|
If no directory path is specified, yasm will search in standard library
|
|
locations (e.g. LD_LIBRARY_PATH, the rpath of the yasm executable, etc) to
|
|
try to load the plugin. Thus the last example could likely be written:
|
|
yasm -N libx86mod
|
|
|
|
Plugins may override builtin modules like x86.
|