On Mon, 20 Mar 2017, Ruediger Meier wrote:
On Sunday 19 March 2017, Andi Vajda wrote:
I just now checked in support for Python 3 (3.5+),
Thanks a lot!
built and tested
on Mac OS X 10.12 only, with Python 3.6.
FYI I've tested a HelloWorld.jar using your svn trunk on travis build
farm for OSX 10.11 and xcode 7.3, 8, 8.1, 8.2:
https://travis-ci.org/rudimeier/jcc/builds/212820385
Linux support should be next.
It would work already on Linux with this patch
https://github.com/rudimeier/jcc/commit/2ccf7e4b828c678577fc0ace24bdb4680ede207a
I changed linux2 to linux but still need to see what kind of setuptools
patching/monkeypatching hackery is needed to produce a usable libjcc.so.
Thanks !
Andi..
plus fixing -ljcc and -lpython soname.
BTW support for python >=3.3 would be nice and very easy. We just need
one define like this in macros.h:
#if PY_VERSION_HEX < 0x03050000
#define Py_DecodeLocale(_arg_, _size_) _Py_char2wchar(_arg_, _size_)
#endif
... as you see here a huge Ubuntu 14.04 build matrix
https://travis-ci.org/rudimeier/jcc/builds/212830434
Someone with access to Windows, please help test/fix/finish support
for Python 3 on Windows, both with the MSVC and Mingw compilers. I
have no access to Windows anymore.
I know already about one MSVC issue:
https://github.com/rudimeier/jcc/issues/1
probably fixed by
https://github.com/rudimeier/jcc/commit/764ed0dc1f77c68e4a6998688d2e8340704fd237
(But this fix is also not tested yet.)
cu,
Rudi