当前位置: 首页 > news >正文

行政审批网站建设规范1688网站如何运营

行政审批网站建设规范,1688网站如何运营,wordpress禁止制定ip访问,书籍网站设计RISC-V CVA6 在 Linux 下相关环境下载与安装 所需环境与源码下载 CVA6 源码下载 首先#xff0c;我们可以直接从 GitHub 一次性拉取所有源码#xff1a; git clone --recursive https://github.com/openhwgroup/cva6.git如果这里遇到网络问题#xff0c;拉取失败#x…RISC-V CVA6 在 Linux 下相关环境下载与安装 所需环境与源码下载 CVA6 源码下载 首先我们可以直接从 GitHub 一次性拉取所有源码 git clone --recursive https://github.com/openhwgroup/cva6.git如果这里遇到网络问题拉取失败分开拉取一下所有包 首先拉取 CVA6 源码并查看所需要的所有包 git clone https://github.com/openhwgroup/cva6.git cat cva6/.gitmodules然后进入源码路径下拉取所有需要的包 cd cva6 git clone --recursive https://github.com/pulp-platform/axi_mem_if.git corev_apu/axi_mem_if git clone --recursive https://github.com/pulp-platform/register_interface.git corev_apu/register_interface git clone --recursive https://github.com/pulp-platform/apb_uart.git corev_apu/fpga/src/apb_uart git clone --recursive https://github.com/pulp-platform/apb_node.git corev_apu/fpga/src/apb_node git clone --recursive https://github.com/pulp-platform/axi2apb.git corev_apu/fpga/src/axi2apb git clone --recursive https://github.com/pulp-platform/axi_slice.git corev_apu/fpga/src/axi_slice git clone --recursive https://github.com/lowRISC/ariane-ethernet.git corev_apu/fpga/src/ariane-ethernet git clone --recursive https://github.com/pulp-platform/axi_riscv_atomics.git corev_apu/src/axi_riscv_atomics git clone --recursive https://github.com/pulp-platform/riscv-dbg.git corev_apu/riscv-dbg git clone --recursive https://github.com/pulp-platform/rv_plic.git corev_apu/rv_plic git clone --recursive https://github.com/pulp-platform/apb_timer.git corev_apu/fpga/src/apb_timer git clone --recursive https://github.com/pulp-platform/common_verification.git corev_apu/tb/common_verification git clone --recursive https://github.com/openhwgroup/core-v-verif verif/core-v-verif git clone --recursive https://github.com/openhwgroup/cv-hpdcache.git core/cache_subsystem/hpdcache git clone --recursive https://github.com/google/riscv-dv.git verif/sim/dv这里的 core-v-verif 比较容易下载失败如果失败手动重新下载单独模块即可 CVA6-SDK 环境拉取 首先我们可以直接从 GitHub 一次性拉取所有源码 git clone --recursive https://github.com/openhwgroup/cva6-sdk.git如果这里遇到网络问题拉取失败分开拉取一下所有包 首先拉取 CVA6-SDK 源码并查看所需要的所有包 git clone https://github.com/openhwgroup/cva6-sdk.git cat cva6-sdk/.gitmodules然后进入源码路径下拉取所有需要的包 cd cva6-sdk git clone --recursive -b master https://github.com/riscv/riscv-tests.git riscv-tests git clone --recursive -b master https://github.com/riscv/riscv-isa-sim.git riscv-isa-sim git clone --recursive git://git.buildroot.net/buildroot buildroot git clone --recursive https://github.com/pulp-platform/vitetris.git vitetris git clone --recursive https://github.com/openhwgroup/u-boot/ u-boot git clone --recursive https://github.com/riscv/opensbi.git opensbi这里的 core-v-verif 比较容易下载失败如果失败手动重新下载单独模块即可 core-v-verif 环境拉取 直接拉取全部即可 git clone --recursive https://github.com/openhwgroup/core-v-verif环境编译及配置 CVA6 环境安装 在安装环境前需要安装编译 riscv-toolchain 首先安装需要的软件包 sudo apt-get install help2man device-tree-compilersudo apt-get install autoconf automake autotools-dev curl git libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool bc zlib1g-devsudo apt-get install autoconf automake autotools-dev curl python3 python3-pip libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev libexpat-dev ninja-build git cmake libglib2.0-devsudo apt-get install wget cpio zip rsync git首先编译安装 RISC-V 交叉编译链先配置好环境变量 sudo vim ~/.bashrc # 添加以下内容 export RISCV/home/ppqppl/riscv_env/cva6_env export PATH$RISCV/bin:$PATH # 重新应用环境变量 source ~/.bashrc然后进入指定路径下运行如下命令进行安装 cd cva6/util/gcc-toolchain-builder INSTALL_DIR$RISCV sh get-toolchain.sh sh build-toolchain.sh $INSTALL_DIR安装成功后可以开始安装准备环境 首先安装需要的 python 包 pip3 install -r verif/sim/dv/requirements.txt然后运行以下命令安装 Spike 和 Verilator 注意这里必须安装指定版本的 Spike 和 Verilator # DV_SIMULATORS is detailed in the next section export DV_SIMULATORSveri-testharness,spike bash verif/regress/smoke-tests.sh注意这里需要使用 python推荐使用 python 3.10 版本或者安装 anaconda由于运行 python 部分会报错所以安装 anaconda 会更好切换 python 版本 CVA6-SDK 环境编译 首先安装需要的软件包 sudo apt-get install autoconf automake autotools-dev curl libmpc-dev libmpfr-dev libgmp-dev libusb-1.0-0-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev device-tree-compiler pkg-config libexpat-devsudo apt-get install wget cpio zip rsync git添加交叉编译路径 sudo vim ~/.bashrc # 添加如下 export PATH/home/ppqppl/cva6_env/cva6-sdk/buildroot/output/host/bin:$PATH首先进行全部编译 nake all 21 | tee makeout.log编译安装报错处理 这里可以选择只删除 make 产生的文件或同时删除 make 产生的文件和 configure 产生的文件 sudo make clean # 只删除 make 产生的文件 sudo make distclean # 同时删除 make 和 configure 产生的文件
http://www.pierceye.com/news/595527/

