|
Hi darqoq,
Here is what I did :
for the begining (lichee), it is the same, no problems encountered.
Android part :
==========
create missing Makefile in android :
- ### DO NOT EDIT THIS FILE ###
- include build/core/main.mk
- ### DO NOT EDIT THIS FILE ###
Copy code
i prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/signal.h
comment the line :
- //#include <limits.h> /* For LONG_BIT */
Copy code
Add the following before __BEGIN_DECLS :
- #ifdef __LP64__
- # define LONG_BIT 64
- #else
- # define LONG_BIT 32
- #endif
Copy code
=> there is an error which says that LONG_BIT is not defined but in fact, it is in limits.h
copying define section from limits.h seems to fix the problem. However, very strange, still don't understand why it does not work ?
- . build/envsetup.sh
- extract-bsp
- lunch
- => menu 7 (dolphin...)
- extract-bsp
- make -j8
- extract-bsp
Copy code
(don't know exactly when to call extract-bsp, so doing it many times )
pack
and install to SD Card
NOTE : I could not configure network (Ethernet or Wifi) |
|