$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r54833 - trunk/tools/build/v2/tools
From: David.Dean_at_[hidden]
Date: 2009-07-09 12:46:14
Author: siliconman
Date: 2009-07-09 12:46:13 EDT (Thu, 09 Jul 2009)
New Revision: 54833
URL: http://svn.boost.org/trac/boost/changeset/54833
Log:
Correcting Borland default compiler options
-Ve and -Vx are *NOT* enabled by default in bcc32
Text files modified: 
   trunk/tools/build/v2/tools/borland.jam |     8 ++------                                
   1 files changed, 2 insertions(+), 6 deletions(-)
Modified: trunk/tools/build/v2/tools/borland.jam
==============================================================================
--- trunk/tools/build/v2/tools/borland.jam	(original)
+++ trunk/tools/build/v2/tools/borland.jam	2009-07-09 12:46:13 EDT (Thu, 09 Jul 2009)
@@ -108,10 +108,6 @@
 # -q     no banner
 # -c     compile to object
 # -P     C++ code regardless of file extention
-# -Ve    zero sized empty base classes, this option is on in the IDE by default 
-#        and effects binary compatibility.
-# -Vx    zero sized empty members, this option is on in the IDE by default 
-#        and effects binary compatibility.
 # -a8    8 byte alignment, this option is on in the IDE by default 
 #        and effects binary compatibility.
 #
@@ -121,13 +117,13 @@
 
 actions compile.c++
 {
-    "$(CONFIG_COMMAND)" -j5 -g255 -q -c -P -Ve -Vx -a8 -b- $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -I"$(STDHDRS)" -o"$(<)" "$(>)"
+    "$(CONFIG_COMMAND)" -j5 -g255 -q -c -P -a8 -b- $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -I"$(STDHDRS)" -o"$(<)" "$(>)"
 }
 
 # For C, we don't pass -P flag
 actions compile.c
 {
-    "$(CONFIG_COMMAND)" -j5 -g255 -q -c -Ve -Vx -a8 -b- $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -I"$(STDHDRS)" -o"$(<)" "$(>)"
+    "$(CONFIG_COMMAND)" -j5 -g255 -q -c -a8 -b- $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -I"$(STDHDRS)" -o"$(<)" "$(>)"
 }