root/trunk/buildconf.inc

Revision 966, 2.2 KB (checked in by rudi_de, 3 months ago)

Wieder angleichen von CHDK und CHDK-DE (Teil 10)

Betrifft alle
* kosmetische Korrekturen

  • 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_GAME_REVERSI=1
3OPT_GAME_SOKOBAN=1
4OPT_GAME_CONNECT4=1
5OPT_GAME_MASTERMIND=1
6#OPT_GAME_TETRIS=1
7OPT_CURVES=1
8OPT_TEXTREADER=1
9OPT_CALENDAR=1
10OPT_DEBUGGING=1
11OPT_EDGEOVERLAY=1
12
13# Scripting components
14OPT_UBASIC=1
15OPT_LUA=1
16OPT_LUA_STRLIB=1
17OPT_LUA_IOLIB=1
18OPT_LUA_OSLIB=1
19# allow Lua to call arbitrary ROM functions and eventprocs
20# WARNING: This is DANGEROUS. e.g. call_event_proc("EraseSectorOfRom",...)
21# NOTE: the interface for this may change in the future, to support better support buffers etc
22OPT_LUA_CALL_NATIVE=1
23
24# experimental - allocate memory from alternate heap. Default 2MB from EXMEM_RAMDISK
25# See exmem_malloc_init in generic/wrappers.c
26#OPT_EXMEM_MALLOC=1
27# Set OPT_CHDK_IN_EXMEM to build and load CHDK into EXMEM memory
28# Need to define MEMISOSTART and EXMEM values in PLATFORM/PLATFORMSUB/makefile.inc (see G12 or SX30 for example)
29# (if setting this must also set OPT_EXMEM_MALLOC !)
30#OPT_CHDK_IN_EXMEM=1
31# set this to enable exmem corruption testing (see wrappers.c). (Don't set OPT_CHDK_IN_EXMEM with this !)
32#OPT_EXMEM_TESTING=1
33
34# experimental PTP/USB interface
35OPT_PTP=1
36
37#OPT_MD_DEBUG=1
38# needs proper fi2.inc in platform/ !!! see http://chdk.setepontos.com/index.php/topic,2995.0.html
39#OPT_FI2=1
40# 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
41#OPT_WARNINGS=1
42# If enabled (and reference binaries are present in /tools), compiler will generate function signatures
43OPT_GEN_SIGS=1
44# If enabled (and firmware binaries are present) compiler will update "stubs_entry.S"
45OPT_GEN_STUBS=1
46# the symbols / not done yet
47#!OPT_SYMBOLS=1
48# for people who won't use lang files at all / not done yet
49#!OPT_LANGUAGEINTERFACE=1
50
51# Override the value below to compile a different default language into
52# the core CHDK code. This will save memory by not loading both english and the
53# desired language.
54# Set the value to the language file name without extension - e.g. OPT_DEFAULT_LANG=russian
55OPT_DEFAULT_LANG=german
56
57# Default svn revsion. Used when svnversion fail.
58DEF_SVN_REF=0
Note: See TracBrowser for help on using the browser.