Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Semyon Kolton
Total activity
20
Last activity
July 21, 2023 10:30
Member since
November 19, 2018 12:37
Following
0 users
Followed by
0 users
Votes
2
Subscriptions
9
Activity overview
Articles (0)
Posts (0)
Comments (9)
Semyon Kolton
commented,
July 21, 2023 10:30
Do you need the full text of the errors reported by the compiler or just the status of the build process? In general, CLion doesn't provide an API to get the exact build errors, reported by the com...
Community
CLion
How to access build errors in CLion via Plugin
0 votes
Semyon Kolton
commented,
July 19, 2022 08:47
Hi Manuel! CLion doesn't use compilation database (`compile_commands.json`) when working with CMake project. To read project model from CMake, CLion uses CMake file-based API. And interaction with ...
Community
IntelliJ IDEA Open API and Plugin Development
CLion plugin: Get access to compilation database
0 votes
Semyon Kolton
commented,
May 28, 2020 10:35
Hi, Can you please try compiling any C++ file using MinGW gcc directly from command line? For this you have to first add path to MinGW bin directory into PATH variable. E.g. using this command `set...
Community
CLion
My clion's cmake occurs error
0 votes
Semyon Kolton
commented,
March 10, 2020 09:56
Hi Dean, Thanks for your compilation command! I was able to reproduce and analyze the problem. The core problem is in `-MD` flag that forces GCC to generate dependency file `compiler-file*.d` while...
Community
CLion
How can I clean up the compiler-file*.d files from the compilation database?
0 votes
Semyon Kolton
commented,
February 25, 2020 09:00
Official comment
CLion is using information from CMake to infer what executable file to use when launching run configuration. I'm not sure, but I have a strong suspicion that your problem is caused by fix for this ...
Community
CLion
CLion run configuration picks the wrong file for executable
0 votes
Semyon Kolton
commented,
June 14, 2019 09:34
@Brunoakiraota hi, There's "Error -1073741819" in your CMakeError.log. Looks like in fact, it is "Error 5" (hex conversion helps) which is "Access denied". You can look at this question on StackOve...
Community
CLion
The C compiler is not able to compile a simple test programm
0 votes
Semyon Kolton
commented,
May 28, 2019 13:26
Hi, You can try implementing `RunConfigurationExtensionBase` and overriding `patchCommandLine()` where you would prepend `GeneralCommandLine` with whatever you require. I believe it would be the be...
Community
IntelliJ IDEA Open API and Plugin Development
How do I make a custom runner that launches a configuration with a custom command-line prefix?
0 votes
Semyon Kolton
commented,
February 25, 2019 12:13
Hi, It depends on what you mean under "current" toolchain. If you mean "default" toolchain - toolchain that is specified first in the list on "Toolchains" settings page. Then you can do this by usi...
Community
IntelliJ IDEA Open API and Plugin Development
Get current toolchain in clion
1 vote
Semyon Kolton
commented,
November 19, 2018 12:37
Hi, Vladimir is correct - CidrBuildListener was introduced only in 2018.3. Dmitry, you could try using it - it should solve your problems.
Community
IntelliJ IDEA Open API and Plugin Development
CLion: CompilerManager.addBeforeTask/addAfterTask alternative
0 votes