Help with plugin development in linux
#1

Hello guys. Where I can find tutorial about plugin development in linux? I've tried to create simple plugin by looking at this tutorial: https://sampforum.blast.hk/showthread.php?tid=253436 but it won't compile.. When I compiled it, I got bunch of errors: http://pastebin.com/7uyGeYiZ

I used this line to compile it:
Code:
g++ -shared -o plugin.so -fPIC plugin.cpp
Reply
#2

I don't have any clue with compiling on linux but it seems like that you gotta define for what system you are compiling the project. Something like:

PHP Code:
#define LINUX 
Correct me if I'm wrong.
Reply
#3

Now it compiles after I defined LINUX (actually it also required -m32 flag when compiling). But when server tries to load plugin, it says this:

Code:
[16:58:39] 
[16:58:39] Server Plugins
[16:58:39] --------------
[16:58:39]  Loading plugin: plugin.so
[16:58:39]   Failed (plugins/plugin.so: undefined symbol: pAMXFunctions)
[16:58:39]  Loaded 0 plugins.
EDIT: Got it working, if someone have same problem, use these lines to compile and link everything:
Code:
g++ -m32 -c -fPIC -DLINUX -std=c++0x plugin.cpp
g++ -m32 -c -fPIC -DLINUX SDK/*.cpp
gcc -m32 -c -fPIC -DLINUX SDK/amx/*.c
g++ -m32 -O2 -fshort-wchar -shared -o plugin.so *.o
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)