-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDEPENDENCIES
68 lines (59 loc) · 1.96 KB
/
DEPENDENCIES
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#
# libBlu mainMuxer dependencies.
# Inspired from the libxml2 DEPENDENCIES file.
#
# 3 levels of "dependencies":
# - 'Mandatory': Strictly required.
# - 'Optionnal': Only required for specified functionnalities, extensions.
# - 'Not required': Not a dependency, won't be used.
#
# Links are provided for comfort. But it might be more practicle to
# use your system package manager.
# Development on Windows as been done using MSYS2 and its included pacman
# package manager.
#
Execution dependencies:
* libPng, the official PNG reference library
+ Optionnal.
Only used in the IGS compiler, without no IGS can be generated from XML.
Version 16 used during development, older versions non tested.
+ Homepage:
http://www.libpng.org/pub/png/libpng.html
Build dependencies:
* A C toolchain (compiler, linker...)
+ Mandatory
GCC recommanded.
+ GCC homepage:
https://gcc.gnu.org
* A 'make' utility.
+ Mandatory.
Plateform native or GNU Make recommanded.
+ GNU Make homepage:
https://www.gnu.org/software/make
* A 'lex' lexer generator utility.
+ Mandatory
Used in the INI configuration file parser.
Flex recommanded (code might use some extensions).
Can be disabled by switching COMPILE_WITH_INI_OPTIONS flag to 0 in
makefile.
+ flex homepage:
https://github.com/westes/flex
* A 'yacc' parser generator utility.
+ Mandatory
Used in the INI configuration file parser.
GNU Bison recommanded (code might use some extensions).
Can be disabled by switching COMPILE_WITH_INI_OPTIONS flag to 0 in
makefile.
+ GNU Bison homepage:
https://www.gnu.org/software/bison
* libxml2, XML files parsing library
+ Mandatory
Used in the IGS compiler.
Can be disabled by switching COMPILE_WITH_IGS_COMPILER flag to 0 in
makefile.
+ Homepage:
https://www.xmlsoft.org
* libiconv, GNU unicode library.
+ Windows: Mandatory, Other systems: Not required.
+ Homepage:
https://www.gnu.org/software/libiconv/