Set non-retail (checked) build as default. Developers should have no reason to use a retail build unless testing a final release version. This also speeds up compilation and reduces the number of compile errors due to developers building with dbg=0 and breaking dbg=1 code. Please do not code with dbg=0 without testing your patches in dbg=1.

svn path=/trunk/; revision=15517
This commit is contained in:
Alex Ionescu 2005-05-26 13:50:52 +00:00
parent 42db7235dc
commit ed141bff38

View file

@ -14,7 +14,7 @@ ARCH := i386
# be optimized for. # be optimized for.
# #
OARCH := i486 OARCH := i486
# #
# Whether to compile in the kernel debugger # Whether to compile in the kernel debugger
@ -25,7 +25,7 @@ KDBG := 0
# Whether to compile for debugging # Whether to compile for debugging
# Enabling this enables ASSERTS, GDB and Special Debug Routines # Enabling this enables ASSERTS, GDB and Special Debug Routines
# #
DBG := 0 DBG := 1
# #
# Whether to compile a multiprocessor or single processor version # Whether to compile a multiprocessor or single processor version