Thomas Grill

Results 41 comments of Thomas Grill

I would definitely recommend Gnu C instead of MSVC. Nevertheless it should be possible to exclude the problematic sections by some preprocessor code. Sorry, can't look into it at the...

Hi thanks, that's interesting. I would attribute the problem to some compiler/linker setting. How did you build the example?

Thanks, my question was more referring to which script you used to build the simple1 example. The flext build system (build.sh), or autoconf/make-based, or something else?

Thank you, your input is much appreciated. I'll think of how to make the build system more flexible.

The buffer API has drastically changed for recent Max versions. This must be reflected in the flext API so that py/pyext can use them. Pull requests welcome!

Hi, in this case, the syntax error means something like "identifier not found". The `point` type was defined in older versions of the Max SDK, but is no longer. The...

Hi Lassi, my impression is that the Python 3.6 headers are not used, but rather the 2.7 ones, which of course works until the linking stage. Then, linking with Pd...

I have made a python3 branch which makes tiny changes to the build system. It should still work with 2.7 but now use the proper paths to the Python headers....

Thanks, i have had a quick look but fail to understand a few replacements of old versus new functions. In any case, all adaptations of the code should be conditional...

Yes, absolutely. I have been working on a branch for python3 development. https://github.com/grrrr/py/tree/python3 However, module management has fundamentally changed and i am proceeding slower than i would want.