错误:icpc: error #10295: error generating temporary file name, check disk space and permissions
解决方法:主要是系统 /tmp/空间不足引起的,不能满足编译的需求,编译的中间文件不能写入。
1,建立新的tmp文件夹(eg: mkdir /lichuang/tmp);
2, chmod 777 /lichuang/tmp
3,export TMP=/lichuang/tmp
4,export TEMP=/lichuang/tmp
5,export TMPDIR=/lichuang/tmp
OK