Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

greenlet recipe build fail #2806

Closed
RobertFlatt opened this issue May 30, 2023 · 4 comments
Closed

greenlet recipe build fail #2806

RobertFlatt opened this issue May 30, 2023 · 4 comments

Comments

@RobertFlatt
Copy link
Contributor

Logs

In file included from ./slp_platformselect.h:47:
./platform/switch_aarch64_gcc.h:62:51: warning: value size does not match register size specified by the constraint and modifier [-Wasm-operand-widths]
           __asm__ volatile ("mov %0, #0" : "=r" (err));
                                                  ^
./platform/switch_aarch64_gcc.h:62:35: note: use constraint modifier "w"
           __asm__ volatile ("mov %0, #0" : "=r" (err));
                                  ^~
                                  %w0
greenlet.c:538:10: error: no member named 'use_tracing' in 'struct _ts'
        tstate->use_tracing = 0;
        ~~~~~~  ^
greenlet.c:541:10: error: no member named 'use_tracing' in 'struct _ts'
        tstate->use_tracing = (tstate->tracing <= 0 &&
        ~~~~~~  ^
greenlet.c:823:13: warning: 'PyEval_CallObjectWithKeywords' is deprecated [-Wdeprecated-declarations]
                        result = PyEval_CallObjectWithKeywords(
                                 ^
/home/bobf/ex/regression/.buildozer/android/platform/build-arm64-v8a/build/other_builds/python3/arm64-v8a__ndk_target_21/python3/Include/ceval.h:17:1: note: 'PyEval_CallObjectWithKeywords' has been explicitly marked deprecated here
Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
^
/home/bobf/ex/regression/.buildozer/android/platform/build-arm64-v8a/build/other_builds/python3/arm64-v8a__ndk_target_21/python3/Include/pyport.h:513:54: note: expanded from macro 'Py_DEPRECATED'
#define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                     ^
greenlet.c:1009:19: error: expression is not assignable
                Py_REFCNT(self) = 1;
                ~~~~~~~~~~~~~~~ ^
greenlet.c:1038:7: error: expression is not assignable
                if (--Py_REFCNT(self) != 0) {
                    ^ ~~~~~~~~~~~~~~~
greenlet.c:1042:20: error: expression is not assignable
                        Py_REFCNT(self) = refcnt;
                        ~~~~~~~~~~~~~~~ ^
greenlet.c:1046:4: error: use of undeclared identifier '_Py_DEC_REFTOTAL'
                        _Py_DEC_REFTOTAL;
                        ^
2 warnings and 6 errors generated.
@pedrognsmartins
Copy link

We have exactly the same issue. Can someone help ?

@RobertFlatt
Copy link
Contributor Author

I didn't try to figure this one (I was only doing regression testing) but each of the two described here would be worth trying https://github.com/Android-for-Python/Android-for-Python-Users#error-expression-is-not-assignable

@pedrognsmartins
Copy link

Thanks for your feedback.
I was able to solve the issue based on your input (update cython) plus declaring on requirements specifically version 2.0.2 for greenlet.

AndreMiras added a commit to AndreMiras/python-for-android that referenced this issue Mar 22, 2025
@AndreMiras
Copy link
Member

AndreMiras commented Mar 22, 2025

AndreMiras added a commit to AndreMiras/python-for-android that referenced this issue Mar 23, 2025
Fixes build time errors, but runtime not tested.
AndreMiras added a commit that referenced this issue Mar 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants