Categories:
Resolving iverilog __gxx_personality_v0 errors
I ran into a strange error while trying to compile a Verilog module using theĀ Icarus Verilog compiler:
A quick lookup of the __gxx_personality_v0 error on StackOverflow revealed to me that the cause of this strange error is a mismatched/missingĀ libstdc++-6.dll, fixable with a simple command:
copy C:\dev\tools\iverilog\bin\libstdc++-6.dll C:\dev\tools\iverilog\lib\ivl
I still need to investigate exactly why this libstdc++-6.dll problem occurs. It might be related to my Git environment (Git Bash?)
Leave a Reply