summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-09-22 18:46:54 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-09-22 18:46:54 +0000
commitd7c89c274e85d941fbd27266abc9c1e3efa3987e (patch)
treed9ed64728102dcd96e17bfcfdc396af3d992bbfc
parent30097bf630583bd74343229e8ee881e644793ad7 (diff)
downloadATCD-d7c89c274e85d941fbd27266abc9c1e3efa3987e.tar.gz
ChangeLogTag:Wed Sep 22 13:46:01 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--ChangeLog7
-rwxr-xr-xbin/msvc_cidlc.pl6
2 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 586c129b929..31411481d81 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Wed Sep 22 13:46:01 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * bin/msvc_cidlc.pl:
+
+ CIDLC cannot be compiled in release mode. Enable only debug
+ mode.
+
Wed Sep 22 10:35:18 2004 J.T. Conklin <jtc@acorntoolworks.com>
* ace/ACE.cpp:
diff --git a/bin/msvc_cidlc.pl b/bin/msvc_cidlc.pl
index 3ffd0295848..fd171aba381 100755
--- a/bin/msvc_cidlc.pl
+++ b/bin/msvc_cidlc.pl
@@ -26,7 +26,7 @@ $Build_Cmd = "/BUILD";
$use_custom_dir = 0;
$useenv = '';
$vc7 = 0;
-$Build_Release=1;
+$Build_Debug = 1;
# Build
sub Build ($$)
@@ -92,8 +92,8 @@ sub Build_All ()
$count = 0;
foreach $c (@configurations) {
print STDERR "Configuration ".$count++." of ".$#configurations."\n" if ($print_status == 1);
- if ($Build_Release) {
- $Status = Build_VC7 ($c, "release");
+ if ($Build_Debug) {
+ $Status = Build_VC7 ($c, "debug");
return if $Status != 0 && !$Ignore_errors;
}
}