15.06.2015, 14:05
(
Last edited by Daslee; 15/06/2015 at 07:29 PM.
)
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:
EDIT: Got it working, if someone have same problem, use these lines to compile and link everything:
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.
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