Appendix G: Building NSIS

NSIS version 2.07 introduced a new build system, based on SCons. The build system can build the entire NSIS package so you no longer need to build it project by project. It allows building using several simultaneous jobs, installation without an installer on both Windows and POSIX and easy compilation with debugging symbols.

The official release is built with MSVC6 Service Pack 5(Mirror) with the Processor Pack and the February 2003 Platform SDK (5.2.3790.0).

G.1 Building in General

Source code is available in SVN and as a separate package with every NSIS distribution.

To build NSIS, Python and SCons must be installed. Currently, the supported version of SCons is version 1.2.0 and above. Any version of Python 2.7 and above is supported.

NSIS uses the zlib compression library. As a consequence the header and library files of zlib must be installed.

In case these zlib development files aren't present then they could be installed via a package manager (apt-get, aptitude, rpm, yum) on POSIX platforms. Another option is to build zlib from scratch and install it.

For Windows it is recommended to download zlib from http://nsis.sf.net/Zlib. Extract the contents of this zip archive to a folder of your choice, e.g. C:\dev\zlib-1.2.7 and set an environment variable named ZLIB_W32 containing this path.

  1. C:\>set ZLIB_W32=C:\dev\zlib-1.2.7

Alternatively the command line option ZLIB_W32 specifying the path can be passed to scons instead of the environment variable.

  1. C:\dev\nsis>scons ZLIB_W32=C:\dev\zlib-1.2.7

The header and library files are assumed to be in %ZLIB_W32%. In addition scons checks for zlib header files in %ZLIB_W32%\include, the import library zdll.lib in %ZLIB_W32%\lib and the dynamic link library zlib1.dll in %ZLIB_W32% respectively %ZLIB_W32%\lib.

To build, open a console, change the working directory to the root directory of NSIS and type scons. That's it. For example:

  1. C:\>cd dev\nsis
  2. C:\dev\nsis>scons
  3. scons: Reading SConscript files ...
  4. Using Microsoft tools configuration
  5. Checking for main() in C library gdi32... (cached) yes
  6. Checking for main() in C library user32... (cached) yes
  7. Checking for main() in C library version... (cached) yes
  8. Checking for main() in C library pthread... (cached) no
  9. Checking for main() in C library stdc++... (cached) no
  10. Checking for main() in C library iconv... (cached) no
  11. Checking for main() in C library libiconv... (cached) no
  12. scons: done reading SConscript files.
  13. scons: Building targets ...
  14. ...

To install the built files, type:

  1. scons PREFIX="C:\Program Files\NSIS" install

To create an installer (only on Windows), type:

  1. scons dist-installer

To create a distribution zip file, type:

  1. scons dist-zip

To create both, type:

  1. scons dist

To get a complete list of options that the build system has to offer, type:

  1. scons -h

To get a complete list of options SCons has to offer, type:

  1. scons -H

G.2 Building on Windows

SCons will automatically detect Microsoft Visual C++. If you are looking for a free compiler to compile NSIS, we recommend Microsoft Visual C++ 2005 Express Edition.

When using the Microsoft Visual C++ Toolkit 2003, add MSTOOLKIT=yes to the build command line:

  1. scons MSTOOLKIT=yes

In case of errors about the compiler or the Platform SDK not being found, use:

  1. set MSSDK=C:\Path\To\Platform SDK
  2. set VCToolkitInstallDir=C:\Path\To\VCToolkit
  3. scons MSTOOLKIT=yes

The open-source MinGW can also be used to for building but this results in noticeably larger installers. Borland C++ or Open Watcom C/C++ might also work, but haven't been tested.

To compile the documentation as a CHM file, hhc.exe must be in the PATH. It is available as part of HTML Help Workshop.

To build NSIS Menu, install wxWidgets 2.8, create an environment variable named WXWIN containing the path to the installation directory of wxWidgets, run Contrib\NSIS Menu\wx\wxbuild.bat and build NSIS as usual.

Important notes for Microsoft Visual C++ 6.0 users: The 2003 Platform SDK must be installed before building, you can download it here or order it on CD. Because of flaws in the libraries distributed with Microsoft Visual C++ 6.0, not installing the Platform SDK will result in crashes when using the CopyFiles command. See this forum topic for more information. Installing the Processor Pack is highly recommended to decrease the size of the installer overhead.

Important note for Microsoft Visual C++ 2012 users: Installers generated using this release and beyond will not be able to run on Windows 9x or Windows 2000. The minimum requirement for 2012 is Windows XP.

G.3 Building on POSIX

As of NSIS 2.01, the compiler, makensis, also compiles on POSIX platforms. POSIX platforms include Linux, *BSD, Mac OS X and others. Since the generated installer will eventually run on Windows, a cross-compiler is needed in order to compile them.

The command line option XGCC_W32_PREFIX could be used to explicitly select a specific win32 targeted cross compiler. The value of XGCC_W32_PREFIX has to be the prefix of the toolchain. For example XGCC_W32_PREFIX=i686-w64-mingw32- would deploy the win32 targeted MinGW-w64 cross compiler if it is available on the build system.

If no cross-compiler is available, use the following:

  1. scons SKIPSTUBS=all SKIPPLUGINS=all SKIPUTILS=all SKIPMISC=all
  2. NSIS_CONFIG_CONST_DATA_PATH=no PREFIX=/path/to/extracted/zip
  3. install-compiler

This should only build makensis and install it to the directory where a precompiled package, such as the nightly build or a zipped release version (nsis-x.xx.zip), is extracted. Note that the in order for this to work, the precompiled package must be compiled using the exact same sources as makensis. In particular, Source\exehead\config.h, the options passed to scons and Source\exehead\fileform.h must be identical. Nightly builds and zipped release versions are built with the default options.

To build a native version of NSIS Menu, install wxWidgets 2.8 and build as usual. wx-config must be in the path.

G.4 Nightly Builds

There is no need to manually build the latest SVN version for Windows. A nightly build is available. The nightly build is automatically generated every night, using the latest version of the source code from SVN. There is no official nightly build for other platforms.