webengine/osswebengine/WebKitTools/Scripts/pdevenv
author Chetan Kapoor <chetank@symbian.org>
Wed, 16 Jun 2010 13:48:17 +0100
branchGCC_SURGE
changeset 75 cd0e9694f2ef
parent 0 dd21522fd290
permissions -rw-r--r--
Bug 2962 - GCC compilation issues in sf/mw/web -- Some Compilation erros fixed

#!/usr/bin/perl -w

use strict;
use warnings;

use File::Temp qw/tempfile/;
use FindBin;

my ($fh, $path) = tempfile(UNLINK => 0, SUFFIX => '.cmd') or die;

chomp(my $vcBin = `cygpath -w "$FindBin::Bin/../vcbin"`);

print $fh "\@echo off\n\n";
print $fh "call \"\%VS80COMNTOOLS\%\\vsvars32.bat\"\n\n";
print $fh "set PATH=$vcBin;\%PATH\%\n\n";
print $fh "devenv.com /useenv " . join(" ", @ARGV) . "\n";

close $fh;

chmod 0755, $path;

chomp($path = `cygpath -w -s '$path'`);

exec("cmd /c \"call $path\"");