-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.config.txt
93 lines (78 loc) · 2.86 KB
/
build.config.txt
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
##### PATH CONFIGURATIONS ######
#
# Make a copy of this file and save it in the root of the repository
# with a name ending in ".config". Then modify as necessary.
#
# The repository is configured to ignore all .config files, with the
# exception of default.config (which should never be modified).
#
# To use a configuration file with make, specify it in the 'make' command via
# "make <target> CONFIG=<name>", where '<name>' is the first part of the
# file name (before the .config). For example, "make library CONFIG=foo"
# would build the library (release target) using "foo.config".
#
# To use a configuration file with CMake directly, specify it by passing the
# argument "-DCONFIG_FILENAME=<name>", where '<name>' is the first part of the
# file name (before the .config). For example, passing the argument
# "-DCONFIG_FILENAME=foo" would build using "foo.config".
##### EVENTPP #####
#
# This sets the path to eventpp, which is used by the tester.
#
# The default is '${CMAKE_HOME_DIRECTORY}/../../eventpp/eventpp', which
# assumes a copy of the Goldilocks git repository in the same directory as this
# repository folder.
#
# 'make ready' would need to be run in that repository to build the library.
set(EVENTPP_DIR
${CMAKE_HOME_DIRECTORY}/../../libdeps/libs
)
##### GOLDILOCKS #####
#
# This sets the path to Goldilocks, which is used by the tester.
#
# The default is '${CMAKE_HOME_DIRECTORY}/../../goldilocks/goldilocks', which
# assumes a copy of the Goldilocks git repository in the same directory as this
# repository folder.
#
# 'make ready' would need to be run in that repository to build the library.
set(GOLDILOCKS_DIR
${CMAKE_HOME_DIRECTORY}/../../goldilocks/goldilocks
)
##### IOSQUEAK #####
#
# This sets the path to IOSqueak, which is used by the tester.
#
# The default is '${CMAKE_HOME_DIRECTORY}/../../iosqueak/iosqueak', which
# assumes a copy of the Goldilocks git repository in the same directory as this
# repository folder.
#
# 'make ready' would need to be run in that repository to build the library.
set(IOSQUKAK_DIR
${CMAKE_HOME_DIRECTORY}/../../iosqueak/iosqueak
)
##### LLVM LIBC++ #####
#
# This option asks the Clang compiler to use LLVM's libc++ library.
# The build system will look for this library in the system paths.
#
# If you are not compiling with Clang, this option will be ignored.
# NOTE: libc++ is already used by default on Mac.
#
# Set the option to either `true` or `false` below.
set(LLVM false)
##### LINKER (LD) #####
#
# This option asks the compiler to use the specified linker instead of the
# default for your system. This assumes that the requested linker is
# installed on your system.
#
# Valid options:
# -> "bfd" for the BFD linker
# -> "gold" for Gold linker
# -> "lld" for LLVM linker (only works on Clang)
#
# Uncomment the desired line below, or leave all commented to use default.
# set(LLD "bfd")
# set(LLD "gold")
# set(LLD "lld")