Skip to content
Snippets Groups Projects
Unverified Commit f4ec843b authored by Florian Zaruba's avatar Florian Zaruba
Browse files

Fix library path also for Modelsim

parent 4fd90a30
No related branches found
No related tags found
No related merge requests found
...@@ -236,7 +236,7 @@ $(dpi-library)/%.o: tb/dpi/%.cc $(dpi_hdr) ...@@ -236,7 +236,7 @@ $(dpi-library)/%.o: tb/dpi/%.cc $(dpi_hdr)
$(dpi-library)/ariane_dpi.so: $(dpi) $(dpi-library)/ariane_dpi.so: $(dpi)
mkdir -p $(dpi-library) mkdir -p $(dpi-library)
# Compile C-code and generate .so file # Compile C-code and generate .so file
$(CXX) -shared -m64 -o $(dpi-library)/ariane_dpi.so $? -lfesvr $(CXX) -shared -m64 -o $(dpi-library)/ariane_dpi.so $? -L$(RISCV)/lib -Wl,-rpath,$(RISCV)/lib -lfesvr
# single test runs on Questa can be started by calling make <testname>, e.g. make towers.riscv # single test runs on Questa can be started by calling make <testname>, e.g. make towers.riscv
# the test names are defined in ci/riscv-asm-tests.list, and in ci/riscv-benchmarks.list # the test names are defined in ci/riscv-asm-tests.list, and in ci/riscv-benchmarks.list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment