mmanders    01/11/12 15:33:48

  Modified:    jk/jkant/java/org/apache/jk/ant/compilers MsvcCompiler.java
  Log:
  Added a -c flag to only compile the source files.  Linking will be handled in a 
separate step.
  
  Revision  Changes    Path
  1.2       +1 -1      
jakarta-tomcat-connectors/jk/jkant/java/org/apache/jk/ant/compilers/MsvcCompiler.java
  
  Index: MsvcCompiler.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/jkant/java/org/apache/jk/ant/compilers/MsvcCompiler.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- MsvcCompiler.java 2001/11/11 01:08:00     1.1
  +++ MsvcCompiler.java 2001/11/12 23:33:48     1.2
  @@ -133,7 +133,7 @@
           String localCflags=cflags;
           File ccOpt = new File(buildDir, "cc.opt");
           if( localCflags==null ) {
  -            localCflags=new String("-nologo -MT -W3 -GX -O2");
  +            localCflags=new String("-nologo -MT -W3 -GX -O2 -c");
               if( extra_cflags!=null ) {
                   localCflags+=" " + extra_cflags;
               }
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to