On Tue, Jun 2, 2009 at 4:40 AM, STEVE555 <[email protected]> wrote: > > Hi everyone, > I'm having a problem installing Mesa from the git > repository from git. > I have seen some commits on the repository to using the option to use either > mintstall or autoconf,I usr the latter. > > I also compile D.R.M and the Nouveau drivers from git as well.As of today > I've pulled the latest commits from the repositories.I'm using Fedora Alpha > 11 Rawhide. > > The configure options I pass to autoconf are as follows: > [r...@localhost mesa]# CFLAGS="-O2 -g -pipe -m32 -march=athlon-xp > -mtune=generic" CXXFLAGS=$CFLAGS ./configure --prefix=/usr > --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin > --datadir=/usr/share --sysconfdir=/etc --includedir=/usr/include > --libdir=/usr/lib --libexecdir=/usr/libexec --localstatedir=/var > --mandir=/usr/share/man --docdir=/usr/share/doc --enable-selinux > --x-libraries=/usr/lib --enable-32-bit --enable-xcb --enable-gallium-nouveau > --with-x --with-dri-driverdir=/usr/lib/dri > --with-xorg-driver-dir=/usr/lib/xorg/modules/drivers > --with-state-trackers=dri,egl,xorg,glx --enable-motif --enable-gl-osmesa > --with-osmesa-bits=32 --disable-gallium-intel --disable-gallium-radeon > --with-expat=/usr/lib --with-demos=xdemos,demos,trivial,tests > > Then I use: CFLAGS="-O2 -g -pipe -m32 -march=athlon-xp -mtune=generic" > CXXFLAGS=$CFLAGS gamake > > Then I use CFLAGS="-O2 -g -pipe -m32 -march=athlon-xp -mtune=generic" > CXXFLAGS=$CFLAGS gmake install. > > The output has given me this error when I ran CFLAGS="-O2 -g -pipe -m32 > -march=athlon-xp -mtune=generic" CXXFLAGS=$CFLAGS gmake install: > > [r...@localhost mesa]# CFLAGS="-O2 -g -pipe -m32 -march=athlon-xp > -mtune=generic" CXXFLAGS=$CFLAGS gmake install > gmake[1]: Entering directory `/opt/mesa/src' > gmake[2]: Entering directory `/opt/mesa/src/glx/x11' > gmake -C ../../../src/mesa install-libgl > gmake[3]: Entering directory `/opt/mesa/src/mesa' > gmake[4]: Entering directory `/opt/mesa/src/mesa/x86' > gmake[4]: Nothing to be done for `default'. > gmake[4]: Leaving directory `/opt/mesa/src/mesa/x86' > gmake[4]: Entering directory `/opt/mesa/src/mesa/drivers' > gmake[5]: Entering directory `/opt/mesa/src/mesa/drivers/dri' > gmake[6]: Entering directory `/opt/mesa/src/mesa/drivers/dri/i810' > gmake[6]: INSTALL@: Command not found > gmake[6]: *** [../../../../../lib/i810_dri.so] Error 127 > gmake[6]: Leaving directory `/opt/mesa/src/mesa/drivers/dri/i810' > gmake[5]: *** [subdirs] Error 1 > gmake[5]: Leaving directory `/opt/mesa/src/mesa/drivers/dri' > gmake[4]: *** [default] Error 1 > gmake[4]: Leaving directory `/opt/mesa/src/mesa/drivers' > gmake[3]: *** [driver_subdirs] Error 2 > gmake[3]: Leaving directory `/opt/mesa/src/mesa' > gmake[2]: *** [install] Error 2 > gmake[2]: Leaving directory `/opt/mesa/src/glx/x11' > gmake[1]: *** [install] Error 1 > gmake[1]: Leaving directory `/opt/mesa/src' > gmake: *** [install] Error 1 > > Can someone tell me the correct syntax to install after I've finished > compiling Mesa? or is this a genuine bug?
configure.ac got updated. You have to run autoconf or "autoreconf -iv" or ./autogent.sh to regenerate configure and then run it again. -- Dan ------------------------------------------------------------------------------ OpenSolaris 2009.06 is a cutting edge operating system for enterprises looking to deploy the next generation of Solaris that includes the latest innovations from Sun and the OpenSource community. Download a copy and enjoy capabilities such as Networking, Storage and Virtualization. Go to: http://p.sf.net/sfu/opensolaris-get _______________________________________________ Mesa3d-dev mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mesa3d-dev
