This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Polygon(EventDispatcher): | |
abs_vertices = ListProperty([]) | |
x = NumericProperty(0) | |
y = NumericProperty(0) | |
scale = NumericProperty(1) | |
def __init__(self, **kwargs): | |
super(Polygon, self).__init__(**kwargs) | |
self.abs_vertices = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"shell_cmd": "cd \"${file_path}\"; buildozer android debug 2>&1 | sed -u 's/\\x1B\\[[0-9;]*[JKmsu]//g'", | |
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", | |
"variants": | |
[ | |
{ | |
"name": "Run", | |
"shell_cmd": "python \"${file_path}/main.py\" |& sed -u 's/\\x1B\\[[0-9;]*[jkmsu]//g'" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[davideddu@arch-flo bin]$ ./test_egl | |
linker.c:661| WARNING: `/system/lib/libEGL.so` is not a prelinked library | |
0 mapped library 'libEGL.so' to b6ce9000 via kernel allocator. | |
linker.c:661| WARNING: `libcutils.so` is not a prelinked library | |
0 mapped library 'libcutils.so' to b6eef000 via kernel allocator. | |
linker.c:661| WARNING: `liblog.so` is not a prelinked library | |
0 mapped library 'liblog.so' to b6eea000 via kernel allocator. | |
linker.c:661| WARNING: `libc.so` is not a prelinked library | |
0 mapped library 'libc.so' to b6c8e000 via kernel allocator. | |
linker.c:661| WARNING: `libdsyscalls.so` is not a prelinked library |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/libc/Android.mk b/libc/Android.mk | |
index 9610c14..435074e 100644 | |
--- a/libc/Android.mk | |
+++ b/libc/Android.mk | |
@@ -231,7 +231,6 @@ libc_bionic_src_files := \ | |
bionic/sbrk.cpp \ | |
bionic/scandir.cpp \ | |
bionic/sched_getaffinity.cpp \ | |
- bionic/__set_errno.cpp \ | |
bionic/setlocale.cpp \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Scanning dependencies of target lscribed | |
[ 91%] Building CXX object lscribed/CMakeFiles/lscribed.dir/main.cpp.o | |
[ 93%] Building CXX object lscribed/CMakeFiles/lscribed.dir/dbuscpp.cpp.o | |
[ 95%] Building CXX object lscribed/CMakeFiles/lscribed.dir/drives.cpp.o | |
[ 96%] Building CXX object lscribed/CMakeFiles/lscribed.dir/managerhandler.cpp.o | |
[ 98%] Building CXX object lscribed/CMakeFiles/lscribed.dir/drivehandler.cpp.o | |
[100%] Building CXX object lscribed/CMakeFiles/lscribed.dir/introspecthandler.cpp.o | |
Linking CXX executable lscribed | |
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.1/../../../../lib/libdbus-1.so when searching for -ldbus-1 | |
/usr/bin/ld: skipping incompatible /lib/../lib/libdbus-1.so when searching for -ldbus-1 |
NewerOlder