1 ### Copy as tup.config and modify according to your needs.
\r
2 ### tup.config should be in the same directory where you have said "tup init".
\r
3 ### If there are several directories, tup.config-s are independent.
\r
5 ### Generic configuration
\r
6 ### interface language: en [default], ru, et, it, sp
\r
9 ### Installed compilers.
\r
10 ### Setting a variable to any non-empty value
\r
11 ### prevents calls to the corresponding compiler
\r
12 ### and disables build of corresponding binaries.
\r
13 ### The concrete value matters only if CONFIG_BUILD_TYPE is also set;
\r
14 ### "full" means that binaries will be excluded from final images,
\r
15 ### anything other means that you have obtained binaries in some other way
\r
16 ### and still want to have them in final images.
\r
17 # CONFIG_NO_FASM=full
\r
18 # CONFIG_NO_NASM=full
\r
19 # CONFIG_NO_JWASM=full
\r
20 # CONFIG_NO_GCC=full
\r
21 # CONFIG_NO_MSVC=full
\r
22 # CONFIG_NO_CMM=full
\r
23 # CONFIG_NO_TCC=full
\r
24 ### Path to gcc toolchain library with -lgcc.
\r
25 ### Normally, you should not modify it,
\r
26 ### since the toolchain assumes the fixed path anyway.
\r
27 ### default Windows variant
\r
28 # CONFIG_TOOLCHAIN_LIBPATH=C:\MinGW\msys\1.0\home\autobuild\tools\win32\mingw32\lib
\r
29 ### default Linux variant
\r
30 # CONFIG_TOOLCHAIN_LIBPATH=/home/autobuild/tools/win32/mingw32/lib
\r
32 ### Optional postprocessing of binaries, where applicable.
\r
33 ### By default, no postprocessing is used.
\r
34 ### Windows variants
\r
35 # CONFIG_KPACK_CMD=&& kpack /nologo "%o"
\r
36 # CONFIG_KERPACK_CMD=&& kerpack %o
\r
37 # CONFIG_PESTRIP_CMD=&&set EXENAME=%o&&fasm $(ROOT)/data/common/pestrip.asm %o
\r
39 # CONFIG_KPACK_CMD=&& kpack --nologo "%o"
\r
40 # CONFIG_KERPACK_CMD=&& kerpack %o
\r
41 # CONFIG_PESTRIP_CMD=&& EXENAME=%o fasm $(ROOT)/data/common/pestrip.asm %o
\r
43 ### BUILD_TYPE, if set, enables building kolibri.img, kolibri.iso and
\r
45 ### Must match subdirectory name in $(ROOT)/data.
\r
47 # CONFIG_BUILD_TYPE=eng
\r
48 ### If set, injects build date and revision number from data/.revision
\r
49 ### to kernel.mnt to be displayed during boot screen.
\r
50 # CONFIG_INSERT_REVISION_ID=1
\r
52 ### Use for single-program mode, when "tup init" selects
\r
53 ### a directory of one program, as opposed to the entire repository.
\r
54 # CONFIG_HELPERDIR=.
\r