两天前,我阅读了一些关于如何自编译 cyanogenmod 的指南,我想在我的手机(Galaxy 3 i5800)上试一试。手机的 CPU 架构是 ARMV6,所以我从 androidarmv6.github.io 下载了 CyanogenMod 10.2 源代码,从https://github.com/sdadier/cm10.1_device_samsung_apollo下载了设备文件夹。起初编译非常好,除了一些“不支持选定的拇指模式...”错误,我通过在涉及的 Android.mk 中添加“-marm”CFLAG 来修复这些错误。但是现在我被困在 libhwardware_legacy 编译上,因为我不断收到错误消息:
target thumb C: libhardware_legacy <= hardware/libhardware_legacy/wifi/wifi.c
hardware/libhardware_legacy/wifi/wifi.c: In function 'update_ctrl_interface':
hardware/libhardware_legacy/wifi/wifi.c:473:5: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
hardware/libhardware_legacy/wifi/wifi.c: In function 'wifi_start_supplicant':
hardware/libhardware_legacy/wifi/wifi.c:835:4: error: expected identifier before 'unsigned'
hardware/libhardware_legacy/wifi/wifi.c:895:20: error: dereferencing pointer to incomplete type
hardware/libhardware_legacy/wifi/wifi.c:912:26: error: dereferencing pointer to incomplete type
我在 Google 上搜索了这意味着什么,我在 StackOverflow 和一些 Linux 论坛上发现了很多关于此的主题,但没有一个提到 Android、Cyanogen 或 libhardware_legacy。是不是我的系统有问题?代码中有错误(这里的代码)?
请给我一些建议