Commentary

This commit is contained in:
Wilson Snyder 2010-02-26 18:57:34 -05:00
parent f1b6c0c559
commit 845d7ad718

View File

@ -878,7 +878,7 @@ section below for descriptions of some of the files that were created.
We then can compile it We then can compile it
cd obj_dir cd obj_dir
make -f Vour.mk Vour make -j -f Vour.mk Vour
(Verilator included a default compile rule and link rule, since we used (Verilator included a default compile rule and link rule, since we used
--exe and passed a .cpp file on the Verilator command line. You can also --exe and passed a .cpp file on the Verilator command line. You can also
@ -944,9 +944,8 @@ Verilator by replacing the verilator --sp flag in the previous step with
We then can compile it We then can compile it
make -f Vour.mk Vour__ALL.a make -j -f Vour.mk Vour__ALL.a
make -f Vour.mk ../sc_main.o make -j -f Vour.mk ../sc_main.o verilated.o
make -f Vour.mk verilated.o
And link with SystemC. Note your path to the libraries may vary, And link with SystemC. Note your path to the libraries may vary,
depending on the operating system. depending on the operating system.