2014-09-12 17:15:23 +02:00
|
|
|
### Copy as tup.config and modify according to your needs.
|
|
|
|
### tup.config should be in the same directory where you have said "tup init".
|
|
|
|
### If there are several directories, tup.config-s are independent.
|
|
|
|
|
|
|
|
### Generic configuration
|
|
|
|
### interface language: en [default], ru, et, it, sp
|
|
|
|
# CONFIG_LANG=en
|
|
|
|
|
|
|
|
### Installed compilers.
|
|
|
|
### Setting a variable to any non-empty value
|
|
|
|
### prevents calls to the corresponding compiler
|
|
|
|
### and disables build of corresponding binaries.
|
|
|
|
### The concrete value matters only if CONFIG_BUILD_TYPE is also set;
|
|
|
|
### "full" means that binaries will be excluded from final images,
|
|
|
|
### anything other means that you have obtained binaries in some other way
|
|
|
|
### and still want to have them in final images.
|
|
|
|
# CONFIG_NO_FASM=full
|
|
|
|
# CONFIG_NO_NASM=full
|
2018-02-03 10:10:21 +01:00
|
|
|
# CONFIG_NO_JWASM=full
|
2014-09-12 17:15:23 +02:00
|
|
|
# CONFIG_NO_GCC=full
|
|
|
|
# CONFIG_NO_MSVC=full
|
|
|
|
# CONFIG_NO_CMM=full
|
2014-09-19 12:09:40 +02:00
|
|
|
### Path to gcc toolchain library with -lgcc.
|
|
|
|
### Normally, you should not modify it,
|
|
|
|
### since the toolchain assumes the fixed path anyway.
|
|
|
|
### default Windows variant
|
|
|
|
# CONFIG_TOOLCHAIN_LIBPATH=C:\MinGW\msys\1.0\home\autobuild\tools\win32\mingw32\lib
|
|
|
|
### default Linux variant
|
|
|
|
# CONFIG_TOOLCHAIN_LIBPATH=/home/autobuild/tools/win32/mingw32/lib
|
2014-09-12 17:15:23 +02:00
|
|
|
|
|
|
|
### Optional postprocessing of binaries, where applicable.
|
|
|
|
### By default, no postprocessing is used.
|
|
|
|
### Windows variants
|
|
|
|
# CONFIG_KPACK_CMD=&& kpack /nologo "%o"
|
|
|
|
# CONFIG_KERPACK_CMD=&& kerpack %o
|
|
|
|
# CONFIG_PESTRIP_CMD=&&set EXENAME=%o&&fasm $(ROOT)/data/common/pestrip.asm %o
|
|
|
|
### Linux variants
|
|
|
|
# CONFIG_KPACK_CMD=&& kpack --nologo "%o"
|
|
|
|
# CONFIG_KERPACK_CMD=&& kerpack %o
|
|
|
|
# CONFIG_PESTRIP_CMD=&& EXENAME=%o fasm $(ROOT)/data/common/pestrip.asm %o
|
|
|
|
|
2020-10-04 18:53:59 +02:00
|
|
|
### BUILD_TYPE, if set, enables building kolibri.img, kolibri.iso and
|
|
|
|
### kolibri.raw.
|
2014-09-12 17:15:23 +02:00
|
|
|
### Must match subdirectory name in $(ROOT)/data.
|
|
|
|
### Requires Linux.
|
|
|
|
# CONFIG_BUILD_TYPE=eng
|
|
|
|
### If set, injects build date and revision number from data/.revision
|
|
|
|
### to kernel.mnt to be displayed during boot screen.
|
|
|
|
# CONFIG_INSERT_REVISION_ID=1
|
|
|
|
|
|
|
|
### Use for single-program mode, when "tup init" selects
|
|
|
|
### a directory of one program, as opposed to the entire repository.
|
|
|
|
# CONFIG_HELPERDIR=.
|