Simics配置

      从同学那获得了一个Simics,需要在自己的机器上配置。在同学的帮助下,终于可以在自己的电脑上配置。

1. 我的notebook是64位的,而同学的配置是在32位机器上的。所以,首先需要选择64位版本simics进行安装。

2. gcc_4.2.0 not found error的解决方案:删除或者重命名simics_install/x86-linux/sys/lib/libgcc_s_so.1文件

3. Error opening file tango1-fedora5.craff的解决方案:找到该文件,添加到./workspace/targets/x86-440bx/tango1-fedora5.craff目录下

4. Problem importing commands for nuca-cache: No module named ncache_common的解决方案:

拷贝原来配置中simics-3.0.31/x86-linux/lib/python目录下的ncache_common.py(c)以及mod_nuca_cache_commands.py(c)到workspace/x86-linux/lib/python

cd workspace & make clean & make

5. 使用步骤:

  • ~#cd workspace
  • ~#./simics -stall -c checkpoints/tango/tango.check     // -stall mode for time information
  • simics>istc-disable
  • simics>dstc-disable
  • simics>instruction-fetch-mode instruction-fetch-trace         // cpu-switch-time 1 for multiple cores
  • simics>run-command-file scripts/16KBL1-1MBL2.simics     // load the cache module
  • simics>c
  • ~root#./test_file args                      // run the target program for simulation
  • simics>ctrl+c
  • l2c.statistics

你可能感兴趣的:(c,cache,Module,gcc,File)