Wine WOW64 compile - newbie here
Wine WOW64 compile - newbie here
So i recently came to linux mint and now want to use wine mostly for wc3. But it seems like i have to compile a more recent version (1.3.4) to play online. Since i never compiled anything i would appreciate if anyone can guide me through :)
wineinstall is a tool that runs the commands you need for you. If you wish to have a little bit more of control, just type thus in the wine folder:
This will check if your system has what it takes to build wine. At the end it may let you know that there are some extra pieces of software you'll want to install, like openal. If you want to install them, install the -dev versions of the packages via synaptic. Then rerun
If everything went well start to compile wine by typing
wait until it finishes. When it's done type:
to install the compiled binaries in your system. If later you'll want to build a new wine version, or install the version from the repos, type in the wine folder:
That's pretty much all there is to do.
Code: Select all
./configure
Code: Select all
./configure
Code: Select all
make
Code: Select all
sudo make install
Code: Select all
sudo make uninstall
-
- Moderator
- Posts: 1153
- Joined: Wed Apr 27, 2011 11:01 pm
Wine WOW64 compile - newbie here
On 7/4/11 3:03 PM, Astarotte wrote:
for missing packages.
overwriting what you already have. The main wine executable should be
in the bin directory where you built wine. Do the following after you
run make:
This should run without any errors.
James
This also creates a logging file config.log and you can use this to lookwineinstall is a tool that runs the commands you need for you. If you wish to have a little bit more of control, just type thus in the wine folder:
Code:
./configure
This will check if your system has what it takes to build wine. At the end it may let you know that there are some extra pieces of software you'll want to install, like openal. If you want to install them, install the -dev versions of the packages via synaptic.
for missing packages.
You can skip this if you want to test the built wine version withoutThen rerun
Code:
./configure
If everything went well start to compile wine by typing
Code:
make
wait until it finishes. When it's done type:
Code:
sudo make install
overwriting what you already have. The main wine executable should be
in the bin directory where you built wine. Do the following after you
run make:
Code: Select all
cd bin
./wine --version
James
good information
learning.....................thank u