Android开发
sstower
这个作者很懒,什么都没留下…
展开
-
autoconf 英文手册
1 IntroductionA physicist, an engineer, and a computer scientist were discussing thenature of God. “Surely a Physicist,” said the physicist, “becauseearly in the Creation, God made Light; and ...转载 2020-01-15 09:43:16 · 773 阅读 · 0 评论 -
Fedora 20 使用光盘作为软件源
安装完Fedora20后,使用yum 更新安装软件总会出错,网上给的解决方案不靠谱,最后自己用光盘作为软件源才解决了问题具体方法如下:1.绑定光驱 [root@localhost /]# cd mnt/ [root@localhost mnt]# mkdir fedora_dvd [root@localhost mnt]# mount -t iso9660 /dev...原创 2020-01-14 10:50:39 · 299 阅读 · 0 评论 -
iTop4412 支持内核调试-uboot篇
4412 官方的uboot 镜像很简单,少了很多的command,既没有printenv,也没有setenv,我们没法通过它的镜像来添加对内核调试的支持,还好它提供了uboot源码,我们只需要在include的environment.h加上:#define CONFIG_BOOTARGS "kgdboc=ttySAC2,115200 kgdbwait"它在Env_common.c会引用到...原创 2020-01-05 14:48:12 · 349 阅读 · 0 评论 -
android.mk 和application.mk 详细分析
1.Android.mkAndroid.mk是一个 android NDK 构建系统描述NDK项目的makefile 片段。它是每一个NDK项目必备组件。一般来说它与源代码在同一层目录中,下面是一个样例文本:LOCAL_PATH:=$(call my-dir)include $(CLEAR_VARS)LOCAL_MODULE:= ffmpegutilsLOCAL_SRC_FILES...原创 2020-01-01 13:31:07 · 650 阅读 · 0 评论