已合并
【PR】: fix get_opt.h file not found in some system #2317
duanpengliang创建于 5月22日
【PR】: fix get_opt.h file not found in some system #2317
已合并
共 1 个文件变更+4-2
| @@ -73,14 +73,15 @@ | |||
| 73 | - gperf | 73 | - gperf |
| 74 | - libtool | 74 | - libtool |
| 75 | - make | 75 | - make |
| 76 | - libc6-dev/glibc-devel | ||
| 76 | 77 | ||
| 77 | Ubuntu/Debian操作系统安装命令示例如下: | 78 | Ubuntu/Debian操作系统安装命令示例如下: |
| 78 | ```bash | 79 | ```bash |
| 79 | sudo apt install python3 python3-pip python3-dev gcc-9 g++-9 cmake ccache autoconf gperf libtool libtool-bin make | 80 | sudo apt install python3 python3-pip python3-dev gcc-9 g++-9 libc6-dev cmake ccache autoconf gperf libtool libtool-bin make |
| 80 | ``` | 81 | ``` |
| 81 | CentOS/EulerOS操作系统安装命令示例如下: | 82 | CentOS/EulerOS操作系统安装命令示例如下: |
| 82 | ```bash | 83 | ```bash |
| 83 | sudo yum install python3 python3-pip python3-devel gcc gcc-c++ cmake ccache autoconf gperf libtool make | 84 | sudo yum install python3 python3-pip python3-devel gcc gcc-c++ glibc-devel cmake ccache autoconf gperf libtool make |
| 84 | ``` | 85 | ``` |
| 85 | 86 | ||
| 86 | ##### 安装软件 | 87 | ##### 安装软件 |
| @@ -256,6 +257,7 @@ runtime在编译时,依赖的第三方开源软件列表如下: | |||
| 256 | ```bash | 257 | ```bash |
| 257 | bash tests/build_ut.sh --ut=acl --target=ascendcl_utest -c --cann_3rd_lib_path={your_3rd_party_path} | 258 | bash tests/build_ut.sh --ut=acl --target=ascendcl_utest -c --cann_3rd_lib_path={your_3rd_party_path} |
| 258 | ``` | 259 | ``` |
| 260 | 其中,`{your_3rd_party_path}`必须为绝对路径。 | ||
| 259 | 261 | ||
| 260 | **指定测试模块** | 262 | **指定测试模块** |
| 261 | 263 | ||