On Tue, Feb 27, 2007 at 10:19:33AM +0100, Alexandr Dubovikov wrote: > > I'd like to bring up this topic again before too late: I am using an > > openSuSE 10.2 system with > > ----------- > > [EMAIL PROTECTED]:~> gcc --version > > gcc (GCC) 4.1.2 20061115 (prerelease) (SUSE Linux) > > ----------- > > on a machine; compilation of a fresh SVN checkout still fails due to > > this reason. I guess this should be fixed before 1.2... > > value x86_64 for gcc 4.x.x is not in use anymore > You should use x86-64 instead of x86_64. > > > Bogdan, I think better way to fix it in Makefile.defs: > > > --- openser-1.1.1-notls/Makefile.defs.orig 2007-01-22 13:16:11.000000000 > +0100 > +++ openser-1.1.1-notls/Makefile.defs 2007-02-27 10:13:32.000000000 > +0100 > @@ -569,7 +569,7 @@ ifeq ($(CC_SHORTVER), 4.x) > CFLAGS+=-minline-all-stringops \ > -falign-loops \ > -ftree-vectorize \ > - -mtune=$(CPU) > + -mtune=$(shell echo > $(CPU) |sed -e 's/x86_64/x86-64/' ) > else > #if gcc 3.4 > ifeq ($(CC_SHORTVER), 3.4) >
ooops sorry, for Intel processer should be "nocona" -mtune=$(shell echo $(CPU) |sed -e 's/x86_64/nocona/' ) Wbr, -- Alexandr Dubovikov * [EMAIL PROTECTED] RusNet * mailto:[EMAIL PROTECTED] AD1-UANIC * ICQ: 122351182 * http://www.start4.info _______________________________________________ Devel mailing list [email protected] http://openser.org/cgi-bin/mailman/listinfo/devel
