Building VirtualBox OSE 2.2.0 on Windows (use VS2005)

Discussions related to using the OSE version of VirtualBox.
Post Reply
yk700101
Posts: 43
Joined: 7. Feb 2009, 00:17
Primary OS: MS Windows Vista
VBox Version: OSE self-compiled
Guest OSses: Debian
Location: Japan
Contact:

Building VirtualBox OSE 2.2.0 on Windows (use VS2005)

Post by yk700101 »

The build maybe succeeded.

Maybe we cannot use "Bridged networking" , because network driver does not exist.
So, I can't use this version.

Prerequisites

Code: Select all

Windows Server 2003 Standard Edition SP2

Visual Studio 2005 Professional Edition with service pack 1

Windows Platform SDK
  Windows Server 2003 R2 Platform SDK 
  
Windows Driver Development Kit
  Windows Server 2003 SP1 DDK
  
DirectX SDK
  Microsoft DirectX SDK (November 2008)

MingW
  gcc-core-3.3.1-20030804-1.tar.gz
  gcc-g++-3.3.1-20030804-1.tar.gz
  mingw-runtime-3.8.tar.gz
  w32api-3.5.tar.gz
  binutils-2.13.90-20021006-2.tar.gz

SDL
  SDL-devel-1.2.13-VC8.zip

QT
  qt-win-opensource-src-4.4.3.zip

python
  python-2.6.1.msi

Directory tree

Code: Select all

  E:\z_Build2
  ? mingw
  ? qt-win-opensource-src-4.4.3
  ? SDL-1.2.13
  ? VirtualBox-2.2.0_OSE
Command Prompt for build

Code: Select all

Start -> Programs -> Microsoft Visual Studio 2005 -> Visual Studio Tools -> Visual Studio 2005 Command Prompt
Building Qt4
  • Command

    Code: Select all

    "E:\Program Files\Microsoft DirectX SDK (November 2008)\Utilities\Bin\dx_setenv.cmd"
    
    set PATH=%PATH%;E:\z_Build2\qt-win-opensource-src-4.4.3\bin;
    
    cd E:\z_Build2\qt-win-opensource-src-4.4.3
    
    configure -release -shared -no-fast -exceptions -accessibility -stl -no-sql-sqlite -no-qt3support -no-opengl -no-dsp -no-vcproj -no-incredibuild-xge -qmake -process -rtti -no-mmx -no-3dnow -no-sse -no-sse2 -no-openssl -no-dbus -no-phonon -no-phonon-backend -no-webkit -no-assistant-webkit -arch windows -qt-style-windows -qt-style-windowsxp -qt-style-windowsvista -qt-style-plastique -qt-style-cleanlooks -no-style-motif -no-style-cde
    

    Code: Select all

    nmake > E:\z_Build2\qt-win-opensource-src-4.4.3.build.log 2>&1
    
Building VirtualBox(configure)
  • Command

    Code: Select all

    cd E:\z_Build2\VirtualBox-2.2.0_OSE
    
    cscript configure.vbs --with-DXSDK="E:\Program Files\Microsoft DirectX SDK (November 2008)" --with-MinGW=E:\z_Build2\mingw --with-libSDL=E:\z_Build2\SDL-1.2.13 --with-Qt4=E:\z_Build2\qt-win-opensource-src-4.4.3 > E:\z_Build2\VirtualBox-2.2.0_OSE.configure.log 2>&1
    
