You are not logged in.

#876 2011-03-27 11:34:02

flamelab
Member
From: Athens, Hellas (Greece)
Registered: 2007-12-26
Posts: 2,160

Re: kde-snapshot repo

I personally wait for the first rc of the .39 kernel in order to test the upgraded nouveau driver. It works surprisingly well with OpenGL ES.

Offline

#877 2011-03-27 11:43:24

cyber_fusion
Member
Registered: 2008-06-25
Posts: 11

Re: kde-snapshot repo

Akonadi problem fixed, I was using qt-debug which hadn't been updated and conflicted with the new mysql. Thanks

Offline

#878 2011-03-27 12:05:59

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

I have now Desktop Effects running: After removing every config I found and reboot it worked wink

Would be fine if next release could include EGL && OGL (maybe compiled with GCC 4.6 wink )

Last edited by benneque (2011-03-27 12:09:17)

Offline

#879 2011-03-27 17:54:20

csslayer
Member
Registered: 2009-03-05
Posts: 85

Re: kde-snapshot repo

seems everybody use nvidia.
so I came with an ati report:
default kernel, mesa-git
OpenGL vendor string: X.Org                                                                                                                                                     
OpenGL renderer string: Gallium 0.4 on AMD RV620                                                                                                                                 
OpenGL version string: 2.1 Mesa 7.11-devel                                                                                                                                       
OpenGL shading language version string: 1.20 

Effect works quite well, althought need some adjust (openglisunsafe = false).

Offline

#880 2011-04-01 15:17:29

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

When will we get our next update? *beg*

Offline

#881 2011-04-01 15:49:56

ProgDan
Member
From: Prague, Czech Republic
Registered: 2007-10-04
Posts: 441
Website

Re: kde-snapshot repo

benneque wrote:

When will we get our next update? *beg*

Sorry, I've been busy this week. I'll make a new snapshot during next week wink

Btw, I've tested Gnome3 in work this week and I must say that I'm really really happy that we have something as godamn cool as KDE smile You remember people crying about lack of usability and stability of KDE4? What a piece of crap it was? Well, I tried Gnome Shell and after like 20 minutes, when I really wanted to start doing some work again I realized that I'll rather revert to Gnome2 smile. The only thing which is better in Gnome3 then was in KDE4.0 is, that Gnome3 is really very stable. I think it's because they've removed so many features, that there's actually nothing to crash...:)

Offline

#882 2011-04-01 18:40:54

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

No problem. Is there somewhere a wiki how to simply generate my own KDE packages? I'd like to use GCC 4.6 with -Ofast and native architecture wink
You compile with O2 and generic, right? GCC 4.5?

Offline

#883 2011-04-01 22:02:53

ProgDan
Member
From: Prague, Czech Republic
Registered: 2007-10-04
Posts: 441
Website

Re: kde-snapshot repo

benneque wrote:

No problem. Is there somewhere a wiki how to simply generate my own KDE packages?

git clone git://gitorious.org/kde-snapshots-repo

Adjust you CXXFLAGS in /etc/makepkg.conf and run create-sources and then build-packages script. But beware that you will probably need to do some hacking in order to successfully compile tha packages. And I admit that the scripts are little messy, since I mostly do "write-only" bashing wink

benneque wrote:

I'd like to use GCC 4.6 with -Ofast and native architecture wink
You compile with O2 and generic, right? GCC 4.5?

GCC 4.6 was pushed to repos just after I compiled the last snapshot, but the next one will be built by GCC 4.6. I'll consider -Ofast, but I really can't build architecture specific packages of course smile

Offline

#884 2011-04-01 22:21:53

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

Yeah, cool!
Up-to-date packages with up-to-date opcode big_smile

What were your last C(XX)FLAGS ?

EDIT: Do you know what flags and compiler version the "normal" Arch Package maintainers use?

Last edited by benneque (2011-04-01 22:24:21)

Offline

#885 2011-04-02 00:40:55

ProgDan
Member
From: Prague, Czech Republic
Registered: 2007-10-04
Posts: 441
Website

Re: kde-snapshot repo

I use these for x86_64:

CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe"
CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe"

For i686 just replace the x86_64. The same flags and settings are used for official packages too.

It's a drawback of binary distributions, that you need to build the code in way which is compatible with as much processor archs and families as possible. On the other hand, it saves lot of time and it's greener smile I'll take a look on what's new in GCC 4.6 and try to apply as much optimizations as possible without loosing compatibility or performance on other archs.

Offline

#886 2011-04-02 06:54:21

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

