在AOSP中增加預設app (2) : 自行編譯
在AOSP中增加預設app (1) : prebuilt apk
在mutt設定gmail
llvm - helloworld
環境設置 ubuntu體系:sudo apt-get install llvm MAC: brew install llvm makefile (MAC) 1 2 3 4 5 6 7 8 9 BIN_PATH=/usr/local/Cellar/llvm/3.6.1/bin/ export PATH:=$(PATH):$(BIN_PATH) LLVM_CONFIG=llvm-config FLAGS= --cxxflags --ldflags --system-libs --libs core toy: toy.cpp clang++ -g -O3 toy.cpp `$(LLVM_CONFIG) $(FLAGS)` -o toy clean: rm -f toy top module 1 2 3 4 5 6 7 8 9