Show README syntax highlighted
# GreenSocs Package Management (GSPM) makes it easy to compile programs
# without any makefile. The GreenSocs Compiler Wrapper (gsc) can locate
# the loaded libraries automatically.
# To compile one example using GSPM, we do:
# Load GSPM world if not done yet
source gspm.bashrc
# Load the required packages (SystemC is loaded as a requirement of gstlm)
gs-use gstlm gsc
# Change to some example directory
cd $GSTLM/example/example_simple
# Compile with gsc
gsc -o myexample *.cpp
# Run the example
./myexample
See more files for this project here