Skip to content

Releases: zephyrproject-rtos/eclipse-plugin

v0.2.99-20220329: build: fix getting cmake_c_compiler from cache

29 Mar 21:24
Compare
Choose a tag to compare
CMakeCache.txt is showing CMAKE_C_COMPILER as a STRING instead of
FILEPATH the first time that we build from plugin. When plugin retrieves
cache information, it is failing to recover CMAKE_C_COMPILER, and
triggering an exception during build. Searching for STRING if FILEPATH
is not found solves the issue.

Signed-off-by: Marta Navarro <[email protected]>

v0.2.99-20220317: build: fix getting cmake_cxx_compiler from cache

17 Mar 19:11
Compare
Choose a tag to compare
CMakeCache.txt is showing CMAKE_CXX_COMPILER as a STRING instead of
FILEPATH. When plugin retrieves cache information, it is failing to
recover CMAKE_CXX_COMPILER, and triggering and execution during build.
Searching for STRING if FILEPATH is not found solves the issue.

Signed-off-by: Marta Navarro <[email protected]>

v0.2.99-20200924: Update JTAG devices for CDT 10

25 Sep 04:53
Compare
Choose a tag to compare
CDT 10 no longer uses DefaultGDBJtagDeviceImpl but instead
DefaultGDBJtagConnectionImpl. The new class uses URI for
connection instead of separate host/port fields. So update
the debugger tab and all JTAG device classes.

Fixes #35

Signed-off-by: Daniel Leung <[email protected]>

v0.2.99-20200916: Update how West is invoked

16 Sep 18:01
Compare
Choose a tag to compare
Zephyr has changed how West is being invoked, and now West can be
invoked by running Python directly instead of the west executable.
This needs some tweaking on how West is invoked in the plugin.

Signed-off-by: Daniel Leung <[email protected]>

v0.2.99-20200731

31 Jul 17:17
Compare
Choose a tag to compare
Add openipc runner for debugging

Adding openipc runner on debug configuration to launch openipc through
west debugserver

Signed-off-by: Marta Navarro <[email protected]>