Android Pixel7 13.0源码编译记录

这篇只是记录下笔者在编译源码的时候遇到的一些问题,以及自己是如何解决的,其实这些东西是不难的,笔者想只要能够自己去编译源码的同学都完全有能力去解决。笔者的计划是调试一个DEMO出来,这是第一步。

首先具体怎么编译源码,大家可以参考这位大哥的,说的已经很清楚了。

https://blog.csdn.net/layman_pro/article/details/145750510

2025年12月21日21:50:23

因为笔者之前就编过 我的需求 512g就够了 至于非要16+g以上的内存 区别也只在于首次编译 但又不赶时间 所以尽可能的在2000以内 但还是超出了一点点

2025年12月31日20:10:29

代码都下载完成

Bin文件解压

Type "I ACCEPT" if you agree to the terms of the license: I ACCEPT

cpp 复制代码
vendor/
vendor/google_devices/
vendor/google_devices/panther/
vendor/google_devices/panther/device-partial.mk
vendor/google_devices/panther/android-info.txt
vendor/google_devices/panther/proprietary/
vendor/google_devices/panther/proprietary/BoardConfigVendor.mk
vendor/google_devices/panther/proprietary/com.shannon.imsservice.xml
vendor/google_devices/panther/proprietary/vbmeta_vendor.img
vendor/google_devices/panther/proprietary/Android.bp
vendor/google_devices/panther/proprietary/Android.mk
vendor/google_devices/panther/proprietary/ShannonIms.apk
vendor/google_devices/panther/proprietary/radio.img
vendor/google_devices/panther/proprietary/ShannonRcs.apk
vendor/google_devices/panther/proprietary/bootloader.img
vendor/google_devices/panther/proprietary/com.shannon.rcsservice.xml
vendor/google_devices/panther/proprietary/vendor.img
vendor/google_devices/panther/proprietary/vendor_dlkm.img
vendor/google_devices/panther/proprietary/device-vendor.mk
vendor/google_devices/panther/proprietary/lib64/
vendor/google_devices/panther/proprietary/lib64/libmediaadaptor.so
vendor/google_devices/panther/proprietary/QualifiedNetworksService.apk
vendor/google_devices/panther/BoardConfigPartial.mk
vendor/google_devices/panther/LICENSE
vendor/google_devices/panther/COPYRIGHT

Ubuntu 24.04

whsgzcy@whsgzcy :~/Documents/pixcel13/source$ sudo vim /usr/lib/sysctl.d/10-apparmor.conf

whsgzcy@whsgzcy :~/Documents/pixcel13/source$ sudo sysctl -p /usr/lib/sysctl.d/10-apparmor.conf

kernel.apparmor_restrict_unprivileged_userns = 0

权限消解

sudo chown -R USER:USER .

Swap内存报错 导致make -jx的时候 报错

我的解决方案是deepseek问

我的解决方案是

1. 查看当前swap使用情况

sudo swapon --show

free -h

2. 创建一个新的swap文件(推荐大小:8GB-16GB)

对于16GB内存,建议创建8GB的swap文件

sudo fallocate -l 8G /swapfile

如果fallocate失败,可以使用dd(但较慢)

sudo dd if=/dev/zero of=/swapfile bs=1M count=8192

3. 设置正确的权限

sudo chmod 600 /swapfile

4. 格式化为swap

sudo mkswap /swapfile

5. 启用新的swap文件

sudo swapon /swapfile

6. 验证是否生效

free -h

备份当前的fstab文件(安全起见)

sudo cp /etc/fstab /etc/fstab.bak

将swap文件添加到fstab

echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab

验证fstab文件格式正确

sudo mount -a

编译报错集

prebuilts/clang/host/linux-x86/clang-3289846/bin/clang.real: error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file or directory

推荐下述方式 因为一个工具包他有很多依赖

pass

build completed successfully (04:57:27 (hh:mm:ss))

相关推荐
alexhilton1 天前
Android上的ZeroMQ:用发布/订阅模式连接Linux服务
android·kotlin·android jetpack
风别鹤1 天前
Cocos Creator无法识别Android SDK
android
应用市场1 天前
Android A/B 无缝更新机制深度剖析
android·网络
企客宝CRM1 天前
2026年中小企业CRM选型指南:企客宝CRM处于什么位置?
android·算法·企业微信·rxjava·crm
simplepeng1 天前
我通过3个小改动将Compose重组减少了78%
android
应用市场1 天前
Android分区表深度解析:GPT、各分区作用与布局实战
android·gpt
应用市场1 天前
Android Recovery 模式工作原理与定制实战
android
应用市场1 天前
eMMC 与 UFS 存储原理及在 Android 中的应用
android
随遇丿而安1 天前
第4周:ImageView 最怕的不是不会显示图片,而是显示得“不对劲”
android
Mart!nHu1 天前
Android10 添加以太网网络共享功能
android·以太网共享