Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
46 views

With (old) Eclipse CDT we could define templates under Preferences > C/C++ > Editor > Templates which could be inserted into the code using CTRL + SPACE shortcut. After upgrading to C++20 I ...
Mohith's user avatar
  • 105
0 votes
0 answers
47 views

On Wondows10 I have installed: xPack tools including @xpack-dev-tools/arm-none-eabi-gcc @xpack-dev-tools/clang @xpack-dev-tools/cmake @xpack-dev-tools/openocd @xpack-dev-tools/qemu-arm @xpack-dev-...
jozi's user avatar
  • 3
2 votes
0 answers
58 views

I'm using the Eclipse C/C++ formatter and run into an issue where it removes indents on line wrapping on the second save. For example I'll write some code: int array[] = {1, 2, 3, 4, 5, 6, 7, 8, 9}; ...
WilliB's user avatar
  • 21
1 vote
0 answers
57 views

I have downloaded the sources of systemd: https://github.com/systemd/systemd and am trying to configure Eclipse to eliminate the errors in the source files and to be able to navigate between functions ...
Tears4fears's user avatar
2 votes
0 answers
69 views

In a large C header file where defines many struct, like following, struct s1 { ... }; struct s2{ int var_1; int var_2; int var_3; ... int var_200; ... int var_500; }; struct s3{ ...
gx16's user avatar
  • 192
0 votes
0 answers
225 views

I was working with Eclipse and C++, using a configuration for Vulkan with the GNU toolchain, and I decided to try compiling in release mode. At this point, my debug configuration was working. I got my ...
Ithysaur's user avatar
0 votes
0 answers
49 views

The gdb version used is embedded in STM32CubeIDE, a customized version of the Eclipse IDE. The problem appears to be in the gdb launch: trying to execute even from the command prompt, positioned in ...
AdRiX's user avatar
  • 79
0 votes
0 answers
54 views

I'm working on a simple C++ project in Eclipse using the CDT language server. My code includes a basic template class, but when I hover over an auto variable deduced from a template method, the ...
J'e's user avatar
  • 3,886
0 votes
0 answers
54 views

I wish to come through a massive limitation of cross-compiling: Every single time I update my OS, it generates a newer binary requiring higher GLIBC version which is not able to run on my target ...
Daniel's user avatar
  • 2,734
0 votes
0 answers
26 views

my configuration like this: ubuntu 24.04 gcc 13.3.0 eclipse CDT 11.6.1 When running this: /data/py_envs/bin/python /data/Software/IDE/eclipse/plugins/org.python.pydev.core_12.2.0.202409031913/...
Alex Luya's user avatar
  • 10.1k
1 vote
0 answers
22 views

On MacOS using Eclipse with g++ and c++17 dialect. When trying to build my project there is an issue with the library. The library isnt found, which in turn doesn't let me include basic headers such ...
Jls Wlf's user avatar
  • 11
1 vote
0 answers
47 views

The following problem occurs when using eclipse CDT to debug C language in Ubuntu system: Whenever debugging enters the print line, an error program appears, causing debugging to be interrupted. As ...
user23343178's user avatar
1 vote
1 answer
476 views

I am using Eclipse CDT for embedded development. I installed Cppcheck and the Eclipse plugin cppcheclipse for static analysis. When I run cppcheck in the IDE it generates xml data in the console. I ...
tiger19tony72's user avatar
0 votes
1 answer
53 views

The project was moved from Eclipse 2020-12 to Eclipse 2023-09 and the indexer works fine in the 2020 version. It compiles in both versions. All the other standard containers (vector, list, etc) are ...
SaintJob 2.0's user avatar
1 vote
0 answers
18 views

when using the Eclipse auto format feature in C function calls the identation is messed up for me when I'm using a #define as function parameter. On the first hit of the auto format everything looks ...
Karl D.'s user avatar
  • 11
1 vote
0 answers
104 views

I am reading Mastering STM32 by Carmine Noviello and got to the chapter where I am about to work on the hello-nucelo project. I followed everything to the letter and still got the following error (see ...
atcoyb__'s user avatar
1 vote
1 answer
539 views

I installed Eclipse 2024-03 with the plugin to manage AVR MCUs. But when I try to indicate which MCU programmer I intend to use, using the Windows->Preference->AVR window, although I can see ...
SJB's user avatar
  • 105
0 votes
1 answer
130 views

I'm trying to run some example code for the with the DWM3000EVB board and STM32F429ZI Nucleo board. I'm working with a M1 mac (not sure if this matters). The API for the DWM3000EVB module: https://www....
Jeffrey Yang's user avatar
0 votes
0 answers
28 views

I use Eclipse 2023-12 and CDT 11.4. I experience the following behaviour: After I compiled a single file I start building the whole application, then it will always compile the just compiled file ...
Martin_from_K's user avatar
0 votes
1 answer
98 views

I'm building out some embedded tooling using the Espressif ESP-IDE (mostly based on Eclipse-CDT set up to use their toolchain). I've got enough run and debug configurations that I'd like to be able to ...
rsaxvc's user avatar
  • 1,795
0 votes
0 answers
180 views

In Eclipse, I’m looking at code which is essentially the same as the example posted in the codereview.SX question “C++17: Boost.Hana based compile-time plugin registration”, just condensed into one ...
Socob's user avatar
  • 1,314
1 vote
1 answer
205 views

When I create an enum, the members of it are in blue and italics in my code. I would like something similiar for a constexpr variable (C++ 14 or later). Is that possible somehow?
Martin_from_K's user avatar
0 votes
1 answer
64 views

For example, I have a header.h file which has a few value defined macro: #define MACRO1 value1 #define MACRO2 value2 I would like to parse these macros using Java CDT parser and store its name as ...
hyvuonggia's user avatar
1 vote
1 answer
181 views

After moving all my code to a new M2 MacBook, my old Eclipse 4.17 (2020-09) now flags string literal arguments as "Invalid Argument". I've since updated to the latest Eclipse 2023-06/AArch64&...
Danny's user avatar
  • 2,711
1 vote
2 answers
166 views

I try to use a build variable as a string in my C preprocessor code to make a compiler switch. Build variable: VER: A Preprocessor/Defined Symbol: VER=${VER} Code: #if VER == 'A' #define VERSION (1) #...
Rtk's user avatar
  • 11

1
2 3 4 5
67