I'm having issues with getting Wine64 to even install properly. I'm using an AMD 64 processor with Fedora 14 x64. When I try to get things working, here's what I get with the gcc: Touching configure... [root at Iceburgh gcc-svn]# cd .. [root at Iceburgh Iceburgh]# rm -rf gcc-build [root at Iceburgh Iceburgh]# mkdir gcc-build [root at Iceburgh Iceburgh]# cd gcc-build [root at Iceburgh gcc-build]# ../gcc-svn/configure --prefix=/usr/local/gcc --enable-languages=c --disable-bootstrap checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking target system type... x86_64-unknown-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether ln works... yes checking whether ln -s works... yes checking for a sed that does not truncate output... /bin/sed checking for gawk... gawk checking for gcc... no checking for cc... no checking for cl.exe... no configure: error: in `/home/Iceburgh/gcc-build': configure: error: no acceptable C compiler found in $PATH See `config.log' for more details. [root at Iceburgh gcc-build]# make make: *** No targets specified and no makefile found. Stop. Also, it can't find ./configure anywhere, and I have no idea where to tell it to go to find it. Ultimately, I'm trying to get DDO to work, but first I have to get Wine working. I'm a bit of a noob at this, so any help would be appreciated.
...kinda wish I could edit my previous post. There's a bit more that I should've mentioned. Here's the script I was using: #!/bin/sh # Build gcc from trunk # Enable just the C language (since that's all Wine needs) sudo apt-get build-dep gcc sudo apt-get install texi2html libgmp3-dev libmpfr-dev svn checkout svn://gcc.gnu.org/svn/gcc/trunk gcc-svn cd gcc-svn contrib/gcc_update cd .. rm -rf gcc-build mkdir gcc-build cd gcc-build ../gcc-svn/configure --prefix=/usr/local/gcc --enable-languages=c --disable-bootstrap make sudo make install Though I was using the su command instead of the sudo, since I didn't want to have to type in my pw every time I did something, so I edited the script accordingly. I've been following the instructions found at http://wiki.winehq.org/WineOn64bit#head-e391d376d4ff5752da25071fd1859e7b740fd886 for my distro, as well as http://forums.ddo.com/showthread.php?t=212618
On Thu, Jun 30, 2011 at 3:32 AM, Iceburgh69 <wineforum-user at winehq.org> wrote:> I'm having issues with getting Wine64 to even install properly. I'm using an AMD 64 processor with Fedora 14 x64. When I try to get things working, here's what I get with the gcc: > > > Touching configure... > [root at Iceburgh gcc-svn]# cd .. > [root at Iceburgh Iceburgh]# rm -rf gcc-buildUse gcc as supplied by Fedora. It should be gcc-4.4.5 or so and Wine should build with it (I'm using a Mac and it builds with gcc-4.2 as supplied by Apple.) There are reported warnings with gcc-4.6 and those are being worked by developers. Also, it is not necessary to build (and it is recommended against) Wine as root. root is only needed for installation (sudo make install.) James McKenzie