相关文章:

  • 企业网站建设服务网站制作的困难与解决方案
  • 宜昌营销型网站内存优化大师
  • 做购物网站的费用上海有名的效果图公司
  • 站长统计网站统计建立自己的网站软件有
  • 单页网站制作系统装修的网站都有哪些
  • 什么样的网站可以做站内站外贸网站wordpress
  • 网站栏目策划方案上不了建设银行网站
  • 深圳网络营销网站推广方法大连网页设计制作公司
  • 去哪想找人帮我做网站网站开发连接形式
  • 网龙公司有做网站吗北京建设银行支行查询官方网站
  • 本地推广找哪些网站wordpress isux主题
  • 写作网站可保存德阳网站建设公司
  • 找人做网站要密码吗榆林网站seo
  • 不同网站建设报价单深圳室内设计公司排行
  • wap网站价格用python做网站的多吗
  • 为什么要找对做网站的公司枣阳网站建设等服务
  • 有阿里云的主机了怎么做网站北京做网站ezhixi
  • 物业网站模板下载支付宝官网登录入口
  • 医疗网站模版北京建筑信息平台
  • 关于网站建设电话销售的开场白爱网站最新发布址
  • 聊城职业 网站建设与管理酒店类网站开发的策略
  • 学习建设网站建设网站那家好
  • 秦皇岛住房建设网站网站改版建设
  • thinkphp做的网站怎么预览启信宝企业查询
  • 网站为什么没有被收录营销网站都有哪些
  • 广州网站建设比较好的公司芜湖网站公司
  • 网站建设教育机构做图表用的网站
  • 正规手表回收网站重庆观音桥必吃美食
  • 交流稿 网站建设企业网站制作策划书
  • 提取网站子页面邮箱图书网站建设规划书