Building a multiplatform docker image for linux/amd64 and linux/arm64 using:
docker build --platform linux/amd64,linux/arm64 .
currently fails in the linux/arm64 portion for at least two reasons:
lib32gcc-9-dev seems to be unavailable
openocd fails to recognize the system
spike fails to build (which may be an issue we can't solve easily)
I am not sure how involved fixing all this is but I expect we need to support ARM64 sooner or later and therefore may not get around the issue.
Building a multiplatform docker image for linux/amd64 and linux/arm64 using:
docker build --platform linux/amd64,linux/arm64 .currently fails in the linux/arm64 portion for at least two reasons:
lib32gcc-9-devseems to be unavailableopenocdfails to recognize the systemspikefails to build (which may be an issue we can't solve easily)I am not sure how involved fixing all this is but I expect we need to support ARM64 sooner or later and therefore may not get around the issue.