已合并
【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
已合并
duanpengliang创建于 5月22日
1 个文件变更+4-2
MREADME.md+4-2
@@ -73,14 +73,15 @@
73- gperf73- gperf
74- libtool74- libtool
75- make75- make
76- libc6-dev/glibc-devel
76 77 
77 Ubuntu/Debian操作系统安装命令示例如下:78 Ubuntu/Debian操作系统安装命令示例如下:
78```bash79```bash
79sudo apt install python3 python3-pip python3-dev gcc-9 g++-9 cmake ccache autoconf gperf libtool libtool-bin make80sudo apt install python3 python3-pip python3-dev gcc-9 g++-9 libc6-dev cmake ccache autoconf gperf libtool libtool-bin make
80```81```
81CentOS/EulerOS操作系统安装命令示例如下:82CentOS/EulerOS操作系统安装命令示例如下:
82```bash83```bash
83sudo yum install python3 python3-pip python3-devel gcc gcc-c++ cmake ccache autoconf gperf libtool make84sudo 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```bash257```bash
257bash tests/build_ut.sh --ut=acl --target=ascendcl_utest -c --cann_3rd_lib_path={your_3rd_party_path}258bash 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