Hey there,

I am trying to learn about compiling .so files for a game modification.
There is a development kit with a simple helloworld example.

My linux knowledge however is very very redundand and I have a hard time getting the compiler to run properly (especially installing all necessary library packages).

../SDK/amx/amx.h:385: error: āsize_tā has not been declared
Line 385:
Code:
int AMXAPI amx_GetString(char *dest,const cell *source, int use_wchar, size_t size);
../SDK/amx/amx.h:405: error: āsize_tā has not been declared
Line 405:
Code:
int AMXAPI amx_SetString(cell *dest, const char *source, int pack, int use_wchar, size_t size);
If you want to see the whole code of this header file follow:

pastebin.com/HF7PHkvR

Had lots of similar errors in the first place which all disappeared slowly during installation of new lib packs...

Now I am wondering:

As there are tons of people using this development kit just fine:

* Am I missing simply another library package I didn`t install yet for gpp/g++?
* Could it be as I am running on Ubuntu 64bit and not 32bit that this just messes around?
* Is it something else?


Thanks in advance for any help!

Regards!