Package Details: clion-lldb 1:2026.2-1

Git Clone URL: https://aur.archlinux.org/clion.git (read-only, click to copy)
Package Base: clion
Description: JetBrains packaged LLVM Debugger for CLion
Upstream URL: http://www.jetbrains.com/clion
Keywords: C C++ IDE JetBrains
Licenses: custom
Submitter: rdoursenaud
Maintainer: Zrax
Last Packager: Zrax
Votes: 248
Popularity: 2.51
First Submitted: 2015-04-14 21:23 (UTC)
Last Updated: 2026-07-16 16:00 (UTC)

Latest Comments

1 2 3 4 5 6 .. 12 Next › Last »

aliu commented on 2026-06-09 14:59 (UTC)

That was reverted. There is a clion-jre package.

starquake commented on 2026-06-08 06:33 (UTC) (edited on 2026-06-08 06:34 (UTC) by starquake)

@aliu: https://aur.archlinux.org/pkgbase/clion?O=10#comment-1027012

aliu commented on 2026-06-06 18:32 (UTC)

Is it possible to have a separate package for JBR, so that all the *-jre packages just symlink to that? Currently, by default, if you install multiple JetBrains IDEs using your wonderful AUR packages, they each bundle the same JBR files again.

Zrax commented on 2026-05-26 21:21 (UTC)

If you're using the external java-runtime instead of clion-jre, you will need to manually configure clion to use it: https://www.jetbrains.com/help/clion/switching-boot-jdk.html

Niinu commented on 2026-05-26 08:25 (UTC) (edited on 2026-05-26 08:26 (UTC) by Niinu)

After installation i get below error even if I have java-runtime installed.

Cannot start the IDE
Cannot find a runtime<br><br>Caused by:<br> Runtime not found<br><br>Please try to reinstall the IDE.<br>For support, please refer to https://jb.gg/ide/critical-startup-errors

gonciarz commented on 2026-02-12 19:49 (UTC) (edited on 2026-02-12 19:49 (UTC) by gonciarz)

diff --git a/.SRCINFO b/.SRCINFO
index 0e5fbef..9a8e896 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -20,7 +20,7 @@ pkgbase = clion

 pkgname = clion
        depends = libdbusmenu-glib
-       optdepends = clion-jre: JetBrains custom Java Runtime (Recommended)
+       depends = clion-jre
        optdepends = clion-cmake: JetBrains packaged CMake tools
        optdepends = clion-gdb: JetBrains packaged GNU debugger
        optdepends = clion-lldb: JetBrains packaged LLVM debugger
diff --git a/PKGBUILD b/PKGBUILD
index 36fc936..822480e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -43,9 +43,8 @@ build() {
 }

 package_clion() {
-    depends=('libdbusmenu-glib')
+    depends=('libdbusmenu-glib' 'clion-jre')
     optdepends=(
-        'clion-jre: JetBrains custom Java Runtime (Recommended)'
         'clion-cmake: JetBrains packaged CMake tools'
         'clion-gdb: JetBrains packaged GNU debugger'
         'clion-lldb: JetBrains packaged LLVM debugger'

carstene1ns commented on 2026-01-02 15:27 (UTC)

IMO the build() function should be renamed to prepare() and the full path in the .desktop file is unnecessary, since it is the default.

starquake commented on 2025-08-12 11:57 (UTC)

@munir0b0t: AFAIK it should take seconds, or maybe minutes. It's not actually building anything, just repackaging binaries into a pacman pkg.

I have however disabled compression of the packages in makepkg.conf because I don't use that much AUR packages so I'd rather have the speed instead of the disk usage.

Maybe the downloading is taking long?

munir0b0t commented on 2025-08-12 01:50 (UTC) (edited on 2025-08-12 01:58 (UTC) by munir0b0t)

How long does this package take to build typically? I have a decent enough system (8 cores, 8 GB RAM, 16 GB swap) and the package takes upwards of an hour to build with yay -Syu. Trying to figure out if that is expected or something's wrong with my system. Most of the time is spent compressing the package and in the rsync command.

Zrax commented on 2025-07-16 16:03 (UTC)

It seems some of those tools don't handle conditional dependencies very well... I've reverted the change to JRE bundling, and added a comment on the java-runtime dependency to point users to the JetBrains documentation around using an external JRE instead.