Hello,
I need to build from a linux running under an arm64 (macbook hardware)
The zephyr project depends on PlatformIO Registry
and no build for arm64 linux is provided.
Can you publish the arm64 version of the tool please?
Thank you!
Hello,
I need to build from a linux running under an arm64 (macbook hardware)
The zephyr project depends on PlatformIO Registry
and no build for arm64 linux is provided.
Can you publish the arm64 version of the tool please?
Thank you!
Related: https://github.com/platformio/platform-nordicnrf52/issues/125
If you already have a ARM64 Linux VM running, can you download + compile https://git.kernel.org/pub/scm/utils/dtc/dtc.git/snapshot/dtc-1.4.7.tar.gz?
Then give the installed directory a package.json
of
{
"name": "tool-dtc",
"version": "1.4.7",
"description": "Device tree compiler",
"keywords": [
"tools",
"compiler"
],
"license": "GPL-2.0-or-later",
"system": [
"linux_arm64"
],
"repository": {
"type": "git",
"url": "https://git.kernel.org/pub/scm/utils/dtc/dtc.git"
}
}
and execute pio pkg pack
inside it. See https://dl.registry.platformio.org/download/platformio/tool/tool-dtc/1.4.7/tool-dtc-linux_armv6l-1.4.7.tar.gz as the reference for the expected files.