New in GCC 4.4 (or was it 4.5) was: parallelization-optimization (it's called "Graphite"). Flags are:
-floop-interchange
-floop-strip-mine
-floop-block
-floop-parallelize-all
-fgraphite-identity

It takes a LOT more time to compile and I can say that I doesn't give anything to user-experiece. The desktop feels the same. Maybe benchmarks could give some information about performance increase wink

In GCC 4.6 (and partly in 4.5) there was LTO, the link time optimizer. In 4.5 it was extremely unusable and now in 4.6 it's a bit better, but you shouldn't use it. IF it works, it works pretty well. But in Gentoo Forums many people said, that it'll compile fine and afterwards 20-30% of your applications segfault sad
The other new thing in GCC 4.6 is -Ofast. It's O3 + ffast-math. Should be just fine for a desktop smile I've always used O3 in Gentoo and never had problems.
-ffast-math should be okay, too. We will see. smile


EDIT: IMPORTANT:
PLEASE compile with Opengl and Opengl ES (it's possible, right?!, maybe it's also possible to switch between them. I've regocnized massive problems with nouveau and 2 outputs an my notebook (Geforce 9600m GT), when trying to add a 2nd screen via HDMI and krandrtray my notebook screen is flipped (bottom-top) but the mouse is still unflipped big_smile , no output on HDMI...

Last edited by benneque (2011-04-02 17:13:05)

Offline

#887 2011-04-05 20:43:49

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

Just wanted to remind you: We need our bi-weekly update wink

Offline

#888 2011-04-08 18:15:29

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

No news are bad news sad
What's up with you and the repo?

Offline

#889 2011-04-08 21:18:56

ProgDan
Member
From: Prague, Czech Republic
Registered: 2007-10-04
Posts: 441
Website

Re: kde-snapshot repo

benneque wrote:

No news are bad news sad
What's up with you and the repo?

Sorry, this was a hell of a week, much more work then I expected and an exam in school today. The repo will be updated during the weekend (unless something supernatural happens).

Offline

#890 2011-04-08 23:09:40

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

Oh okay, let's hope for a good mark smile

new networkmanager and knetworkmanager have arrived in Arch. I think it now uses system connection. I hope the next snapshot update will bring a few fixes for this (autoconnect doesn't really work)

Offline

#891 2011-04-09 07:40:20

Zom
Member
From: Sweden
Registered: 2007-10-27
Posts: 430

Re: kde-snapshot repo

benneque wrote:

Oh okay, let's hope for a good mark smile

new networkmanager and knetworkmanager have arrived in Arch. I think it now uses system connection. I hope the next snapshot update will bring a few fixes for this (autoconnect doesn't really work)

Do you really need network manager though? Personally, I just use wicd and wicd-client-kde from AUR.

Offline

#892 2011-04-09 11:05:10

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

Maybe I don't "NEED" it, but it should be more practical for university. Cause there I need Cisco VPN and WLAN authentification using 802.1x (or something with a similiar name big_smile )
And NetworkManager is right now the standard network managing tool, used by all big distributions wink

Offline

#893 2011-04-11 19:32:02

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

kde-snapshots/kdesupport-phonon-gstreamer 4.6.42git20110305-1 -> 4.6.42git20110407-1

it says that my local version is newer than the update ?! why?

Offline

#894 2011-04-11 19:32:16

ProgDan
Member
From: Prague, Czech Republic
Registered: 2007-10-04
Posts: 441
Website

Re: kde-snapshot repo

So, boys....the repo was finally updated. Sorry for the delay. The thruth is, that I got terribly drunk yesterday and I got that great idea that I could rewrite the script for checking out sources...It actually ended up pretty well, but took me lot of time today to make it really working...:) And of course I managed to break most of the other scripts last night, so I had to fix them too smile

In order to properly update you have to run pacman -Sy kde-snapshots. pacman -Syu won't work, beacause I made a typo in the previous version number and it's is actually bigger then the recent one (there's one extra zero in the previous snapshot git version number).

Ad NetworkManager: this will be probably quite disappointing for benneque: the 0.9 prerelease which recently hit official repos is incompatible with the stable 0.8 (some API changes) and KDE does not have support for it yet. I had to do some little hacking in order to make the KNetworkManager-0.8 built against the new NetworkManager and I seriously doubt it will really work...

For now I'm keeping the old packages in the repo, so if something will be broken (and I expect it to be, I just didn't run into any problem yet smile ), you can safely downgrade.

I'll try to make a new and better snapshot soon. smile I'm really sorry guys ...

Offline

#895 2011-04-11 19:51:40

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

No problem at all wink
We all know that especially after exams you have to drink beer for (examtime)^2 hours, to get back to life wink

NetworkManager kinda works with 0.9, mostly I have to reenable networking, but then it connects.


You didn't say anything about CFLAGS and OpenGL / ES wink

Offline

#896 2011-04-11 20:05:46

ProgDan
Member
From: Prague, Czech Republic
Registered: 2007-10-04
Posts: 441
Website

Re: kde-snapshot repo

The CFLAGS on x86_64 are -march=x86-64 -mtune=generic -Ofast -pipe, on i686 it's -O2 instead of -Ofast, simply because I forgot to change it, but I set it already, so in the next snapshot will be there. OpenGL ES is still the same. As far as I know, turning on OpenGL when having OpenGL ES is not possible (????) but I didn't study it really, because I hadn't noticed your edit smile

Offline

#897 2011-04-11 20:21:40

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

Cool, so I'll have -Ofast big_smile
did you recognize any performance improvement?

I don't know about GL and ES at the same time.

Offline

#898 2011-04-11 20:23:09

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

post 2 of a tipple-post

Last edited by benneque (2011-04-11 20:33:45)

Offline

#899 2011-04-11 20:31:13

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

EDIT: sorry, server was down. So I pressed F5 sad

Last edited by benneque (2011-04-11 20:33:10)

Offline

#900 2011-04-11 20:56:54

benneque
Member
Registered: 2011-03-19
Posts: 53

Re: kde-snapshot repo

Okay, now I have a problem with NM ...

When 0.9 update came I had to make all connections as system connections. So NM connects. The applet says "invalid state".

How can I downgrade that it works again?

Offline

Board footer

Powered by FluxBB