diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-07-13 17:04:05 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-07-13 17:04:05 -0300 |
commit | b18629d4dac092f1f424f9b804b5523aa62f3aa9 (patch) | |
tree | 600d458e8e2c0e8ecdc4641ed1c794919b6753ee /testing/micropython | |
parent | 3aed3770c6cfff5f237893a20300d3a52b3c769c (diff) | |
download | aports-b18629d4dac092f1f424f9b804b5523aa62f3aa9.tar.bz2 aports-b18629d4dac092f1f424f9b804b5523aa62f3aa9.tar.xz |
testing/micropython: limit on ppc64le
CC ../py/obj.c
CC ../py/objarray.c
../py/nativeglue.c:226:5: error: 'nlr_push' undeclared here (not in a function); did you mean 'nlr_jump'?
nlr_push,
^~~~~~~~
nlr_jump
Diffstat (limited to 'testing/micropython')
-rw-r--r-- | testing/micropython/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/micropython/APKBUILD b/testing/micropython/APKBUILD index d8873f04f3..b85dcd9538 100644 --- a/testing/micropython/APKBUILD +++ b/testing/micropython/APKBUILD @@ -7,7 +7,7 @@ pkgdesc="A lean and efficient Python implementation for MCUs and constrained sys url="https://www.micropython.org/" # ../py/persistentcode.c:397:2: error: #error mp_raw_code_save_file not implemented for this platform -arch="all !s390x !x86 !armv7" +arch="all !s390x !x86 !armv7 !ppc64le" license="MIT" makedepends="libffi-dev python3" |