Mercurial > pub > dyncall > bindings
annotate java/jdc/README.txt @ 28:edbbd467f50a
python binding:
- update to dyncall 1.1
- Python 3 support (supports both, Python 2 and 3)
- using the Capsule API over PyCObject, when available
- support for python unicode strings (for both, Python 2 and 3)
- doc cleanup
ruby binding:
- doc cleanup
author | Tassilo Philipp |
---|---|
date | Tue, 07 Apr 2020 21:16:37 +0200 |
parents | 40a2c4198016 |
children |
rev | line source |
---|---|
18
3bfef07b0cd9
- cleanup of non-working java binding, restart work, somewhat different interface
cslag
parents:
diff
changeset
|
1 BUILD |
3bfef07b0cd9
- cleanup of non-working java binding, restart work, somewhat different interface
cslag
parents:
diff
changeset
|
2 ===== |
3bfef07b0cd9
- cleanup of non-working java binding, restart work, somewhat different interface
cslag
parents:
diff
changeset
|
3 |
20 | 4 1) make sure dyncall is built and libraries/headers are in include paths or |
5 CFLAGS points to them, etc. | |
6 | |
7 2) Build with: | |
8 | |
9 make | |
10 | |
21 | 11 |
12 RUNNING EXAMPLES | |
13 ================ | |
14 | |
15 For example, having build jdc, build and run UnixMathExample from this folder: | |
16 | |
17 javac -d . examples/UnixMathExample.java | |
18 java -Djava.library.path=. UnixMathExample | |
19 |