Building VirtualBox(make)
  • Command

    Code: Select all

    cd E:\z_Build2\VirtualBox-2.2.0_OSE
    
    env.bat
    
    set PATH=%PATH%;E:\z_Build2\mingw\bin;
    
    set PATH=%PATH%;E:\z_Build2\qt-win-opensource-src-4.4.3\bin;
    
    kmk > E:\z_Build2\VirtualBox-2.2.0_OSE.build.log 2>&1
    
  • Error-1

    Code: Select all

    kBuild: Linking SUPR0IdcClient
    kBuild: Installing SUPR0IdcClient => E:/z_Build2/VirtualBox-2.2.0_OSE/out/win.x86/release/lib/SUPR0IdcClient.lib
    E:/z_Build2/VirtualBox-2.2.0_OSE/kBuild/bin/win.x86/kmk_redirect.exe -E 'PYTHONPATH=E:/z_Build2/VirtualBox-2.2.0_OSE/src/VBox/GuestHost/OpenGL/glapi_parser;E:/z_Build2/VirtualBox-2.2.0_OSE/src/VBox/GuestHost/OpenGL/packer;E:/z_Build2/VirtualBox-2.2.0_OSE/src/VBox/HostServices/SharedOpenGL/crserverlib' -o E:/z_Build2/VirtualBox-2.2.0_OSE/out/win.x86/release/obj/VBoxOGLgen/spu_dispatch_table.h  -- python-not-found.exe E:/z_Build2/VirtualBox-2.2.0_OSE/src/VBox/GuestHost/OpenGL/spu_loader/dispatchheader.py E:/z_Build2/VirtualBox-2.2.0_OSE/src/VBox/GuestHost/OpenGL/glapi_parser
    kmk_redirect.exe: error: _spawnvp(_P_WAIT, "python-not-found.exe", ...) failed: No such file or directory
    kmk.exe[2]: *** [E:/z_Build2/VirtualBox-2.2.0_OSE/out/win.x86/release/obj/VBoxOGLgen/spu_dispatch_table.h] Error 1
    
  • Resolve-1
    Edit E:\z_Build2\VirtualBox-2.2.0_OSE\AutoConfig.kmk
    Add to the bottom

    Code: Select all

    VBOX_BLD_PYTHON=E:/Python26/python.exe
    
  • Error-2

    Code: Select all

    kBuild: Compiling VBoxOGLcrserverlib - E:/z_Build2/VirtualBox-2.2.0_OSE/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.c
    server_main.c
    e:\z_build2\virtualbox-2.2.0_ose\src\vbox\guesthost\opengl\include\cr_glstate.h(171) : error C2143: syntax error : missing ')' before '*'
    e:\z_build2\virtualbox-2.2.0_ose\src\vbox\guesthost\opengl\include\cr_glstate.h(171) : error C2143: syntax error : missing '{' before '*'
    e:\z_build2\virtualbox-2.2.0_ose\src\vbox\guesthost\opengl\include\cr_glstate.h(171) : error C2059: syntax error : ')'
    .
    .
    .
    E:\z_Build2\VirtualBox-2.2.0_OSE\src\VBox\HostServices\SharedOpenGL\crserverlib\server_main.c(192) : fatal error C1003: error count exceeds 100; stopping compilation
    kmk.exe[2]: *** [E:/z_Build2/VirtualBox-2.2.0_OSE/out/win.x86/release/obj/VBoxOGLcrserverlib/crserverlib/server_main.obj] Error 2
    The failing command:
    @ E:/PROGRA~1/MICROS~1/VC/bin/cl.exe -c -TC -c -nologo -O2 -Zi -Zl -GR- -EHsc -GF -W3 -wd4065 -wd4244 -wd4996 -Zc:wchar_t- -O2 -GS- -Oy- -MT -IE:/z_Build2/VirtualBox-2.2.0_OSE/src/VBox/HostServices/SharedOpenGL/crserverlib -IE:/z_Build2/VirtualBox-2.2.0_OSE/src/VBox/GuestHost/OpenGL/include -IE:/z_Build2/VirtualBox-2.2.0_OSE/out/win.x86/release/obj/VBoxOGLgen -IE:/PROGRA~1/MICROS~3/Include -IE:/z_Build2/VirtualBox-2.2.0_OSE/include -IE:/z_Build2/VirtualBox-2.2.0_OSE/out/win.x86/release -IE:/PROGRA~1/MICROS~1/VC/include -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DRT_OS_WINDOWS -D__WIN__ -DRT_ARCH_X86 -D__X86__ -D__WIN32__ -DIN_RING3 -DCHROMIUM_THREADSAFE -DVBOX_WITH_HGCM -DUNPACKS -DIN_RING3 -DHC_ARCH_BITS=32 -DGC_ARCH_BITS=64 -D_WIN32_WINNT=0x0500 -DWINDOWS=1 -FdE:/z_Build2/VirtualBox-2.2.0_OSE/out/win.x86/release/obj/VBoxOGLcrserverlib/crserverlib/server_main-obj.pdb -FD -FoE:/z_Build2/VirtualBox-2.2.0_OSE/out/win.x86/release/obj/VBoxOGLcrserverlib/crserverlib/server_main.obj E:\\z_Build2\\VirtualBox-2.2.0_OSE\\src\\VBox\\HostServices\\SharedOpenGL\\crserverlib\\server_main.c
    
  • Resolve-2-1

    Code: Select all

    pushd E:\z_Build2\VirtualBox-2.2.0_OSE\src\VBox\HostServices\SharedOpenGL\crserverlib\
    
    move server_main.c          server_main.c.original
    
    copy server_main.c.original server_main.c
    
    popd
    
  • Resolve-2-2
    Change E:\z_Build2\VirtualBox-2.2.0_OSE\src\VBox\HostServices\SharedOpenGL\crserverlib\server_main.c(10-12)

    Code: Select all

    #include "cr_error.h"
    #include "cr_glstate.h"
    #include "cr_string.h"
    
    to

    Code: Select all

    #include "cr_error.h"
    #include "cr_spu.h"
    #include "cr_glstate.h"
    #include "cr_string.h"
    
