fpgauserdude

Results 17 comments of fpgauserdude

I am also interested in this feature. This is the biggest drawback of Edalize, in my opinion.

This is really too bad. Verilator was doing exactly what I needed, but the preprocessor is sort of half-way implemented. Example: ``` ifdef TEST1 foo test1 (.clk (port.clk)); endif ifndef...

Yeah, I suspected something like that. But when I attempt to run bazel without those options, it immediately fails with the following error: $ bazel build -c opt //... INFO:...

Should I try updating bazel? $ bazel --version bazel 6.2.1 $ bazel build -c opt --compiler=clang-cl //... INFO: Analyzed 1903 targets (0 packages loaded, 0 targets configured). INFO: Found 1903...

Interesting. I updated bazel and now am getting a different error: $ bazel --version bazel 6.3.2 $ bazel build -c opt //... INFO: Analyzed 1903 targets (0 packages loaded, 0...

$ clang-cl --version clang version 15.0.7 Target: x86_64-pc-windows-msvc Thread model: posix InstalledDir: C:\Program Files\LLVM\bin $ bazel build -c opt --compiler=clang-cl //... INFO: Analyzed 1903 targets (0 packages loaded, 0 targets...

The way to force MSVC 2019 is to use the environmental variable that I mentioned when I opened this issue. I did that, and I got farther. Here is the...

Well...I was able to compile successfully in cygwin. The windows bash.exe error was suspicious. I am not sure how to control the selection of various tools in bazel. Should I...

Making that expression constant is not possible in my code. It would remove the purpose of using that feature in the first place. I am using the preprocessor to remove...

I changed the code to the following ``` localparam string TESTED_VERSIONS[2] = { "2023.1", "2023.2" }; ``` And the parse does work. But the only way I discovered this problem...