mpir/yasm/plugins/x86
2009-07-31 11:57:37 +00:00
..
CMakeLists.txt replace with yasm svn 2227 , delete yasm .svn stuff , run yasm's autogen , replace symbolic links in config directory with real files , run yasm's ./configure && make && make check && make distclean (this does add a few files we need ) , rm autom4te.cache , add to svn 2009-07-31 11:57:37 +00:00
init_plugin.c replace with yasm svn 2227 , delete yasm .svn stuff , run yasm's autogen , replace symbolic links in config directory with real files , run yasm's ./configure && make && make check && make distclean (this does add a few files we need ) , rm autom4te.cache , add to svn 2009-07-31 11:57:37 +00:00
README replace with yasm svn 2227 , delete yasm .svn stuff , run yasm's autogen , replace symbolic links in config directory with real files , run yasm's ./configure && make && make check && make distclean (this does add a few files we need ) , rm autom4te.cache , add to svn 2009-07-31 11:57:37 +00:00

This directory demonstrates how to build a yasm builtin module as a plugin.
This can be useful for integrating custom changes without
rebuilding/reinstalling yasm.

It requires access to the yasm source.  It defaults to assuming it is being
built inside of the yasm source tree.

To build:
  mkdir objdir
  cd objdir
  cmake ..
  make

Testing (on Windows):
  yasm -N Release/x86mod.dll -f x86 ...

Testing (on Unix):
  yasm -N ./libx86mod.so -f x86 ...