-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathINSTALL
More file actions
41 lines (24 loc) · 693 Bytes
/
INSTALL
File metadata and controls
41 lines (24 loc) · 693 Bytes
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
libmpdclient INSTALL
====================
Requirements
------------
* a C99 compliant compiler (e.g. gcc)
* make
Compiling libmpdclient
----------------------
Download and unpack the source code. In the libmpdclient directory,
type:
./configure
The configure option "--help" lists all available compile time
options.
Compile and install:
make
sudo make install
Compiling with dietlibc
-----------------------
Use the "diet" wrapper as your C compiler:
CC="diet -Os gcc -nostdinc" ./configure --disable-shared
Compiling for Windows
---------------------
With mingw32, you can easily cross-compile libmpdclient for Windows:
./configure --host=i586-mingw32msvc && make