-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhartex.example.conf
36 lines (30 loc) · 1.18 KB
/
hartex.example.conf
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
# Sample configuration file for building HarTex.
#
# Run `./x.py setup` to configure hartexbuild.
#
# All options are commented with their default values by default.
# The buildsystem looks for a `hartex.conf` file in the root directory
# of the project.
# ==================================================================
# GENERAL BUILD CONFIGURATION
# ==================================================================
[build]
# The output directory of which the built binaries are placed.
# output-dir = "build"
[rust]
# The number of code generation units to use for rustc code generation.
#
# A unit count of 1 is used by default to not miss any optimizations, but
# it also makes the build process more time-consuming.
# codegen-units = 1
# Whether to include debug information in the built binaries. This is
# typically useful for backtraces printed when something goes wrong, like
# a panic or an error.
# debug = true
# The optimization level for the builds. A default of 3 is used for the
# best performance of the binaries.
# opt-level = 3
# Number of parallel threads to use for parallel compilation.
# parallel-threads = 8
# Whether to use release mode for compilation.
# release = false