#Lab1:DOL开发环境配置
###DOL简介: Distributed Operation Layer : The distributed operation layer (DOL) is a software development framework to program parallel applications. The DOL allows to specify applications based on the Kahn process network model of computation and features a simulation engine based on SystemC. Moreover, the DOL provides an XML-based specification format to describe the implementation of a parallel application on a multi-processor systems, including binding and mapping.
###配置步骤:
-
安装一些必要的开发环境(ubuntu为例):
- $ sudo apt-get update
- $ sudo apt-get install ant
- $ sudo apt-get install openjdk-7-jdk
- $ sudo apt-get install unzip
-
下载文件(使用Vmware虚拟机,也可以从主机拷贝到虚拟机中去 (下载地址点我)
-
解压文件
- 新建dol的文件夹: $ mkdir dol
- 将dolethz.zip解压到 dol文件夹中: $ unzip dol_ethz.zip -d dol
- 解压systemc: $ tar -zxvf systemc-2.3.1.tgz
- 编译systemc
- 解压后进入systemc-2.3.1的目录下: $ cd systemc-2.3.1
- 新建一个临时文件夹objdir:$ mkdir objdir
- 进入该文件夹objdir:$ cd objdir
- 运行configure(能根据系统的环境设置一下参数,用于编译):
$ ../configure CXX=g++ --disable-async-updates
- 编译: $ sudo make install , 编译完后文件目录如下($ cd .. $ ls
- 记录当前的工作路径(会输出当前所在路径,记下来,待会有用):$ pwd
- 编译dol