Any web environment and Java IDE for ARM architecture on Linux?

I am currently running Debian Linux on an ARMv7 microprocessor (just like my Android phone .;)) this is really great, without a single problem. With a surprisingly large amount of hand-compiled application support compared to many other linux-based distributions.

I would like to use it for some web development, as well as for programming and compiling Java, but I had trouble finding any IDE that is either architecturally independent or compiled for the ARM processor.

I am very interested in IntelliJ IDEA. But I can't figure out if it is architecturally independent or just x86 support.

I also believe that Netbeans is ready and compiled for NetBeans, but I am not a big user, so I would prefer to use one of those that I use more often. but if it comes to him, and he supports the hand, I will definitely use it.

So what do you know about people? Are there any programs that are compiled for hands that are suitable for this purpose? or am I stuck with Wim or something like that?

+6
source share
3 answers

Well, it never hurts to try :)

Have you downloaded the JRE for ARM from http://www.oracle.com/technetwork/java/embedded/downloads/javase/index.html ? Get it and download IntelliJ 11 Community Edition for Linux and let it work.

+2
source

On Samsung’s Chromebook, Samsung’s Eclipse runs on Crouton and Ubuntu. At the command prompt, type:

sudo apt-get install eclipse 

Ubuntu will automatically install Java JDK 6 for the hand. Replacing it with Oracle JDK 8 for Arm will improve performance

Alternatively, when using Chroagh and Arch Linux, Intellij Idea works. At the command prompt, type:

 cd /usr/lib sudo ln -s libgif.so libgif.so.4 pacman -S intellij-idea-community-edition 

Intellij Idea installs using Open-JDK7 for ARM, but you can replace it with Oracle JDK8 for ARM.

Finally, I could not install the Android-Studio or Android SDK for Eclipse on Ubuntu or Arch. We continue to search for this solution.

+2
source

It is still a little early to use ARM desktop hardware for development, even if hw is now strong enough.

I managed to run several larger Swing applications on my Chromebook XE303C under Ubuntu 12.04 (OpenJDK7 and now Oracle JDK (for ARM / Linux 8 EA), but I did not have much success with the Java IDE.

Netbeans 7.3 does not start on both JREs after the splash screen.

Eclipse is in the repositories, so it can work. (I'm a Netbeans guy, so I haven't tried)

0
source

Source: https://habr.com/ru/post/922533/


All Articles