Home | History | Annotate | Download | only in msvc
      1 
      2 How to build jemalloc for Windows
      3 =================================
      4 
      5 1. Install Cygwin with at least the following packages:
      6    * autoconf
      7    * autogen
      8    * gawk
      9    * grep
     10    * sed
     11 
     12 2. Install Visual Studio 2015 with Visual C++
     13 
     14 3. Add Cygwin\bin to the PATH environment variable
     15 
     16 4. Open "VS2015 x86 Native Tools Command Prompt"
     17    (note: x86/x64 doesn't matter at this point)
     18 
     19 5. Generate header files:
     20    sh -c "CC=cl ./autogen.sh"
     21 
     22 6. Now the project can be opened and built in Visual Studio:
     23    msvc\jemalloc_vc2015.sln
     24 
     25