source: trunk/buildconf.inc @ 1212

Revision 1124, 1.9 KB checked in by reyalP, 2 years ago (diff)

exmem improvements, experimental support for loading CHDK binary in exmem - from philmoz in http://chdk.setepontos.com/index.php?topic=650.msg63808#msg63808

  • 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
2OPT_GAME_REVERSI=1
3OPT_GAME_SOKOBAN=1
4OPT_GAME_CONNECT4=1
5OPT_GAME_MASTERMIND=1
6OPT_CURVES=1
7OPT_TEXTREADER=1
8OPT_CALENDAR=1
9OPT_DEBUGGING=1
10OPT_EDGEOVERLAY=1
11# experimental PTP/USB interface. Enabled/disabled for individual cameras in camera.h
12OPT_PTP=1
13
14# Scripting components
15OPT_UBASIC=1
16OPT_LUA=1
17OPT_LUA_STRLIB=1
18OPT_LUA_IOLIB=1
19OPT_LUA_OSLIB=1
20#allow Lua to call arbitrary ROM functions and eventprocs
21# WARNING: This is DANGEROUS. e.g. call_event_proc("EraseSectorOfRom",...)
22# NOTE: the interface for this may change in the future, to support better support buffers etc
23#OPT_LUA_CALL_NATIVE=1
24
25# experimental - allocate memory from alternate heap. Default 2MB from EXMEM_RAMDISK
26# See exmem_malloc_init in generic/wrappers.c
27#OPT_EXMEM_MALLOC=1
28# Set OPT_CHDK_IN_EXMEM to build and load CHDK into EXMEM memory
29# Need to define MEMISOSTART and EXMEM values in PLATFORM/PLATFORMSUB/makefile.inc (see G12 or SX30 for example)
30# (if setting this must also set OPT_EXMEM_MALLOC !)
31#OPT_CHDK_IN_EXMEM=1
32# set this to enable exmem corruption testing (see wrappers.c). (Don't set OPT_CHDK_IN_EXMEM with this !)
33#OPT_EXMEM_TESTING=1
34
35#OPT_MD_DEBUG=1
36# require correct FI2 keys in platform/fi2.inc , see http://chdk.wikia.com/wiki/For_Developers/fi2offsets and http://chdk.setepontos.com/index.php/topic,2995.0.html
37#OPT_FI2=1
38# 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
39#OPT_WARNINGS=1
40# If enabled (and reference binaries are present in /tools), compiler will generate function signatures
41OPT_GEN_SIGS=1
42# If enabled (and firmware binaries are present) compiler will update "stubs_entry.S"
43OPT_GEN_STUBS=1
44# the symbols / not done yet
45#!OPT_SYMBOLS=1
46# for people who won't use lang files at all / not done yet
47#!OPT_LANGUAGEINTERFACE=1
Note: See TracBrowser for help on using the repository browser.