出现此问题的原因是由于kernel feature中选中了Use the ARM EABIto compile the kernel引起的,有两各解决办法: 1)换编译器为arm-linux-gcc version 4.3.3 2)去掉内核中的Kernel Features->Use the ARM EABIto compile the kernel选项. 参考:编译内核出错:invalid option `abi=aapcs-linux' 解决办法…
url传带有汉字的参数乱码解决 var reg = new RegExp("(^|&)createName=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg) if (r != null && r.length > 2 && r[2] != "") { var createName=decodeURI(r[2]); }…