good debugger for os161 like IntelliJ IDEA - os161

I'm using os161 and I don't find beautiful debugger like IntelliJ IDEA
Have you some idea?
I have tried gdb, ddd and gdb with emacs but they are not good as IntelliJ

Related

How to add a break point in Intelij IDEA to debug Rust code

I have installed Intellij IDEA on ubuntu with Rust plugin.
How to add a break point in Intellij IDEA to debut RUST code.
Do I need any additional plugin?
Debugging Rust code is available in CLion, IntelliJ IDEA Ultimate, PyCharm Professional, and GoLand. For IntelliJ IDEA Ultimate, PyCharm Pro, GoLand it is required to install the Native Debugging Support
plugin.
See plugin's documentation for more information: Debugging.
no need for extra plugins just add them like you would do in java (left click right of the number). but in order to debug (apply them) you'll need Native Debugging Support (i believe the ide autosuggests this plugin on the first debug run)

Adding Krangl SDK to IntelliJ Idea

I am new to Kotlin and IntelliJ Idea IDE.
I want to experiment with Krangl. But how do I add that SDK to my IntelliJ Idea IDE. In C# there is Nuget and on Mac cocoapods.
I know this is a very noob question, but I cannot find a solution that is apparent to me. I am C#/.NET/MS developer looking to get my feet wet in this new world.
There is no Gradle in the IntelliJ Idea IDE as far as I can see. Just Maven and Ant.
For sure there is Gradle in IntelliJ: https://www.jetbrains.com/help/idea/getting-started-with-gradle.html
So, you can either use Gradle or Maven. Or you could also add the jar as a dependency to your project, but I won't recommend this.

running and debugging play project from intellij using gradle

Can you explain of to run and debug a play project from intellij using gradle
with scala?
(The simplest solution of hello world).
Thanks

IntelliJ IDEA for multiple languages or one IDE for each?

I was working with PHPStorm on some PHP projects and I liked it a lot. Now I have to find an IDE for Python and since I like PHPStorm I was looking at PyCharm and IntelliJ IDEA. I’m not sure which way to go. It seems compelling to give up PHPStorm and put both PHP and Python into IntelliJ IDEA. But I’m not very sure if it is clever to choose one IDE for multiple environments.
I'm afraid that a configuration of multiple environments inside a single IDE may overload the IDE and that the configured environments interfere with each other in unwanted or bothering ways.
On top of that IntelliJ IDEA comes with a lot of Java stuff preinstalled, which I do not need. If I have to keep the Java stuff inside the IDE the case gets even worse...
So right now I have no clue which way to go..
Can someone with experience elaborate on that please?
IntelliJ does depend on a JRE (so does Pycharm and PHPStorm), but other than that it doesn't bring a lot of "Java stuff" with it unless you add it via the plugins. It should be sufficient to download IntelliJ Ultimate and then add the PHP and Python plugins and have the desired experience of PHPStorm and PyCharm combined.
However it may be cheaper to just purchase PyCharm instead of IntelliJ ultimate, https://www.jetbrains.com/idea/features/editions_comparison_matrix.html The community edition doesn't support the Pycharm plugin.

Playframework 2.2.0-M1 and idea ide

I em installed scala plugin and play2 plugin in my "idea12". I entered in play console "idea" command.
project launched, but method "ok()" dont work, ide offers me a method to do it again.
img here
Please help me. I like idea and other ide not to my liking. Eclipse disgusting works with scala templates.
You use a wrong name. The status methods are CamelCased: Ok instead of ok.