From 62c8f1a1f313961284907eb65e6edcd6d44efb40 Mon Sep 17 00:00:00 2001 From: David Dean Date: Thu, 9 Jul 2009 16:46:13 +0000 Subject: [PATCH] Correcting Borland default compiler options -Ve and -Vx are *NOT* enabled by default in bcc32 [SVN r54833] --- v2/tools/borland.jam | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/v2/tools/borland.jam b/v2/tools/borland.jam index 77bd69d4a..c9bf01acc 100644 --- a/v2/tools/borland.jam +++ b/v2/tools/borland.jam @@ -108,10 +108,6 @@ flags borland NEED_IMPLIB LIB/shared : "" ; # -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 @@ flags borland NEED_IMPLIB LIB/shared : "" ; 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"$(<)" "$(>)" }