Re: /usr/src/sys/dev/aic7xxx errors when compiling

2004-02-13 Thread Andre Guibert de Bruet
On Wed, 11 Feb 2004, Didier Wiroth wrote: > Hi, thanks for answering > I'm using this in make.conf > COPTFLAGS= -O2 -pipe -funroll-loops > CFLAGS= -O3 -pipe -funroll-loops Don't: - optimize the base system above -O, it's not officially supported. - top post, it makes things harder to read. - cro

Re: /usr/src/sys/dev/aic7xxx errors when compiling

2004-02-12 Thread den
You are right - only COPTFLAGS used when you compiling the kernel. BUT YOU should note that when you compile the kernel you don't compile only it ! You also compile many modules . You have problem namely with module. So COPTFLAGS= -O2 -pipe -funroll-loops has affect only on kernel. But CFLAGS=

RE: /usr/src/sys/dev/aic7xxx errors when compiling

2004-02-12 Thread Didier WIROTH
> >Hi, thanks for answering > >I'm using this in make.conf > >COPTFLAGS= -O2 -pipe -funroll-loops > >CFLAGS= -O3 -pipe -funroll-loops Thx for answering. But... hmm..., I'm not using -O3 for the kernel, or at least I thought I wasn't!? When using COPTFLAGS in make.conf, isn't CFLAGS ignored when

Re: /usr/src/sys/dev/aic7xxx errors when compiling

2004-02-11 Thread Didier Wiroth
Hi, I've tried a few settings. I completly removed the coptflags and tried the following: 1)CFLAGS= -O3 -pipe -funroll-loops did not work 2) CFLAGS= -O2 -pipe -funroll-loops did not work 3) CFLAGS= -O -pipe -funroll-loops did not work 4) CFLAGS= -O -pipe did not work The

Re: /usr/src/sys/dev/aic7xxx errors when compiling

2004-02-11 Thread den
mple sloution : change CFLAGS= -O3 -pipe to CFLAGS= -O2 -pipe Didier Wiroth wrote: Hi, thanks for answering I'm using this in make.conf COPTFLAGS= -O2 -pipe -funroll-loops CFLAGS= -O3 -pipe -funroll-loops Messages d´origine De: den <[EMAIL PROTECTED]> Date: mercredi, fé

Re: /usr/src/sys/dev/aic7xxx errors when compiling

2004-02-11 Thread Roop Nanuwa
Didier Wiroth wrote: Hi, thanks for answering I'm using this in make.conf COPTFLAGS= -O2 -pipe -funroll-loops CFLAGS= -O3 -pipe -funroll-loops Messages d´origine De: den <[EMAIL PROTECTED]> Date: mercredi, février 11, 2004 6:56 pm Objet: Re: /usr/src/sys/dev/aic7xxx

Re: /usr/src/sys/dev/aic7xxx errors when compiling

2004-02-11 Thread Didier Wiroth
Hi, thanks for answering I'm using this in make.conf COPTFLAGS= -O2 -pipe -funroll-loops CFLAGS= -O3 -pipe -funroll-loops Messages d´origine De: den <[EMAIL PROTECTED]> Date: mercredi, février 11, 2004 6:56 pm Objet: Re: /usr/src/sys/dev/aic7xxx errors when compiling >