Re: [Slackbuilds-users] Desmume on 64-bit - optimization flag

2013-01-23 Thread Tim Dickson
On 23/01/2013 07:21, Matteo Bernardini wrote: I lied (previous versions are fails) SLKCFLAGS=${SLKCFLAGS:--O2} LIBDIRSUFFIX= [ $(uname -m) = x86_64 ] SLKCFLAGS=$SLKCFLAGS -fPIC LIBDIRSUFFIX=64 [ $ARCH = i486 ] || [ $ARCH = native ] SLKCFLAGS=$SLKCFLAGS -march=$ARCH [ $ARCH = i486 ] || [

Re: [Slackbuilds-users] Desmume on 64-bit - optimization flag

2013-01-23 Thread Matteo Bernardini
2013/1/23 Tim Dickson dickson@googlemail.com On 23/01/2013 07:21, Matteo Bernardini wrote: I lied (previous versions are fails) SLKCFLAGS=${SLKCFLAGS:--O2} LIBDIRSUFFIX= [ $(uname -m) = x86_64 ] SLKCFLAGS=$SLKCFLAGS -fPIC LIBDIRSUFFIX=64 [ $ARCH = i486 ] || [ $ARCH = native ]

Re: [Slackbuilds-users] Percona XtraBackup

2013-01-23 Thread Heinz Wiesinger
On Wednesday 23 January 2013 11:40:14 Veljko wrote: Hi! I compiled percona-xtrabackup.Slackbuild and all looks fine, until I try to backup database with innobackupex command. I'm getting this error: sh: xtrabackup_51: command not found innobackupex: fatal error: no 'mysqld' group in MySQL

Re: [Slackbuilds-users] Percona XtraBackup

2013-01-23 Thread Veljko
On Wed, Jan 23, 2013 at 12:10:25PM +0100, Heinz Wiesinger wrote: This is an issue in the Slackbuild, but fixing it might take some tinkering. For the time being you can use xtrabackup itself, which works fine on my system. Thanks Heinz, will do that. Regards, Veljko

Re: [Slackbuilds-users] Desmume on 64-bit - optimization flag

2013-01-23 Thread Matteo Bernardini
Hi J, I tried to adapt the line to take in account Eric's advices SLKCFLAGS=${SLKCFLAGS:--O2} LIBDIRSUFFIX= [ $(uname -m) = x86_64 ] [ ! $(echo $PATH | grep ^\/usr\/bin\/32) ] SLKCFLAGS=$SLKCFLAGS -fPIC LIBDIRSUFFIX=64 [ $ARCH = i486 ] || [ $ARCH = native ] SLKCFLAGS=$SLKCFLAGS -march=$ARCH [

Re: [Slackbuilds-users] Desmume on 64-bit - optimization flag

2013-01-23 Thread Chris Farrell
Hi lmello Are you using slackware again? I was going to offer you a trade; your gpodder SBo for my gpodder3 AUR. I was thinking of leaving arch for crux. tim cowchip Chris On Tue, Jan 22, 2013 at 3:45 AM, Luis Henrique Mello lmello@gmail.comwrote: Hi, I've noticed that adding '-msse3' to

Re: [Slackbuilds-users] Desmume on 64-bit - optimization flag

2013-01-23 Thread Luis Henrique Mello
Hi Cris! I'm actually using BOTH... arch on a notebook and slackware on a desktop. I need two computers to 'train' my IT skills. And I just lve GNOME 3 - arch is the only distribution which ships GNOME 3 and *doesn't* split libraries and headers on their packages (who was the fucktard

Re: [Slackbuilds-users] Desmume on 64-bit - optimization flag

2013-01-23 Thread xgizzmo
On Wednesday 23 January 2013 10:01:12 Matteo Bernardini wrote: Hi J, I tried to adapt the line to take in account Eric's advices SLKCFLAGS=${SLKCFLAGS:--O2} LIBDIRSUFFIX= [ $(uname -m) = x86_64 ] [ ! $(echo $PATH | grep ^\/usr\/bin\/32) ] SLKCFLAGS=$SLKCFLAGS -fPIC LIBDIRSUFFIX=64 [

Re: [Slackbuilds-users] Desmume on 64-bit - optimization flag

2013-01-23 Thread Kyle Guinn
On 1/23/13, xgiz...@slackbuilds.org xgiz...@slackbuilds.org wrote: I think all that would be needed is to add a line after the $SLKCFLAGS block. if [ -n $RICER_FLAGS ]; then SLKCFLAGS=$RICER_FLAGS; fi Then run your build RICER_FLAGS=-enable-more-fruitloops ./some.SlackBuild --dsomero :)

Re: [Slackbuilds-users] Desmume on 64-bit - optimization flag

2013-01-23 Thread J Pipkin
On 2013-01-23 09:01, Matteo Bernardini wrote: Hi J, I tried to adapt the line to take in account Eric's advices SLKCFLAGS=${SLKCFLAGS:--O2} LIBDIRSUFFIX= [ $(uname -m) = x86_64 ] [ ! $(echo $PATH | grep ^/usr/bin/32) ] SLKCFLAGS=$SLKCFLAGS -fPIC LIBDIRSUFFIX=64 [ $ARCH = i486 ] || [ $ARCH =

Re: [Slackbuilds-users] Desmume on 64-bit - optimization flag

2013-01-23 Thread Matteo Bernardini
A small thought: the problem setting ARCH=native is that the final package will be called something like foo-1.1-native-1_SBo, while it should have a name dependant on the minimum CPU where it will run (like Stuart is doing on arm). To get the CFLAGS selected by -march=native, for a possible use