Package Details: kdevelop-git 24.01.80.r6.g362094770a-1

Git Clone URL: https://aur.archlinux.org/kdevelop-git.git (read-only, click to copy)
Package Base: kdevelop-git
Description: A C/C++ development environment for KDE. (Git version)
Upstream URL: http://www.kdevelop.org
Licenses: GPL
Conflicts: kdevelop, kdevplatform
Provides: kdevelop, kdevplatform, kdevplatform-git
Replaces: kdevplatform-git
Submitter: mosra
Maintainer: SolarAquarion
Last Packager: SolarAquarion
Votes: 84
Popularity: 0.000000
First Submitted: 2010-05-05 21:15 (UTC)
Last Updated: 2023-12-11 01:20 (UTC)

Dependencies (42)

Required by (6)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 .. 13 Next › Last »

sl1pkn07 commented on 2015-10-26 20:08 (UTC)

disown this and kdevplatform-git and kdevelop-pg-qt-git greetings

sl1pkn07 commented on 2015-10-13 20:31 (UTC)

done(?)

ljrk commented on 2015-10-13 20:00 (UTC)

llvm needed for /usr/bin/llvm-config

stativ commented on 2015-10-09 18:04 (UTC)

kdev-clang has replaced oldcpp in kdevelop master! Yay!

sl1pkn07 commented on 2015-09-11 13:35 (UTC)

try update kdevplatform-git

gabmen commented on 2015-09-11 08:23 (UTC)

Currently not compiling, failing when encountering calls to obsolete Qt functions (e.g. qLowerBound()). Maybe the current qt package (5.5.0-2) was compiled without support to obsolete members?

sl1pkn07 commented on 2015-08-17 19:29 (UTC)

fixed in upstream (?)

amgo100 commented on 2015-08-16 09:45 (UTC)

Kdevplatform in repo is now incompatible with current subversion. To skip building subversion plugin add -DBUILD_subversion=OFF to cmake configuration.

yochai commented on 2015-07-21 10:23 (UTC)

Update: I've rebuilt both kdevelop-git and kdevplatform-git and it seems that was it fixed. Working perfectly again.

yochai commented on 2015-07-17 14:19 (UTC)

Sorry for the untimely reply. After removing every extension for kdevelop and opening a new session I can load the program. However, once I try to load a c file with local folder include ("name.h") it crashes. Tried to replace '"' with '<' (should work) and it still crashes. For example, try to create the following files: test.c #include "test.h" #include <stdio.h> void test_it() { printf("it's working"); } test.h #ifndef TEST_IT_H #define TEST_IT_H void test_it(); #endif main.c #include "test.h" void main() { test_it(); } You can compile it with gcc, but trying to open those files with kdevelop and it crashes.