micro-ROS / micro-ROS/micro_ros_espidf_component
`libmicroros.a` is built with a hand-maintained toolchain file that may drift from IDF's compile flags (ABI mismatch risk)
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- C
- Sterne
- 419
- Forks
- 124
- Ø Merge
- 21 Std. 35 Min.
- Gemergte PRs (30 T.)
- 3
Beschreibung
From https://github.com/micro-ROS/micro_ros_espidf_component/pull/334#issuecomment-4829889550
The following content was generated by AI
Cause
micro-ROS is not built as regular IDF component sources. Instead, the component's CMake configure step invokes libmicroros.mk, which runs a separate colcon build to produce libmicroros.a, and the result is linked back into the ELF via add_prebuilt_library. This separate build uses its own toolchain file (esp32_toolchain.cmake.in) that only passes through a hand-picked subset of compile options (compiler binary, C standard, sdkconfig.cmake, IDF includes, a few hardcoded flags), rather than inheriting the full set of flags IDF applies to its own components.
Impact
Some ABI-affecting flags used by the main IDF build are not propagated to the micro-ROS sub-build, so libmicroros.a can be compiled with settings inconsistent with the rest of the firmware. Known gaps:
- RISC-V
-march/-mabiare not set (relies on compiler defaults) — a mismatch here breaks the calling convention/ABI. - PSRAM cache workaround flags (e.g.
-mfix-esp32-psram-cache-issue) are not forwarded. - The hardcoded flag list in
esp32_toolchain.cmake.inmust be kept in sync manually and can silently drift as IDF changes.
(Note: many flags like optimization level or stack protector are not ABI-breaking, so their absence is harmless — the concern is specifically the ABI/codegen-relevant ones.)
Because the same compiler is used and sdkconfig.cmake is included, most struct-layout / config-dependent mismatches are already avoided, so this is a latent risk rather than a guaranteed failure — but it can produce hard-to-debug link/runtime issues in specific configurations (e.g. SPIRAM enabled, certain RISC-V targets).
Possible fix
Keeping micro-ROS as a separately built static library is unavoidable (it depends on the ROS 2 / colcon / rosidl build system), so the goal is not to remove this mechanism but to make the sub-build inherit IDF's ABI-relevant flags instead of hardcoding a subset:
- Query the flags IDF actually uses for its components (e.g.
CMAKE_C_FLAGS/COMPILE_OPTIONS, especially RISC-V-march/-mabiand PSRAM-related flags) in the outerCMakeLists.txtand pass them throughlibmicroros.mkinto the toolchain file. - As a minimum/interim step, document the list of flags that are known not to be synced and must be verified manually.
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Rechercherichtung
Beginne mit esp32_toolchain.cmake.in, libmicroros.mk und der äußeren CMakeLists.txt, um nachzuverfolgen, wie die IDF-Kompilierungsflags den separaten colcon-Build erreichen. Vergleiche die von IDF-Komponenten verwendeten Flags mit denen, die an libmicroros.a übergeben werden, mit besonderem Augenmerk auf RISC-V-ABI- und PSRAM-Optionen. Als erledigt gilt die Aufgabe, wenn der Sub-Build die relevanten Flags ohne eine manuell auseinanderlaufende Liste erhält oder die nicht synchronisierten Flags ausdrücklich dokumentiert sind.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- c, cmake
- Bereich
- build-system, embedded-iot
- Issue-Typ
- Bug
- Schwierigkeit
- 4/5
- Geschätzter Aufwand
- 3-5 Tage
- Aktivitätsstatus
- Ruhig
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 48/100