enurseitov
enurseitov
Hi, I'm trying to build `c-blosc2` on an embedded target with an [Intel Atom x7-E3950](https://www.intel.com/content/www/us/en/products/sku/96488/intel-atom-x7e3950-processor-2m-cache-up-to-2-00-ghz/specifications.html). **System information:** - OS: Ubuntu 20.04.4 LTS x86_64 - Kernel: 5.15.0-52-generic - gcc version 9.4.0...
Consider this minimal example: ```python from migen import * from migen.fhdl import verilog class my_module(Module): def __init__(self): self.input = Signal(8) self.output = Signal(32) self.comb += self.output.eq(Cat(self.input, self.input+1, self.input+2, self.input+3)) def...