Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com From: "Mike Bresnahan" To: Subject: RE: Cygwin, GNU make and VC++ ? Date: Fri, 1 Nov 2002 18:13:46 -0600 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal For what its worth, this is the script I use: #! /bin/sh # # Wrapper script for the Microsoft Visual C++ compiler (cl) to allow it to work with Cygwin based makefiles. cmd="/c/Program\ Files/Microsoft\ Visual\ Studio/VC98/Bin/cl" for option do case $option in -I/*) path=`expr $option : '-I/\(.*\\)'` cmd="$cmd -IC:/cygwin/$path" ;; /*) path=`expr $option : '/\(.*\\)'` cmd="$cmd C:/cygwin/$path" ;; *) cmd="$cmd $option" ;; esac done echo $cmd eval $cmd -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/