Mercurial > pub > dyncall > bindings
annotate java/jdc/README.txt @ 29:6cc2b7fc7ea2
bigger pydc update:
- cleanups and refactoring
- python 2 fixes in var conversions (especially w/ respect to int vs long)
- fix to pydc.free() which didn't work at all
- fix to return python bool as actual bool
- test lib covering all conversions (manual verification, though :-/)
author | Tassilo Philipp |
---|---|
date | Wed, 08 Apr 2020 22:17:43 +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 |