Olof Kindgren
Olof Kindgren
That `-Wl,--unreoslved-symbols=ignore-in-shared-libs` option seems indeed better, but I also agree that it's strange that I'm eccountering this issue in the first place. I'm on Gentoo, so that could perhaps hint...
Yep. ``` lrwxrwxrwx 1 root root 20 apr 12 19:53 libpython3.11.so -> libpython3.11.so.1.0 -rwxr-xr-x 1 root root 4968480 apr 12 19:54 libpython3.11.so.1.0 lrwxrwxrwx 1 root root 20 apr 12 19:58...
Hmm.. shouldn't we simply add a `cocotb-config --ldflags` that returns basically `-Wl,-rpath,$(output of cocotb-config --lib-dir) -L$(output of cocotb-config --lib-dir) -lcocotbvpi_verilator -lgpi -lcocotb -lgpilog -lcocotbutils -lpython$(correct version identified by find_libpython)` ?
Ah no. I'm using a pip-installed 1.8.1 This is for having Edalize launch simulations with cocotb. Basically doing https://docs.cocotb.org/en/stable/custom_flows.html#verilator . But my problem is that these instructions don't work for...
Yes! That works just fine. So the problem was actually overlinking rather than underlinking :) PR for docs here https://github.com/cocotb/cocotb/pull/3901 Closing this now.
Very cool! @gsmecher. What I did for [Subservient](https://github.com/olofk/subservient/) (the SERV-based mini SoC for ASICs) is to add a Wishbone port for loading data into memory. That does cost an insane...
I would recommend that we use the "official" or1k test cases https://github.com/openrisc/or1k-tests/tree/master/native/or1k for this. They also all output 0x8000000d (good) or 0xbaaaaaad to signal test status. For these tests I...
Correct. Some of them fails in the current state, so I recommend running them with a timeout. Can't remember a good timeout value now unfortunately. So the complete fusesoc command...
I see. With my version of icarus, these are only warnings. What version of Icarus are you using? Perhaps we can add some flag to downgrade this to a warning....
Looks like [this commit](https://github.com/steveicarus/iverilog/commit/0ab1ed916fd3c6a3b55763fcaabcf00f18ceadf4) changed the warning to an error and there doesn't seem to be a way to turn it off. As a quick workaround you can change `toplevel...