summaryrefslogtreecommitdiff
path: root/util/systemc
diff options
context:
space:
mode:
authorMatthias Jung <jungma@eit.uni-kl.de>2017-01-09 09:33:42 -0600
committerMatthias Jung <jungma@eit.uni-kl.de>2017-01-09 09:33:42 -0600
commit5b08ae2372c4d20e332891b54c1266b30df90b3e (patch)
treeea88d6ff78a4aa9cb8ec6d33392df06e970c005e /util/systemc
parentb682366b301714d8329e1cf556b715ff8ae48c55 (diff)
downloadgem5-5b08ae2372c4d20e332891b54c1266b30df90b3e.tar.xz
misc: Documentation Update
Updates for READMEs of /util/cxx_config, /util/systemc, /util/tlm. Some minor corrections, mostly with respect to MAC/OSX Signed-off-by: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'util/systemc')
-rw-r--r--util/systemc/README27
1 files changed, 25 insertions, 2 deletions
diff --git a/util/systemc/README b/util/systemc/README
index a886e0220..b05c81058 100644
--- a/util/systemc/README
+++ b/util/systemc/README
@@ -32,9 +32,29 @@ needed):
> cd ../..
> scons build/ARM/gem5.opt
> scons --with-cxx-config --without-python build/ARM/libgem5_opt.so
-> cd util/cxx_config
+> cd util/systemc
-Then edit Makefile to set the paths for SystemC and run make
+Note: For MAC / OSX this command should be used:
+> scons --with-cxx-config --without-python build/ARM/libgem5_opt.dylib
+
+Set a proper LD_LIBRARY_PATH e.g. for bash:
+> export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/path/to/gem5/build/ARM/"
+
+or for MAC / OSX:
+> export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:/path/to/gem5/build/ARM/"
+
+
+Then edit the Makefile to set the paths for SystemC, e.g:
+
+ Linux:
+ SYSTEMC_INC = /opt/systemc/include
+ SYSTEMC_LIB = /opt/systemc/lib-linux64
+
+ MAC / OSX:
+ SYSTEMC_INC = /opt/systemc/include
+ SYSTEMC_LIB = /opt/systemc/lib-macosx64
+
+Then run make:
> make
@@ -57,3 +77,6 @@ This should print:
The .ini file can also be read by the Python .ini file reader example:
> ../../build/ARM/gem5.opt ../../configs/example/read_ini.py m5out/config.ini
+
+If you are interested in SystemC Transaction Level Modeling (TLM2) please have
+a look into /util/tlm.