-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
iverilog: update to s20250103, split documentation, add libvvp patch
- Update iverilog from version 12.0 to tag s20250103 to support libvvp integration with ngspice. - Split documentation into a new `iverilog-docs` port due to increased compile dependencies and source tree changes. - Many text files, such as `cadpli.txt`, are no longer included upstream. - Add patch for `libvvp.so` to ensure proper functionality.
- Loading branch information
Showing
2 changed files
with
68 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- vvp/Makefile.in.orig 2025-02-19 14:26:54 | ||
+++ vvp/Makefile.in 2025-02-19 14:27:14 | ||
@@ -159,7 +159,7 @@ | ||
$(CXX) $(LDFLAGS) -o vvp@EXEEXT@ main.o -L. -lvvp $(LIBS) | ||
|
||
libvvp.so: $O | ||
- $(CXX) -shared $(LDFLAGS) -o libvvp.so $O $(LIBS) $(dllib) | ||
+ $(CXX) -shared $(LDFLAGS) -install_name $(libdir)/libvvp.so -o libvvp.so $O $(LIBS) $(dllib) | ||
else | ||
vvp@EXEEXT@: $O main.o | ||
$(CXX) $(LDFLAGS) -o vvp@EXEEXT@ main.o $O $(LIBS) $(dllib) |