-
Notifications
You must be signed in to change notification settings - Fork 0
Compiling On Windows
(If you're looking to make an installable release, go to this page.)
FIXME Mixxx is fading out SCons in favor of cmake starting in 2.3 and will completely switch in 2.4. This page isn't updated with the appropriate instructions yet.
- Visual Studio 2017 Community Edition or the Visual Studio 2017 Build Tools.
- (Visual Studio 2015 may work, but will likely stop working once we start using C++ features that are not implemented by VS2015).
- Python 2.7.x. Ensure Python is on your system PATH (there is an option in the installer to do this). Don't use Python 3.x as Scons is not compatible with it.
- SCONS (download the latest version).
- A Git client like Git for Windows, TortoiseGit or the github windows client (featuring a unix like command line)
To build Mixxx, you need built copies of its dependencies. You may download pre-built versions of them from the Mixxx team (recommended) or build them from source.
You can find pre-built Mixxx dependencies at the bottom of this Github Page.
The folder 2.?.x-windows
contains build environments for the 2.?
release of Mixxx. If you are working on the master branch, always pick
the latest version. If you want to work on a specific branch, pick the
corresponding folder. Check the
build/windows/golden_environment
file in the Mixxx codebase to see what version of the build environment
is currently used for builds.
You may choose between the "release-fastbuild" and "release" variants.
- release-fastbuild is built with link-time code-generation (LTCG) disabled. This leads to faster builds but potentially results in a slower version of Mixxx (we haven't measured it so we don't know). When we build Mixxx on AppVeyor for continuous integration, this is the version we use.
- release is the version used to produce Mixxx releases. It is compiled with LTCG enabled and requires at least 8 GB of memory (or equivalent free space on the disk with your paging file) to link Mixxx.
If you want to build a 32-bit version of Mixxx, choose an "x86" variant. For 64-bit, choose an "x64" variant.
Download and unzip one of these environments. Remember the folder to which the repository was saved. We will refer to that folder as WINLIB_PATH later.
If you want to build the Mixxx dependencies from source instead of downloading pre-built ones:
- Clone the Mixxx buildserver repository. Remember the folder to which the repository was saved. We will refer to that folder as WINLIB_PATH later.
- In the buildserver repository, checkout the 2.?.x-windows branch, depending on which version of Mixxx you are building the dependencies for.
- Start a Windows command prompt (you do not need a Windows SDK command prompt). Open the Start Menu and type "cmd" into the search box and hit enter.
- change into the WINLIB_PATH directory.
cd WINLIB_PATH_GOES_HERE
- Build the environment:
- 32-bit:
build_environment x86 Release
- 64-bit:
build_environment x64 Release
- 32-bit:
This step will take 2-3 hours depending on how many CPU cores you have. Go have lunch.
-
Clone the Mixxx repository. Remember the folder to which the repository was saved. We will refer to that folder as MIXXX_REPO later.
-
Start a command prompt (it doesn't need to be a Windows SDK prompt) and change into the MIXXX_REPO directory.
-
If you are building Mixxx 2.1 or 2.2, create a file called
build.bat
with the following content: ` @echo off SETLOCAL REM Clean up after old builds. del /q /f *.exe rmdir /s /q dist32 rmdir /s /q dist64REM this can be either release or debug. For development you want to use debug set BUILD_TYPE=release
REM This determines if you build a 32bit or 64bit version of mixxx. REM 32bit = i386, 64bit = amd64 set ARCHITECTURE=i386
REM set this to the folder where you built the dependencies set WINLIB_PATH="Enter Path to WINLIB_PATH" SET BIN_DIR=%WINLIB_PATH%\bin REM make sure the Qt version matches the version in WINLIB_PATH. set QT_VERSION=5.11.2 SET QTDIR=%WINLIB_PATH%\Qt-%QT_VERSION%
if "%ARCHITECTURE%" == "i386" ( set TARGET_MACHINE=x86 set VCVARS_ARCH=x86 ) else ( set TARGET_MACHINE=amd64 set VCVARS_ARCH=x86_amd64 )
REM Adjust to your environment call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %VCVARS_ARCH%
rem /MP Use all CPU cores. rem /FS force synchronous PDB writes (prevents PDB corruption with /MP) rem /EHsc Do not handle SEH in try / except blocks. set CL=/MP /FS /EHsc
set PATH=%BIN_DIR%;%PATH% REM Set the -j value to the number of CPU cores (not HT "virtual" cores but physical cores) you have scons -j2 toolchain=msvs winlib=%WINLIB_PATH% build=%BUILD_TYPE% staticlibs=1 staticqt=1 verbose=0 machine=%TARGET_MACHINE% qtdir=%QTDIR% hss1394=1 mediafoundation=1 opus=1 localecompare=1 optimize=portable virtualize=0 test=1 qt_sqlite_plugin=0 build_number_in_title_bar=0 bundle_pdbs=1 ENDLOCAL ` This script will setup the build environment and call scons with the appropriate flags. You have to edit the WINLIB_PATH variable and set it to the absolute path of the folder where you compiled the dependencies for mixxx. If you build the environment yourself instead of using the precompiled environment, you will need to adjust the QTDIR variable too.
-
If you are building Mixxx 2.3, create a file called
build.bat
with the following content `@echo off SETLOCAL enableDelayedExpansionif "%1" == "clean" ( REM Clean up after old builds. del /q /f *.exe del /q /f .sconsign.dblite del config.h rmdir /s /q dist32 rmdir /s /q dist64 rmdir /s /q .sconf_temp rmdir /s /q win32_build rmdir /s /q win64_build rmdir /s /q cache )
REM x86 or x64 SET LOCAL_PROCESSOR=x64
REM debug, release or release-fastbuild. Warning: The debug buildenv is not prebuilt so you need to build it yourself. SET LOCAL_BUILDMODE=release-fastbuild
REM The name of the directory where the libraries are located (and the name of the file to download). REM For the precompiled ones, it is automatically filled from ./build/windows/golden_environment REM You can replace this detection with the correct name if it does not apply to your setup. set /P LOCAL_WINLIB_NAME=<build/windows/golden_environment set LOCAL_WINLIB_NAME=!LOCAL_WINLIB_NAME:PLATFORM=%LOCAL_PROCESSOR%! set LOCAL_WINLIB_NAME=!LOCAL_WINLIB_NAME:CONFIGURATION=%LOCAL_BUILDMODE%!
REM %~dp0.. means the parent folder of your mixxx source code. SET LOCAL_WINLIB_PARENT=%~dp0..
REM This sets the number of processors to half or what Windows reports. REM This is done because most processors have some sort of hyperthreading and we want only real cores. IF %NUMBER_OF_PROCESSORS% GTR 1 ( SET /A LOCAL_NUMBER_PROCS=%NUMBER_OF_PROCESSORS%/2 ) ELSE ( SET /A LOCAL_NUMBER_PROCS=%NUMBER_OF_PROCESSORS% ) SET SCONS_NUMBER_PROCESSORS=-j%LOCAL_NUMBER_PROCS%
call ./build/windows/install_buildenv.bat http://downloads.mixxx.org/builds/buildserver/2.3.x-windows/ %LOCAL_WINLIB_NAME% %LOCAL_WINLIB_PARENT% if ERRORLEVEL 1 ENDLOCAL && EXIT /b
REM skiptest means that we don't want to build and execute the mixxx-test. REM skipinstaller means that we don't want to generate the installer after the build. ./build/appveyor/build_mixxx.bat %LOCAL_PROCESSOR% %LOCAL_BUILDMODE% %LOCAL_WINLIB_PARENT%%LOCAL_WINLIB_NAME% skiptest skipinstaller
ENDLOCAL `
-
When you are ready, type:
build.bat
You have to follow the above guide with two changes.
- Build the dependencies with:
build_environment x64 Release
or make sure you have downloaded the x64 version of the pre-built dependencies. - Use set ARCHITECTURE=amd64 in build.bat
WARNING: DO NOT mix 32 and 64 bits build in the same CMD Shell window or you will have undetermined results. If you need 32 and 64 bits environments together, use different terminal window for 32 bits and 64 bits build_environment and mixxx compilation
You have to follow the above guide with two changes.
- Build the dependencies with:
build_environment xxx Debug
- Use set BUILD_TYPE=debug in build.bat
Mixxx is a free and open-source DJ software.
Manual
Hardware Compatibility
Reporting Bugs
Getting Involved
Contribution Guidelines
Coding Guidelines
Using Git
Developer Guide
Contributing Mappings
Mixxx Controls
MIDI Scripting
Components JS