After build
  • Command

    Code: Select all

    copy E:\z_Build2\qt-win-opensource-src-4.4.3\bin\QtCore4.dll E:\z_Build2\VirtualBox-2.2.0_OSE\out\win.x86\release\bin
    
    copy E:\z_Build2\qt-win-opensource-src-4.4.3\bin\QtGui4.dll E:\z_Build2\VirtualBox-2.2.0_OSE\out\win.x86\release\bin
    
    copy E:\z_Build2\qt-win-opensource-src-4.4.3\bin\QtNetwork4.dll E:\z_Build2\VirtualBox-2.2.0_OSE\out\win.x86\release\bin

    Code: Select all

    cd E:\z_Build2\VirtualBox-2.2.0_OSE\out\win.x86\release\bin
    
    comregister.cmd
    
    SUPUninstall.exe
    
    SUPInstall.exe
    
Rankin
Posts: 50
Joined: 25. May 2009, 18:24
Primary OS: MS Windows XP
VBox Version: OSE self-compiled
Guest OSses: Linux Debian Lenny

Re: Building VirtualBox OSE 2.2.0 on Windows (use VS2005)

Post by Rankin »

Hello,

First, thank you for all the guides you posted about building VBox OSE on Windows, it's very helpful. I try to build the 2.2.2 version, I use the same directory as you did, and the same versions of gcc, QT, DirectX SDK... I don't use Win 2003 Server though, but Windows XP (SP3, 32 bits).

Well, the building of Qt succeeded, the configure of VBox too. I encountered the same errors as you did for another version (__readdr and __writedr in asm.h).

This error resolved, I started the build again and a few time later, I met this new error :

D:\zBuild\VirtualBox-2.2.2_OSE\src\VBox\Runtime\r3\win\fileio-win.cpp(287) : error C2664: 'CreateFileW': impossible de convertir le paramètre 1 de 'PRTUTF16' en 'LPCWSTR'

It's a problem of cast. I tried to make the cast manually by adding (LPCWSTR) before the variable ; it worked but the same error is returned in many other files. I guess I miss some version of a header of a library ? I didn't found this error on the forum and I hope somebody will be able to help me.

Sorry for my english and ask me if you need more information ! Thanks.
yk700101
Posts: 43
Joined: 7. Feb 2009, 00:17
Primary OS: MS Windows Vista
VBox Version: OSE self-compiled
Guest OSses: Debian
Location: Japan
Contact:

__DOXYGEN__ is not defined

Post by yk700101 »

Rankin wrote: D:\zBuild\VirtualBox-2.2.2_OSE\src\VBox\Runtime\r3\win\fileio-win.cpp(287) : error C2664: 'CreateFileW': impossible de convertir le paramètre 1 de 'PRTUTF16' en 'LPCWSTR'
VirtualBox-2.2.2_OSE\src\VBox\Runtime\r3\win\fileio-win.cpp

Code: Select all

...

#ifdef __DOXYGEN__
# define RT_DONT_CONVERT_FILENAMES 1
#endif

...

    /*
     * Open/Create the file.
     */
#ifdef RT_DONT_CONVERT_FILENAMES
    HANDLE hFile = CreateFile(pszFilename,
                              dwDesiredAccess,
                              dwShareMode,
                              pSecurityAttributes,
                              dwCreationDisposition,
                              dwFlagsAndAttributes,
                              NULL);
