~ubuntu-branches/ubuntu/maverick/python3.1/maverick

« back to all changes in this revision

Viewing changes to PC/VS7.1/amd64_ml64.bat

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-03-23 00:01:27 UTC
  • Revision ID: james.westby@ubuntu.com-20090323000127-5fstfxju4ufrhthq
Tags: upstream-3.1~a1+20090322
ImportĀ upstreamĀ versionĀ 3.1~a1+20090322

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@echo off
 
2
rem Try to find the AMD64 assembler and call it with the supplied arguments.
 
3
 
 
4
set MLEXE=Microsoft Platform SDK\Bin\Win64\x86\AMD64\ml64.EXE
 
5
 
 
6
rem For the environment variables see also
 
7
rem http://msdn.microsoft.com/library/en-us/win64/win64/wow64_implementation_details.asp
 
8
 
 
9
if exist "%ProgramFiles%\%MLEXE%" (
 
10
  set ML64="%ProgramFiles%\%MLEXE%"
 
11
) else if exist "%ProgramW6432%\%MLEXE%" (
 
12
  set ML64="%ProgramW6432%\%MLEXE%"
 
13
) else (
 
14
  set ML64=ml64.exe
 
15
)
 
16
 
 
17
%ML64% %*