-
Notifications
You must be signed in to change notification settings - Fork 26
/
INSTALL
47 lines (31 loc) · 1.14 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Prerequisites
=============
A C++20 compiler.
libcdio and libiso9660 >= 2.0.0
http://www.gnu.org/software/libcdio/
libvcdinfo >= 2.0.1
http://www.gnu.org/software/vcdimager/
Installation
============
PSXImager can be compiled and installed in the usual way:
$ ./bootstrap
$ ./configure
$ make
$ sudo make install
Installation is not strictly necessary; the three binaries built in the
"src" directory are stand-alone programs.
Installation for Windows
========================
You can build PSXImager for Windows using the MSYS2 environment.
1. Download MSYS2 from the official website: https://www.msys2.org/
2. After installation, open "mingw32.exe" in MSYS2 root folder.
3. Install compiler and necessary packages:
pacman -S --noconfirm autoconf automake make
pacman -S --noconfirm mingw-w64-i686-toolchain \
mingw-w64-i686-libcdio mingw-w64-i686-vcdimager
4. Run build commands:
./bootstrap
./configure --host=i686-w64-mingw32 LDFLAGS="-s -static"
make
The three binaries built in the "src" directory are stand-alone and can be
run on any Windows machine (no additional libraries needed).