Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/godmode2k/pawn_build_custom_apis
Easy to build PAWN and custom APIs
https://github.com/godmode2k/pawn_build_custom_apis
compuphase pawn
Last synced: 4 days ago
JSON representation
Easy to build PAWN and custom APIs
- Host: GitHub
- URL: https://github.com/godmode2k/pawn_build_custom_apis
- Owner: godmode2k
- License: apache-2.0
- Created: 2014-12-01T07:50:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-04-09T14:55:32.000Z (over 5 years ago)
- Last Synced: 2024-03-17T02:38:30.359Z (8 months ago)
- Topics: compuphase, pawn
- Language: C
- Homepage:
- Size: 3.81 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
PAWN (http://www.compuphase.com/pawn/pawn.htm)
===============PAWN
----------
> build all and custom APIs tested on GNU/LinuxSource based from http://www.compuphase.com/pawn/pawn.htm
PAWN version: 3.2.3664
PAWN licensed: zLib/libpngPAWN Build
----------
pawn/linux/source/amx_new$ rm CMakeCache.txt
pawn/linux/source/amx_new$ cmake .
pawn/linux/source/compiler$ rm CMakeCache.txt
pawn/linux/source/compiler$ cmake .USE AT YOUR OWN RISK
----------
> The sources show you how to build a VMCC, VMRUN and
> make a custom APIs with script(.p).Build
----------
> as following or you should make whatever you want./_test_code/
- build_bin.sh // for vmcc.c
- build_lib_o.sh // for custom APIs object
- build_lib_so.sh // for custom APIs shared-object
- build_prun.sh // for vmrun.c$ sh build_bin.sh vmcc vmcc.c
$ sh build_prun.sh vmrun vmrun.cCompile script
----------$ ./vmcc xxx.p -i../linux/include
Run script
----------$ ./vmrun -L./AMXLIB xxx.amx (finds custom APIs from external path)
$ ./vmrun -r xxx.amx (finds custom APIs from internal)