Changeset 743
- Timestamp:
- 04/18/09 12:45:10 (1 year ago)
- Files:
-
- trunk/buildconf.inc (modified) (1 diff)
- trunk/makefile.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/buildconf.inc
r701 r743 14 14 #OPT_MD_DEBUG=1 15 15 #OPT_FI2=1 // needs proper fi2.inc in platform/ !!! see http://chdk.setepontos.com/index.php/topic,2995.0.html 16 #OPT_WARNINGS=1 // 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 16 17 #!OPT_UBASIC=1 // Shall ubasic be compiled into build? not done yet 17 18 #!OPT_LUA=1 // Shall lua support be compiled into build? not done yet 18 19 #!OPT_SYMBOLS=1 // the symbols / not done yet 19 #!OPT_LANGUAGEINTERFACE=1 // for people who won't use lang files at all / not done ye r20 #!OPT_LANGUAGEINTERFACE=1 // for people who won't use lang files at all / not done yet trunk/makefile.inc
r740 r743 328 328 endif 329 329 330 ifdef OPT_WARNINGS 331 ifeq ($(GCC_VERSION_MAJOR),3) 332 CFLAGS+=-Wwrite-strings -Wsign-compare -Wunused -Wno-unused-parameter 333 HOSTCFLAGS+=-Wwrite-strings -Wsign-compare -Wunused -Wno-unused-parameter 334 endif 335 ifeq ($(GCC_VERSION_MAJOR),4) 336 CFLAGS+=-Wextra -fdiagnostics-show-option -Wno-missing-field-initializers -Wunused -Wno-unused-parameter 337 #HOSTCFLAGS+=-Wextra -fdiagnostics-show-option -Wno-missing-field-initializers -Wunused -Wno-unused-parameter 338 endif 339 endif 340 330 341 ########################################################################## 331 342