peiyongz 2004/10/20 08:37:19 Modified: c/scripts packageBinaries.pl Log: Build debug libs on windows for vc6/vc7 Revision Changes Path 1.158 +7 -6 xml-xerces/c/scripts/packageBinaries.pl Index: packageBinaries.pl =================================================================== RCS file: /home/cvs/xml-xerces/c/scripts/packageBinaries.pl,v retrieving revision 1.157 retrieving revision 1.158 diff -u -r1.157 -r1.158 --- packageBinaries.pl 19 Oct 2004 21:07:57 -0000 1.157 +++ packageBinaries.pl 20 Oct 2004 15:37:19 -0000 1.158 @@ -315,24 +315,25 @@ if ($DevStudioVer eq "6.0") { if ($PlatformName eq "Win64") { # /USEENV psystem("msdev xerces-all.dsw /MAKE \"all - $PlatformName Release\" /USEENV /REBUILD /OUT buildlog_release.txt"); - # psystem("msdev xerces-all.dsw /MAKE \"XercesLib - $PlatformName Debug\" /USEENV /REBUILD /OUT buildlog_debug.txt"); - # psystem("msdev xerces-all.dsw /MAKE \"XercesDeprecatedDOMLib - $PlatformName Debug\" /USEENV /REBUILD /OUT buildlog_depdom_debug.txt"); + psystem("msdev xerces-all.dsw /MAKE \"XercesLib - $PlatformName Debug\" /USEENV /REBUILD /OUT buildlog_debug.txt"); + psystem("msdev xerces-all.dsw /MAKE \"XercesDeprecatedDOMLib - $PlatformName Debug\" /USEENV /REBUILD /OUT buildlog_depdom_debug.txt"); } else { psystem("msdev xerces-all.dsw /MAKE \"all - $PlatformName Release\" /REBUILD /OUT buildlog_release.txt"); - psystem("msdev xerces-all.dsw /MAKE \"all - $PlatformName Debug\" /REBUILD /OUT buildlog_debug.txt"); + psystem("msdev xerces-all.dsw /MAKE \"XercesLib - $PlatformName Debug\" /REBUILD /OUT buildlog_debug.txt"); + psystem("msdev xerces-all.dsw /MAKE \"XercesDeprecatedDOMLib - $PlatformName Debug\" /REBUILD /OUT buildlog_depdom_debug.txt"); } } elsif ($DevStudioVer eq "7.0") { psystem("devenv /rebuild Release /out buildlog_release.txt /project all xerces-all.sln"); - # psystem("devenv /rebuild debug /out buildlog_debug.txt /project XercesLib xerces-all.sln"); - # psystem("devenv /rebuild debug /out buildlog_depdom_debug.txt /project XercesDeprecatedDOMLib xerces-all.sln"); + psystem("devenv /rebuild debug /out buildlog_debug.txt /project XercesLib xerces-all.sln"); + psystem("devenv /rebuild debug /out buildlog_depdom_debug.txt /project XercesDeprecatedDOMLib xerces-all.sln"); } else { # "6.1" psystem( "nmake -f all.mak \"CFG=all - $PlatformName Release\" CPP=$opt_x.exe >buildlog_release.txt 2>&1"); } system("type buildlog_release.txt"); system("type buildlog_debug.txt"); - # system("type buildlog_depdom_debug.txt"); + system("type buildlog_depdom_debug.txt"); # # Population Begin
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]