坑啊!Android4.4.2源码编译,都是repo惹的祸。

从原厂拿到Adnroid4.4.2的源码,源码是用repo管理的。我草草将/repo/删除,然后git init 、git add ./  、git commit -m "xxx" 。再然后在其他地方git clone,结果编译的时候各种报错。

比如:Notice file: external/javasqlite/NOTICE -- out/host/linux-x86/obj/NOTICE_FILES/src//lib/libsqlite_jni.so.txtmake: *** No rule to make target `out/target/common/obj/JAVA_LIBRARIES/android_webview_java_intermediates/javalib.jar', needed by `out/target/common/obj/JAVA_LIBRARIES/webviewchromium_intermediates/classes-full-debug.jar'. Stop.make: *** Waiting for unfinished jobs....

最后发现是删除repo的后遗症。find ./ -name ".gitignore" ,发现系统有很多的文件,.gitignore这个文件导致你从服务器clone的时候很多文件没有clone下来,导致编译不通过。

解决办法:find  ./ -name“.gitignore”  |  xargs rm –rf,删除.gitignore文件,再跟新下。ok编译通过。

你可能感兴趣的:(git)