From 20c2271837d4973f60c50fd9ae6ac5f92d4f431b Mon Sep 17 00:00:00 2001 From: meep-eep Date: Thu, 10 Nov 2005 01:18:05 +0000 Subject: [PATCH] Better description for type of build. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1979 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/build/unix/build.config | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sc2/build/unix/build.config b/sc2/build/unix/build.config index 5596bd119..cb5e3110a 100644 --- a/sc2/build/unix/build.config +++ b/sc2/build/unix/build.config @@ -77,21 +77,21 @@ uqm_prepare_config() MENU_main_ITEM_install_path_TYPE=MENU CHOICE_debug_OPTIONS="nodebug debug strictdebug" - CHOICE_debug_TITLE="Include debugging information" - CHOICE_debug_OPTION_nodebug_TITLE="No debugging information" + CHOICE_debug_TITLE="Type of build" + CHOICE_debug_OPTION_nodebug_TITLE="Optimised release build" CHOICE_debug_OPTION_nodebug_ACTION='nodebug_action' nodebug_action() { CFLAGS="$CFLAGS -O3" DEBUG=0 } - CHOICE_debug_OPTION_debug_TITLE="Debugging information" + CHOICE_debug_OPTION_debug_TITLE="Debugging build" CHOICE_debug_OPTION_debug_ACTION='debug_action' debug_action() { CFLAGS="$CFLAGS -g -O0 -W -Wall -DDEBUG" LDFLAGS="$LDFLAGS -O0" DEBUG=1 } - CHOICE_debug_OPTION_strictdebug_TITLE="Debug info + strict compile checks" + CHOICE_debug_OPTION_strictdebug_TITLE="Debug + strict compile checks" CHOICE_debug_OPTION_strictdebug_ACTION='strictdebug_action' strictdebug_action() { CFLAGS="$CFLAGS -O1" # This is needed for -Wunitialized