#else
    PRTUTF16 pwszFilename;
    rc = RTStrToUtf16(pszFilename, &pwszFilename);
    if (RT_FAILURE(rc))
        return rc;

    HANDLE hFile = CreateFileW(pwszFilename,
                               dwDesiredAccess,
                               dwShareMode,
                               pSecurityAttributes,
                               dwCreationDisposition,
                               dwFlagsAndAttributes,
                               NULL);
#endif
Your error was caused by __DOXYGEN__ .
__DOXYGEN__ is defined in VirtualBox-2.2.2_OSE\src\VBox\Runtime\Doxyfile .
Maybe your build environment is broken.
Rankin
Posts: 50
Joined: 25. May 2009, 18:24
Primary OS: MS Windows XP
VBox Version: OSE self-compiled
Guest OSses: Linux Debian Lenny

Re: Building VirtualBox OSE 2.2.0 on Windows (use VS2005)

Post by Rankin »

Thank you for your answer. How can I fix this ? The configure script hasn't returned any error...
yk700101
Posts: 43
Joined: 7. Feb 2009, 00:17
Primary OS: MS Windows Vista
VBox Version: OSE self-compiled
Guest OSses: Debian
Location: Japan
Contact:

Please show me your AutoConfig.kmk and error message detail.

Post by yk700101 »

Rankin wrote:Thank you for your answer. How can I fix this ? The configure script hasn't returned any error...
Please show me your AutoConfig.kmk and error message detail.
Rankin
Posts: 50
Joined: 25. May 2009, 18:24
Primary OS: MS Windows XP
VBox Version: OSE self-compiled
Guest OSses: Linux Debian Lenny

Re: Building VirtualBox OSE 2.2.0 on Windows (use VS2005)

Post by Rankin »

Here is my Autoconfig.kmk :

Code: Select all

# -*- Makefile -*-
#
# Build configuration generated by cscript configure.vbs "--with-DXSDK=D:\Utilitaires\Programmation\Microsoft DirectX SDK" --with-MinGW=D:\zBuild\MinGW --with-libSDL=D:\zBuild\SDL-1.2.13 --with-Qt4=D:\zBuild\qt-win-opensource-src-4.4.3
#
VBOX_OSE := 1
PATH_TOOL_VCC70 := D:/UTILIT~1/PROGRA~1/MICROS~3/VC
PATH_SDK_WINPSDK      := D:/UTILIT~1/PROGRA~1/MICROS~1
PATH_SDK_WINPSDKINCS   = $(PATH_SDK_WINPSDK)
PATH_SDK_WIN32SDK      = $(PATH_SDK_WINPSDK)
PATH_SDK_WIN64SDK      = $(PATH_SDK_WINPSDK)
PATH_SDK_W2K3DDK      := D:/WINDDK/3790~1.183
PATH_SDK_W2K3DDKX86    = $(PATH_SDK_W2K3DDK)
PATH_SDK_W2K3DDKAMD64  = $(PATH_SDK_W2K3DDK)
VBOX_MAIN_IDL = D:/UTILIT~1/PROGRA~1/MICROS~1/bin/Midl.exe
PATH_SDK_DXSDK        := D:/UTILIT~1/PROGRA~1/MICROS~2
PATH_SDK_DXSDKX86      = $(PATH_SDK_DXSDK)
PATH_SDK_DXSDKAMD64    = $(PATH_SDK_DXSDK)
PATH_TOOL_MINGW32     := D:/zBuild/MinGW
PATH_SDK_W32API        = D:\zBuild\MinGW
PATH_SDK_LIBSDL       := D:/zBuild/SDL-1.2.13
PATH_SDK_QT4          := D:/zBuild/qt-win-opensource-src-4.4.3
PATH_TOOL_QT4          = $(PATH_SDK_QT4)
VBOX_PATH_QT4          = $(PATH_SDK_QT4)
and the error message I got (actually all the output of kmk) :

Code: Select all

