mirror of
https://github.com/OpenRTX/OpenRTX
synced 2026-08-08 12:29:06 -04:00
In file cross_cm7.txt, the target cpu was wrongly identified as being Cortex M4. This does not affect compilation. Also, file cross_arm.txt was renamed cross_cm4.txt and folder build_arm was renamed to build_cm4. References to this were also updated.
19 lines
489 B
JSON
19 lines
489 B
JSON
{
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"context": "..",
|
|
"args": {
|
|
"BUILDKIT_STEP_LOG_MAX_SIZE": "10485760" // 10 MiB
|
|
}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-vscode.cpptools-extension-pack",
|
|
"mesonbuild.mesonbuild",
|
|
"ms-python.python"
|
|
]
|
|
}
|
|
},
|
|
"postCreateCommand": "meson setup --cross-file cross_cm4.txt build_cm4 && meson setup --cross-file cross_cm7.txt build_cm7 && meson setup build_linux"
|
|
}
|