pdk安装完以后,有些用户在调用的时候显示为空,原因是pdk里面某些文件others没有read权限。
1.cp -a 完整的pak路径到others的工作目录下,不能拷贝的文件就是没有权限的
2.find tsmc_1p5m3x1n20181207 -type f ! -perm /o+r -exec chmod og+r {} \ ; 文件给读权限
3.find tsmc_1p5m3x1n20181207 -type d ! -perm /o+r -exec chmod og+rx {} \ ; 目录给读和执行权限