0
|
1 luadyncall - lua dyncall bindings
|
|
2 == (C) 2010 Daniel Adler ========
|
|
3
|
|
4
|
|
5 Build
|
|
6 -----
|
|
7 ./bootstrap
|
|
8 ./configure
|
|
9 make
|
|
10 make install
|
|
11
|
|
12
|
|
13 Package contents
|
|
14 ----------------
|
|
15
|
|
16 dynload dynamic loading of code and resolving of symbols
|
|
17 dyncall dynamic call to code
|
|
18 dynport dynamic shared library linker
|
|
19 dynstruct C structure support (experimental)
|
|
20 dyntype C type information (experimental)
|
|
21 smartptr smart pointer
|
|
22 int64 64-bit signed and unsigned integer data type
|
|
23 array C arrays
|
|
24 path search and open resources by name along a path
|
|
25 ldynguess system-information
|
|
26
|
|
27
|
|
28
|
|
29
|
|
30 Build with Makefile.custom
|
|
31 ===========================
|
|
32 $EDITOR ./config
|
|
33 specify dyncall and lua prefix paths
|
|
34
|
|
35
|
|
36 Build with luarocks
|
|
37 ===================
|
|
38 cd src
|
|
39 luarocks make
|
|
40
|
|
41
|
|
42 Build using GNU Make
|
|
43 ====================
|
|
44 make
|
|
45
|
|
46
|
|
47 Build source package (maintainers only)
|
|
48 =======================================
|
|
49 make srcpkg
|
|
50
|
|
51
|
|
52
|