-
Notifications
You must be signed in to change notification settings - Fork 263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GHDL Interface can not detect GCC backend with newer GHDL/LLVM #898 #901
Comments
Yes, that seems to be exactly the same. Does it work if you change this line from mapping = {
r"mcode code generator": "mcode",
r"llvm (\d+\.\d+\.\d+ )?code generator": "llvm",
r"GCC back-end code generator": "gcc",
} to mapping = {
r"mcode code generator": "mcode",
r"llvm (\d+\.\d+\.\d+ )?code generator": "llvm",
r"GCC (back-end|\d+\.\d+\.\d+) code generator": "gcc",
} ? |
indeed it is working. |
Ok, I will push this to GitHub and make a patch release. |
This is now fixed on the main branch and a new release 4.6.2 is being built as we speak. It should be on PyPi shortly. |
Since ghdl got a JIT backend the issue still occurs. Output of ghdl --version:
I'd suggest using |
Hi this error seems related to the issue #898 .
When trying Vunit using the
ghdl/ghdl:fedora36-gcc-11.3.0
docker image I got the following error.Everything was working propperly with an older self compiled GHDL gcc.
Florent
The text was updated successfully, but these errors were encountered: