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

相关推荐
灵魂学者2 小时前
使用 Android Studio 进行 HbuilderX H5+App 离线打包
android·ide·android studio·hbuilderx·apk build
scan7242 小时前
将记忆存储到数据库中
android
黄林晴2 小时前
Kotlin 2.4.0-Beta2 发布,语法与多平台能力全线革新
android·kotlin
恋猫de小郭2 小时前
Bun 官方将正式支持 Android,Claude Code 未来可以直接在手机上跑
android·前端·ai编程
nLYA SCOL2 小时前
MySQL数据的增删改查(一)
android·javascript·mysql
Kapaseker3 小时前
高阶函数到底高阶在哪里?
android·kotlin
且随疾风前行.3 小时前
Android 12 (AOSP) 添加自定义系统服务
android
凛_Lin~~3 小时前
Android录音、试听功能实现
android·音频·安卓
三少爷的鞋3 小时前
我是如何把一个传统 Android 协程示例,重构成 Clean Architecture 项目的
android