Skip to content
George Markomanolis edited this page Apr 30, 2018 · 6 revisions

The compiling of the Mini tool is really simple.

  • cc -shared -fPIC -c mini.c
  • cc -fPIC -shared -o libmini.so mini.o

or

  • gcc -shared -fPIC -c mini.c

  • gcc -fPIC -shared -o libmini.so mini.o

  • Copy the libmini.so file in the folder that you want this library to be located

No you should link this library to your application

Clone this wiki locally