linux编译常见错误

make: Warning: File `libbb/Makefile.in' has modification time 3.2e+04 s in the future

文档被修改的时间比系统时间大,把系统时间修改正确即可。

int nPort = (int )p;//为void*指针,编不过。

int* a = (int*)pABC;        int* a  = static_cast <int* >(pABC); 

你可能感兴趣的:(linux编译常见错误)