source: trunk/buildconf.inc @ 2798

Revision 2453, 2.1 KB checked in by philmoz, 5 months ago (diff)

Merge philmoz-reorg branch back into trunk.

  • Property svn:eol-style set to LF
Line 
1#!build time optional components - comment out the features you dont want to have in your build or copy this file to localbuildconf.inc and override settings there
2OPT_GAMES=1
3OPT_CURVES=1
4OPT_DEBUGGING=1
5OPT_EDGEOVERLAY=1
6
7# Force config option on to allow Lua to call arbitrary ROM functions and eventprocs
8# By default this is a user controlled setting in the CHDK UI.
9# Setting this build option will permanently enable native calls
10# WARNING: This is DANGEROUS. e.g. call_event_proc("EraseSectorOfRom",...)
11#OPT_FORCE_LUA_CALL_NATIVE=1
12
13# experimental - allocate memory from alternate heap. Default 2MB from EXMEM_RAMDISK
14# See exmem_malloc_init in generic/wrappers.c
15#OPT_EXMEM_MALLOC=1
16# Set OPT_CHDK_IN_EXMEM to build and load CHDK into EXMEM memory
17# Need to define MEMISOSTART and EXMEM values in PLATFORM/PLATFORMSUB/makefile.inc (see G12 or SX30 for example)
18# (if setting this must also set OPT_EXMEM_MALLOC !)
19#OPT_CHDK_IN_EXMEM=1
20# set this to enable exmem corruption testing (see wrappers.c). (Don't set OPT_CHDK_IN_EXMEM with this !)
21#OPT_EXMEM_TESTING=1
22
23# experimental PTP/USB interface
24OPT_PTP=1
25
26# record asserts in lua C code with dbg_dump_assert
27#OPT_DBG_LUA_ASSERT=1
28
29# Enable this to include debug code in the motion_detect module
30#OPT_MD_DEBUG=1
31
32# needs proper fi2.inc in platform/ !!! see http://chdk.setepontos.com/index.php/topic,2995.0.html
33#OPT_FI2=1
34
35# if enabled, compiler will produce a lot of warnings, maybe not always correct ones, see http://chdk.setepontos.com/index.php/topic,2509.msg32191.html#msg32191
36#OPT_WARNINGS=1
37
38# If enabled (and reference binaries are present in /tools), compiler will generate function signatures
39OPT_GEN_SIGS=1
40# If enabled (and firmware binaries are present) compiler will update "stubs_entry.S"
41OPT_GEN_STUBS=1
42
43# for CHDK-DE presets without OPT_DEFAULT_LANG
44#OPT_DE_VERSION=1
45
46# Override the value below to compile a different default language into
47# the core CHDK code. This will save memory by not loading both english and the
48# desired language.
49# Set the value to the language file name without extension - e.g. OPT_DEFAULT_LANG=russian
50#OPT_DEFAULT_LANG=
51
52# Default svn revision. Used when svnversion fail.
53DEF_SVN_REF=0
Note: See TracBrowser for help on using the repository browser.