Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/tools/build/v1/vc-8_0-x86_amd64-tools.jam @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 1.2 KB
Line 
1#
2# This is my first cut at getting the x86 to amd64 cross compiler working
3# with a change also to  lwm_win32.hpp (no   long_type   is defined in THIS compiler)
4# everything SEEMS to compile, tho it seems to step on the vc8.0 libraries
5# I suspect we'll need to change that
6# the executables fail to run on a 32bit OS, I'll install WinXP64 when I get back
7# from my trip....  Wednesday Oct 6 and see what happens
8#
9#       THIS IS PRELIMINARY ONLY
10#
11extends-toolset msvc ;
12
13# singleton variables...
14set-as-singleton VC80_ROOT ;
15
16if ! $(MSVCDir)
17{
18    if $(VS80COMNTOOLS)
19    {
20        VC80_ROOT ?= $(VS80COMNTOOLS:J=" ")..\\..\\VC ;
21    }
22    else
23    {
24        ProgramFiles ?= $(PROGRAMFILES) ;
25        VC80_ROOT ?= $(ProgramFiles:J=" ")"\\Microsoft Visual Studio .NET Whidbey\\VC7" ;
26    }
27    VC_TOOL_PATH = "$(VC80_ROOT)"\\bin\\x86_amd64\\ ;
28    VC_SETUP = "CALL \"$(VC_TOOL_PATH)\\VCVARSamd64.bat\" >nul" ;
29}
30
31VC_PDB_NAME = vc80 ;
32
33# The following #// line will be used by the regression test table generation
34# program as the column heading for HTML tables. Must not include version number.
35#//<a href="http://msdn.microsoft.com/vstudio/whidbey/default.aspx">Micro-<br>soft<br>VC++</a>
Note: See TracBrowser for help on using the repository browser.