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))

相关推荐
执明wa7 小时前
LayoutInflater详解: XML是如何变成View的?
android·xml·开发语言·android studio
404_coder7 小时前
源码视角下的 Android 开机流程:从 Zygote、SystemServer 到 Launcher
android
二流小码农7 小时前
鸿蒙开发:以登录案例了解代码架构MVVM
android·ios·harmonyos
用户69371750013848 小时前
从代码生产者到 AI 协作者:软件工程师的角色重构
android·前端·后端
GitLqr9 小时前
别在 Flutter 的 main() 里乱锁屏幕方向,小心 iPad 分屏功能被你搞没了
android·flutter·ios
sg_knight9 小时前
MySQL 存储过程详解:从入门到实战
android·数据库·mysql·database·dba·关系型数据库·db
爱笑鱼9 小时前
Binder(四):ioctl(BINDER_WRITE_READ) 之后,事务怎样到达目标进程?
android
AFinalStone9 小时前
Android 7系统休眠唤醒(二)开机全链路—BootROM到Launcher
android·电源管理·休眠唤醒
Mr YiRan9 小时前
Android NDK开发之统计到未被回收的图片
android