Skip to content

Commit cff96cc

Browse files
committed
Update README.md
1 parent 7f5f9e0 commit cff96cc

File tree

1 file changed

+3
-75
lines changed

1 file changed

+3
-75
lines changed

README.md

Lines changed: 3 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
* [CCache](#optional-ccache)
1616
* [CMake](#optional-cmake)
1717
* [DOxygen](#optional-doxygen)
18-
* [Manual Steps](#manual)
1918

2019
<a name="introduction"/>
2120
## Introduction
@@ -29,9 +28,9 @@ Various modules are disabled by default, such as the MAME interactive debugger,
2928

3029
<a name="downloads"/>
3130
### Downloads
32-
* Windows 64-bit (x64) - [msys64-2016-01-07.exe](https://github.com/mamedev/buildtools/releases/download/1.4/msys64-2016-01-07.exe)
33-
* Windows 32-bit (x86) - [msys32-2016-01-07.exe](https://github.com/mamedev/buildtools/releases/download/1.4/msys32-2016-01-07.exe)
34-
* Dual 32-bit/64-bit - [msys64-32-2016-01-07.exe](https://github.com/mamedev/buildtools/releases/download/1.4/msys64-32-2016-01-07.exe) _(If you have 64-bit Windows but wish to build for both 32-bit and 64-bit. To switch between different mingw versions use **config32.bat** and **config64.bat**)_
31+
* Windows 64-bit (x64) - [msys64-2016-02-16.exe](https://github.com/mamedev/buildtools/releases/download/1.5/msys64-2016-02-16.exe)
32+
* Windows 32-bit (x86) - [msys32-2016-02-16.exe](https://github.com/mamedev/buildtools/releases/download/1.5/msys32-2016-02-16.exe)
33+
* Dual 32-bit/64-bit - [msys64-32-2016-02-16.exe](https://github.com/mamedev/buildtools/releases/download/1.5/msys64-32-2016-02-16.exe) _(If you have 64-bit Windows but wish to build for both 32-bit and 64-bit. To switch between different mingw versions use **config32.bat** and **config64.bat**)_
3534

3635
<a name="installation"/>
3736
### Installation
@@ -44,11 +43,6 @@ To open a non-posix shell there are two batch files: **win32env.bat** for regula
4443
git config --global core.autocrlf true
4544
```
4645

47-
Since it can be that some of configuration file have altered, first pull latest from root of your tools:
48-
```sh
49-
git pull
50-
```
51-
5246
And if you are contributor
5347
```sh
5448
git config --global user.email youremail@something.com
@@ -195,69 +189,3 @@ If you wish to compile/link with the alternative Clang, go ahead and download **
195189
pacman -S mingw-w64-i686-clang mingw-w64-i686-clang-analyzer mingw-w64-i686-clang-tools-extra
196190
```
197191

198-
<a name="manual"/>
199-
## Manual steps
200-
201-
1. Download MSYS2. You can do that by downloading from http://msys2.github.io/ or
202-
from our mirror [for 64-bit Windows](https://github.com/mamedev/buildtools/releases/download/1.0/msys2-x86_64-20150916.exe) or [for 32-bit Windows](https://github.com/mamedev/buildtools/releases/download/1.0/msys2-i686-20150916.exe)
203-
204-
2. Run the installer (location can be changed to suite) and let it complete and it will launch an Msys shell
205-
206-
3. Update initial installation
207-
208-
```sh
209-
pacman --needed -Sy bash pacman pacman-mirrors msys2-runtime
210-
```
211-
212-
4. Type `exit` to close current window and start "MSYS2 Shell" again
213-
214-
5. Now upgrade already installed packages to current
215-
216-
```sh
217-
pacman -Su
218-
```
219-
220-
6. Install ConEmu console, `make`, `wget` and `git` tools
221-
222-
```sh
223-
pacman -S conemu-git make wget git
224-
```
225-
226-
7. Install `mingw` and `gdb` including `python`
227-
228-
**For x64**
229-
```sh
230-
pacman -S mingw-w64-x86_64-gcc mingw-w64-x86_64-gdb
231-
```
232-
233-
**For x86**
234-
```sh
235-
pacman -S mingw-w64-i686-gcc mingw-w64-i686-gdb
236-
```
237-
238-
8. Go to root folder and download MAME development environment shell scripts
239-
240-
241-
**For x86**
242-
```sh
243-
cd /
244-
git clone https://github.com/mamedev/buildtools_x86.git build
245-
cd build
246-
mv * ..
247-
cd ..
248-
rm -r -f build
249-
exit
250-
```
251-
252-
**For x64**
253-
```sh
254-
cd /
255-
git clone https://github.com/mamedev/buildtools_x64.git build
256-
cd build
257-
mv * ..
258-
cd ..
259-
rm -r -f build
260-
exit
261-
```
262-
263-
9. Finally, start ```buildtools.bat``` from installed folder (by default it is *C:\msys64* or *c:\msys32*)

0 commit comments

Comments
 (0)