D:/zBuild/VirtualBox-2.2.2_OSE/src/VBox/Main/webservice/Makefile.kmk:99: VBOX_PATH_GSOAP not found...
kBuild: Pass - Build Programs
kmk.exe[1]: Entering directory `D:/zBuild/VirtualBox-2.2.2_OSE'
D:/zBuild/VirtualBox-2.2.2_OSE/src/VBox/Main/webservice/Makefile.kmk:99: VBOX_PATH_GSOAP not found...
kmk.exe[2]: Entering directory `D:/zBuild/VirtualBox-2.2.2_OSE'
D:/zBuild/VirtualBox-2.2.2_OSE/src/VBox/Main/webservice/Makefile.kmk:99: VBOX_PATH_GSOAP not found...
kmk.exe[2]: Nothing to be done for `pass_bldprogs_doit'.
kmk.exe[2]: Leaving directory `D:/zBuild/VirtualBox-2.2.2_OSE'
kmk.exe[1]: Leaving directory `D:/zBuild/VirtualBox-2.2.2_OSE'
kBuild: Pass - Libraries
kmk.exe[1]: Entering directory `D:/zBuild/VirtualBox-2.2.2_OSE'
D:/zBuild/VirtualBox-2.2.2_OSE/src/VBox/Main/webservice/Makefile.kmk:99: VBOX_PATH_GSOAP not found...
kmk.exe[2]: Entering directory `D:/zBuild/VirtualBox-2.2.2_OSE/src/VBox/Devices/PC/Etherboot-src'
kmk.exe[2]: Nothing to be done for `pass_libraries'.
kmk.exe[2]: Leaving directory `D:/zBuild/VirtualBox-2.2.2_OSE/src/VBox/Devices/PC/Etherboot-src'
kmk.exe[2]: Entering directory `D:/zBuild/VirtualBox-2.2.2_OSE'
D:/zBuild/VirtualBox-2.2.2_OSE/src/VBox/Main/webservice/Makefile.kmk:99: VBOX_PATH_GSOAP not found...
kBuild: Compiling RuntimeR3 - D:/zBuild/VirtualBox-2.2.2_OSE/src/VBox/Runtime/r3/win/fileio-win.cpp
clÿ: Ligne de commande warning D9035ÿ: l'option 'Og' est d‚sapprouv‚e et sera supprim‚e dans une version ult‚rieure
fileio-win.cpp
D:\zBuild\VirtualBox-2.2.2_OSE\src\VBox\Runtime\r3\win\fileio-win.cpp(287) : error C2664: 'CreateFileW'ÿ: impossible de convertir le paramŠtre 1 de 'PRTUTF16' en 'LPCWSTR'
        Les types point‚s n'ont aucun rapport entre euxÿ; conversion n‚cessitant reinterpret_cast, cast de style C ou cast de style fonction
D:\zBuild\VirtualBox-2.2.2_OSE\src\VBox\Runtime\r3\win\fileio-win.cpp(304) : error C2664: 'SetFileAttributesW'ÿ: impossible de convertir le paramŠtre 1 de 'PRTUTF16' en 'LPCWSTR'
        Les types point‚s n'ont aucun rapport entre euxÿ; conversion n‚cessitant reinterpret_cast, cast de style C ou cast de style fonction
D:\zBuild\VirtualBox-2.2.2_OSE\src\VBox\Runtime\r3\win\fileio-win.cpp(785) : error C2664: 'DeleteFileW'ÿ: impossible de convertir le paramŠtre 1 de 'PRTUTF16' en 'LPCWSTR'
        Les types point‚s n'ont aucun rapport entre euxÿ; conversion n‚cessitant reinterpret_cast, cast de style C ou cast de style fonction
