forked from bmx-ng/bmk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.bmk
57 lines (46 loc) · 1.33 KB
/
config.bmk
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
#
# BMK Cross-compiler configuration
#
# These paths determine where various MingW and Wine paths and files are on your
# system.
# The names of the binaries can change between distributions.
#
# ----------------------
#
# Please edit the following paths and filenames
#
# The full path to the location of mingw
#
# for MacPorts, this is usually /opt/local
#
path_to_mingw=/usr/local/i386-mingw32-3.4.5
# The names of the compiler utils (ar, ld, gcc, g++)
# (you can find these in the bin folder)
#
name_of_ar=i386-mingw32-ar
name_of_ld=i386-mingw32-ld
name_of_gcc=i386-mingw32-gcc
name_of_gpp=i386-mingw32-g++
# The path in which crt2.o resides.
#
path_to_mingw_lib=%path_to_mingw%/i386-mingw32/lib
# The path where crtbegin.o and crtend.o reside
#
path_to_mingw_lib2=%path_to_mingw%/lib/gcc/i386-mingw32/3.4.5
# The path to Wine executable
#
# typical on Linux
#path_to_wine=/usr/bin/wine
# typical on Mac
path_to_wine=/Applications/Darwine/Wine.bundle/Contents/bin/wine
# ----------------------
#
# No need to edit these. They are configured by the above settings.
#
#
path_to_mingw_include=%path_to_mingw%/include
path_to_mingw_lib3=%path_to_mingw%/i386-mingw32/lib
path_to_ar=%path_to_mingw%/bin/%name_of_ar%
path_to_ld=%path_to_mingw%/bin/%name_of_ld%
path_to_gcc=%path_to_mingw%/bin/%name_of_gcc%
path_to_gpp=%path_to_mingw%/bin/%name_of_gpp%