Difference between revisions of "Viewer 2 Microsoft Windows Builds"

From Second Life Wiki
Jump to navigation Jump to search
m (Redirected page to Visual Studio 2013 Viewer Builds)
 
(378 intermediate revisions by 23 users not shown)
Line 1: Line 1:
{{multi-lang}}
#REDIRECT [[Visual Studio 2013 Viewer Builds]]
{{CompileNav}}
 
{{KBwarning|custom=Work in progress|'''These instructions are not yet complete or  debugged''' as of 18 April 2010.}}
 
When finished, we hope this page will constitute a complete recipe for compiling viewer 2 from source on a Windows machine. 
 
Philosophy: to keep it brief, this page should only include steps we KNOW ARE NEEDED, not random hints.  Extra details or open issues can go on the talk page.
 
{{KBnote|Following this recipe will probably take 6 to 12 hours of wall-clock time, and 2 to 6 hours of your time, if you're starting from a fresh Windows XP/Vista/7 system.}}
 
== Establish your programming environment ==
This is needed for compiling any viewer based on the LL open source code, but only needs to be done once.
 
* Obtain Visual Studio (2005, 2008, 2010) (Express is OK)
** [http://www.microsoft.com/express/download/ Click here to download Visual C++ Express - current version is VS2010]
** Note: LL still uses VS2005 internally, which uses the VC80 libraries.  Until LL upgrades their internal build systems to use VS2010 you will have the least amount of trouble if you search out a copy of VS2005.  VS2008 uses the VC90 libraries. VS2010 TBD (test with the VC90 libraries new ones for VC100 may need to be made).
* Install Microsoft Platform & DirectX SDKs
** Download and install [http://www.microsoft.com/downloads/details.aspx?FamilyID=F26B1AA4-741A-433A-9BE5-FA919850BDBF&displaylang=en Windows SDK for Windows Server 2008 and .NET Framework 3.5] and [http://www.microsoft.com/downloads/en/details.aspx?FamilyID=c17ba869-9671-4330-a63e-1fd44e0e2505&displaylang=en Microsoft Windows SDK for Windows 7 and .NET Framework 3.5 SP1]
** Download and install [http://www.microsoft.com/downloads/en/details.aspx?displaylang=en&FamilyID=3021d52b-514e-41d3-ad02-438a3ba730ba DirectX SDK (June 2010)]
 
* Install other development tools
** '''UniCode NSIS'''([http://code.google.com/p/unsis/downloads/list download Unicode NSIS])
***  This is the package installer used to build Setup.exe.
** '''CMake''' ([http://www.cmake.org/HTML/Download.html download CMake])
*** must be version 2.6.2 or higher (and ensure any older versions aren't in your PATH environment variables)
** '''Cygwin''' ([http://www.cygwin.com/ download Cygwin])
*** When you run the cygwin setup utility make sure you have selected to install '''patchutils''', '''flex''', and '''bison''' (all located under "devel") which are not part of the default install.
** '''Python''' (download either [http://www.python.org/download/ Python.org Standard Python] or  [http://www.activestate.com/activepython/downloads ActivePython]) Note: build scripts support Python 2.6, not 2.7 yet.
** '''TortoiseHg''' ([http://tortoisehg.bitbucket.org/ download TortoiseHg])
** '''Notepad++''' ([http://notepadplusplus.org/ download Notepad++]) (Optional) You need to use an editor that preserves line endings and that allows you to set them when you create new files.
{{KBnote|If the installer for a particular package does not update your PATH environment setting you will have to do this manually.}}
 
== Download and compile libraries that must be manually added to each LL source release ==
 
It is probably a good idea to build an empty directory tree for the files below and first copy the files there and once completed, copy the whole tree to the actual source folder. Then, if you obtain a new batch of source code, you can save some steps.
 
rem OLIBS.CMD to build a folder tree for 3rd party libraries and includes
  md olibs\linden\libraries\i686-win32\lib\release
  md olibs\linden\libraries\i686-win32\lib\debug
  md olibs\linden\libraries\i686-win32\include\GL
  md olibs\linden\libraries\i686-win32\include\quicktime
  md olibs\linden\indra\newview
 
 
VCS folder tree - for simplicity of copying files to your build folder
  trunk\indra\newview
  trunk\libraries\i686-win32\include\GL
  trunk\libraries\i686-win32\include\quicktime
  trunk\libraries\i686-win32\lib\debug
  trunk\libraries\i686-win32\lib\release
           
 
=== Quicktime ===
 
* Download & install the [http://developer.apple.com/quicktime/download/ Quicktime SDK for Windows] (login may be necessary).
* copy "QuicktimeSDK\Libraries\QTMLClient.lib" to "olibs\linden\libraries\i686-win32\lib\release" and to "olibs\linden\libraries\i686-win32\lib\debug"
* Copy the contents of "QuicktimeSDK\CIncludes" into "olibs\linden\libraries\i686-win32\include\quicktime".
 
=== Fmod ===
* Download & extract [http://www.fmod.org/files/fmod3/fmodapi375win.zip FMOD3.75 API for Windows]. (later versions, like FMOD Ex, are incompatible).
* Copy "fmodapi375win\api\inc\fmod.h" to "olibs\linden\libraries\include"
* Copy "fmodapi375win\api\inc\fmod_errors.h" to "olibs\linden\libraries\include"
* Copy "fmodapi375win\api\inc\fmoddyn.h" to "olibs\linden\libraries\include"
* Copy "fmodapi375win\api\lib\fmodvc.lib" to "olibs\linden\libraries\i686-win32\lib\release" and to "olibs\linden\libraries\i686-win32\lib\debug"
* Copy "fmodapi375win\api\fmod.dll" to "olibs\linden\indra\newview"
 
Note to Snowstorm users: if you are building using the Mercurial repository [https://bitbucket.org/lindenlab/viewer-development lindenlab/viewer-development], these steps have been simplified and cleaned up. In particular, there's no need to drop anything under linden\indra anymore, all the files are under linden\libraries like for other 3rd party libraries. The fmodvc.lib however needs to be renamed fmod.lib. The new instructions are:
* Download & extract [http://www.fmod.org/files/fmod3/fmodapi375win.zip FMOD3.75 API for Windows]
* From <code>fmodapi375win\api\inc\</code>, copy <code>fmod.h</code> and <code>fmod_errors.h</code> to <code>linden\libraries\include</code>
* From <code>fmodapi375win\api\lib</code>, choose the relevant .lib that correspond to your environment (e.g. <code>fmodvc.lib</code> for Visual Studio), rename it <code>fmod.lib</code> and copy it to <code>linden\libraries\i686-win32\lib\release</code> and <code>linden\libraries\i686-win32\lib\debug</code>
* From <code>fmodapi375win\api</code> copy <code>fmod.dll</code> to <code>linden\libraries\i686-win32\lib\release</code> and <code>linden\libraries\i686-win32\lib\debug</code>
 
=== Boost ===
 
Only needed if not using VS2005.
 
* Grab the files that Robin Cornelius has precompiled at
http://www.byteme.org.uk/downloads/boost_1_39_VC90_no_scl_shared_crt_static_link.zip
* If you get the zip file from Robin Cornelius copy the libraries folder into the the tree you made above for  fmod and QuickTime files that way you have a ready back up of those files for if you update your build directory from the SVN server.
* or alternatively follow the instructions from the 25/Feb/10 and 15/Apr/10 entries of http://jira.secondlife.com/browse/VWR-9541
 
((TBD: verify, simplify, fix))
 
=== cares ===
TBD
 
== Set up your source code tree ==
 
Plan your directory structure ahead of time.  If you are going to be producing changes or patches you will be cloning a copy of an unaltered source code tree for every change or patch you make, so you might want to have all this work stored in it's own directory.
 
To get a copy of the source code tree:
* Open up a DOS/Command window
* Make a directory to contain it (it is strongly suggested to name it <code>viewer-development</code>)
* Go into that directory
* Do <code>hg init</code>
* Do <code>hg pull <nowiki>http://hg.secondlife.com/viewer-development</nowiki></code>
 
* Example:  ((specific snapshot example TBD))
 
Let's say some time has gone by since you have performed the previous steps and now you want to develop a change or work on a jira.  You will
* Go into <code>viewer-development</code> (or whatever you named the master source tree copy)
* Do <code>hg pull</code>
* Do <code>hg update</code>
* Move up one level from <code>viewer-development</code>
* Do <code>hg clone viewer-development VWR-nnnnn</code> (where <code>nnnnn</code> is the jira number, or clone to a name of your choosing if there is not jira number)
* Copy your <code>olibs</code> from above into this new source tree.
 
== Fix known problems with the source code tree ==
 
TBD - edits to scripts that must be made for windows VC90 builds to succeed?
 
Known Problems:
* /indra/cmake/Boost.cmake file has to be edited as shown in [http://jira.secondlife.com/browse/VWR-9541?focusedCommentId=168967&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#action_168967 VWR-9541] in order to use the boost files in VS2008.
 
== Initial build steps using develop.py and CMake ==
 
You may notice that there's no Visual Studio project file as part of the distributed source tree.  That's because it is GENERATED in this step using command-line tools.  Only after this step can you begin using the IDE.
 
* open a Command Prompt window
 
* Run develop.py --
** From the command line, '''cd into the indra subdirectory'''
** Run <code>"develop.py -G VC90"</code> or <code>"python develop.py -G VC90"</code> NOTE: use <code> -G VC80 </code> if you are using VS2005
NOTE: Visual Studio 2010 support is not included by default. Reference [https://jira.secondlife.com/browse/VWR-24594 VWR-24594] for more details and fixes.
 
NOTE: Some resources may be downloaded automatically at this point if they do not yet exist.
 
** The <code>develop.py</code> script will create and populate a build directory for you.  It should be in <code>'build-vc90'</code> or <code>'build-vc80'</code> if using VS2005
 
When it completes you will get your command prompt back and it should say something like:
 
Trying to set active config to "RelWithDebInfo"
  Success!
Trying to set "secondlife-bin" to the startup project
  Success!
got ret 0 from tools\vstool\VSTool.exe --solution build-VC80\SecondLife.sln --config RelWithDebInfo --startup secondlife-bin
 
== Compile using the IDE ==
 
* Run Visual Studio.
* Configure Visual Studio.
**Use Tools>Options to get the Options window open.
**Goto Projects and Solutions>VC++ Directories and set the following:
Executable Files:
$(SystemRoot)
$(SystemRoot)\System32
$(SystemRoot)\System32\wbem
$(VCInstallDir)bin
$(VCInstallDir)PlatformSDK\bin
$(VCInstallDir)PlatformSDK\common\bin
$(VSInstallDir)Common7\Tools\bin
$(VSInstallDir)Common7\tools
$(VSInstallDir)Common7\ide
$(ProgramFiles)\HTML Help Workshop
$(FrameworkSDKDir)bin
$(FrameworkDir)$(FrameworkVersion)
$(VSInstallDir)
C:\Program Files\Microsoft SDKs\Windows\v7.0\Bin
C:\Program Files\Microsoft SDKs\Windows\v6.1\Bin
C:\Python26
C:\Program Files\NSIS
$(SystemRoot)\SysWow64  (needed in 64-bit windows versions, exclude for 32-bit)
$(FxCopDir)
$(PATH)
C:\cygwin\bin
 
Included Files:
$(VCInstallDir)include
$(VCInstallDir)atlmfc\include
$(VCInstallDir)PlatformSDK\include
$(VCInstallDir)PlatformSDK\common\include
$(FrameworkSDKDir)include
C:\Program Files\Microsoft SDKs\Windows\v7.0\Include
C:\Program Files\Microsoft SDKs\Windows\v7.0\Include\gl
C:\Program Files\Microsoft SDKs\Windows\v7.0\Samples\winui\TSF\tsfapp
C:\Program Files\Microsoft SDKs\Windows\v6.1\Include
C:\Program Files\Microsoft SDKs\Windows\v6.1\Include\gl
C:\Program Files\Microsoft SDKs\Windows\v6.1\Samples\winui\TSF\tsfapp
C:\Program Files\Microsoft DirectX SDK (June 2010)\Include
 
Library Files:
$(VCInstallDir)lib
$(VCInstallDir)atlmfc\lib
$(VCInstallDir)atlmfc\lib\i386
$(VCInstallDir)PlatformSDK\lib
$(VCInstallDir)PlatformSDK\common\lib
$(FrameworkSDKDir)lib
$(VSInstallDir)
$(VSInstallDir)lib
C:\Program Files\Microsoft SDKs\Windows\v7.0\Lib
C:\Program Files\Microsoft SDKs\Windows\v6.1\Lib
C:\Program Files\Microsoft DirectX SDK (June 2010)\Lib\x86
 
* Use '''File''' > '''Open''' > '''Project/Solution''', navigate to <code>linden/indra/build-VC90/Viewer.vcproj</code>, and open it.
** if you can't find this file, perhaps your previous run of <code>develop.py</code> failed.
* In the MSVS toolbar, just to the right of the triangular '''Start Debugging''' arrow, is a text box whose tooltip is "Solution Configurations". Select <code>RelWithDebugInfo</code>.
* If <code>ALL_BUILD</code> is not set as your StartUp Project (the StartUp Project is displayed in bold font), right-click on <code>ALL_BUILD</code> and choose '''Set as StartUp Project'''.
* Right-click on <code>ALL_BUILD</code> and choose '''Properties'''. In '''Configuration Properties''' > '''Debugging''', find <code>Working Directory</code> and navigate to <code>linden\indra\newview</code>.
* '''Build''' > '''Build Solution (F7)'''
 
== Iteratively fix things until the compile succeeds ==
 
((TBD - add any fixup steps here.  e.g. does <code>fmod375.dll</code> need to be moved into <code>RelWithDbgInfo</code> at this step?))
 
* report your experiences, if useful, on the talk page, [[Talk:Viewer 2 Microsoft Windows Builds]]
 
== Common Issues/Bugs/Glitches And Solutions ==
 
*Getting help:
** Subscribe to [[OpenSource-Dev|OpenSource-Dev Mailing List]] ([https://lists.secondlife.com/cgi-bin/mailman/listinfo/opensource-dev subscribe]) and post your question there.
** For faster response, find a free IRC client program and join [irc://irc.freenode.org/opensl #opensl on freenode], the general open source viewer discussion and development channel.  Hopefully a helpful person is online when you ask your question.
 
*Applies to Visual C++ 2005 Express:
 
The build scripts seem to be a state of flux on how to properly
handle picking up 3 Microsoft support files:
* <code>Microsoft.VC80.CRT.manifest</code>
* <code>msvcp80.dll</code>
* <code>msvcr80.dll</code>
 
If you get errors about these files you will need to manually place them in
* <code>../build-VC80/newview/release</code> (and/or <code>/debug</code> or <code>/relwithdebinfo</code>) and
* <code>../build-VC80/sharedlib/release</code>
 
{{KBnote|These directories will not exist until your compile session has run for a little while.}}
 
The source of these files should be in a folder named <code>vcredist_vc80_4053_x86</code>. If you cannot find these on your hard drive follow the instructions at [[User:Robin_Cornelius/viewer-development_VC2005_Express]] to get them.
 
---------------------
 
If you run into an issue when running <code>develop.py</code> similar to this:
 
1>Linking...
1>link: extra operand `/ERRORREPORT:QUEUE'
1>Try `link --help' for more information.
1>Project : error PRJ0002 : Error result 1 returned from 'C:\cygwin\bin\link.exe'.
 
You may have not configured Visual Studio properly. The articles in this wiki in regards to the setup of executable paths do not specify an order or priority, but you must make sure that the CYGWIN executable path is set lower in the list than the VC++ paths, otherwise <code>develop.py</code> winds up executing the CygWin <code>Link.exe</code> which won't work
 
This issue has also been seen when using the Windows Command Prompt instead of the command prompt within VC++ (Visual Studio 2010?).
 
== References ==
 
These instructions are condensed from about a dozen previous pages of info:
*https://wiki.secondlife.com/wiki/Microsoft_Windows_Builds
*https://wiki.secondlife.com/wiki/Compiling_the_Viewer_%28MSVS2008%29
*https://wiki.secondlife.com/wiki/User:Jodiah_Jensen#UPDATING_BOOST_LIBRARIES_TO_WORK_WITH_VS2008
** now partially incorrect
*http://jira.secondlife.com/browse/VWR-9541
 
((add other references here))
 
 
[[Category:Compiling viewer]]

Latest revision as of 12:26, 23 April 2015