kmk.exe[2]: *** [D:/zBuild/VirtualBox-2.2.2_OSE/out/win.x86/release/obj/RuntimeR3/r3/win/fileio-win.obj] Error 2
The failing command:
@ D:/UTILIT~1/PROGRA~1/MICROS~3/VC/bin/cl.exe -c -TP -c -nologo -O2 -Zi -Zl -GR- -EHsc -GF -W3 -wd4065 -wd4244 -Ogitb2 -Oy- -MT -ID:/zBuild/VirtualBox-2.2.2_OSE/src/VBox/Runtime/include -ID:/zBuild/VirtualBox-2.2.2_OSE/src/libs/zlib-1.2.1 -ID:/zBuild/VirtualBox-2.2.2_OSE/src/libs/liblzf-1.51 -ID:/UTILIT~1/PROGRA~1/MICROS~1/Include -ID:/UTILIT~1/PROGRA~1/MICROS~1/Include -ID:/WINDDK/3790~1.183/inc/ddk -ID:/WINDDK/3790~1.183/inc/ddk/wnet -ID:/WINDDK/3790~1.183/inc/wnet -ID:/WINDDK/3790~1.183/inc/ddk/wdm/wnet -ID:/zBuild/VirtualBox-2.2.2_OSE/include -ID:/zBuild/VirtualBox-2.2.2_OSE/out/win.x86/release -ID:/UTILIT~1/PROGRA~1/MICROS~3/VC/include -ID:/UTILIT~1/PROGRA~1/MICROS~3/VC/atlmfc/include -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DRT_OS_WINDOWS -D__WIN__ -DRT_ARCH_X86 -D__X86__ -D__WIN32__ -D_X86_ -DIN_RING3 -DHC_ARCH_BITS=32 -DGC_ARCH_BITS=64 -DIN_RT_R3 -DIN_SUP_R3 -DLDR_WITH_NATIVE -DLDR_WITH_ELF32 -DLDR_WITH_PE -DRT_WITH_VBOX -DRT_NO_GIP -FdD:/zBuild/VirtualBox-2.2.2_OSE/out/win.x86/release/obj/RuntimeR3/r3/win/fileio-win-obj.pdb -FD -FoD:/zBuild/VirtualBox-2.2.2_OSE/out/win.x86/release/obj/RuntimeR3/r3/win/fileio-win.obj D:\\zBuild\\VirtualBox-2.2.2_OSE\\src\\VBox\\Runtime\\r3\\win\\fileio-win.cpp
kmk.exe[2]: *** [D:/zBuild/VirtualBox-2.2.2_OSE/out/win.x86/release/obj/RuntimeR3/r3/win/fileio-win.obj] Deleting file `D:/zBuild/VirtualBox-2.2.2_OSE/out/win.x86/release/obj/RuntimeR3/r3/win/fileio-win-obj.idb'
kmk.exe[2]: Leaving directory `D:/zBuild/VirtualBox-2.2.2_OSE'
kmk.exe[1]: *** [pass_libraries_this] Error 2
kmk.exe[1]: Leaving directory `D:/zBuild/VirtualBox-2.2.2_OSE'
kmk: *** [pass_libraries_order] Error 2
I guess there is a problem with VBOX_PATH_GSOAP too, but I don't know what exactly to install, I found the error on another topic but I think there are 2 different problems... What do you think about it ?
yk700101
Posts: 43
Joined: 7. Feb 2009, 00:17
Primary OS: MS Windows Vista
VBox Version: OSE self-compiled
Guest OSses: Debian
Location: Japan
Contact:

You are using not VS2005 but VS2003 ?

Post by yk700101 »

Rankin wrote:I guess there is a problem with VBOX_PATH_GSOAP too, but I don't know what exactly to install, I found the error on another topic but I think there are 2 different problems... What do you think about it ?
Sorry, I don't know how to fix "VBOX_PATH_GSOAP not found" error.
Rankin wrote:PATH_TOOL_VCC70 := D:/UTILIT~1/PROGRA~1/MICROS~3/VC
PATH_TOOL_VCC70 is VS2003.
PATH_TOOL_VCC80 is VS2005.

You are using not VS2005 but VS2003 ?
If you are using VS2005 , please check output of your configure.vbs .
And please try command line option of configure.vbs .
Rankin
Posts: 50
Joined: 25. May 2009, 18:24
Primary OS: MS Windows XP
VBox Version: OSE self-compiled
Guest OSses: Linux Debian Lenny

Re: Building VirtualBox OSE 2.2.0 on Windows (use VS2005)

Post by Rankin »

I use VS2005. I found the error in configure.vbs, I changed the first "Version 14." which doesn't correspond with my language, but haven't seen the second that didn't output an error. My Autoconfig.kmk contains now

Code: Select all

VBOX_USE_VCC80        := 1
PATH_TOOL_VCC80       := D:/UTILIT~1/PROGRA~1/MICROS~3/VC
PATH_TOOL_VCC80X86     = $(PATH_TOOL_VCC80)
PATH_TOOL_VCC80AMD64   = $(PATH_TOOL_VCC80)
It's compiling now ; it takes time, I cross fingers. I'll tell you if it's worked or not !
Rankin
Posts: 50
Joined: 25. May 2009, 18:24
Primary OS: MS Windows XP
VBox Version: OSE self-compiled
Guest OSses: Linux Debian Lenny

Re: Building VirtualBox OSE 2.2.0 on Windows (use VS2005)

Post by Rankin »

It works !! I encountered the python error, resolved it, and finally it worked. Thank you very much for your help :)
Post Reply