Changes between Version 13 and Version 14 of DevNotes/DevGuide/CondaDevSetup


Ignore:
Timestamp:
Nov 7, 2017 7:10:40 AM (6 years ago)
Author:
wojciech
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/DevGuide/CondaDevSetup

    v13 v14  
    4343}}} 
    4444 
    45 == Step 5 (Windows only) - Install tinycc == 
    46 On Windows you may additionally need to install compiler. You can choose between different compilers (e.g. GCC, MSVC) but here we provide instructions how to install tinycc 
    47  
     45== Step 5 (Windows only) - Install compiler == 
     46Some sasview modules requires C++ compiler. While we ultimately want to get rid off these modules and use C complier only (e.g. tinycc), it is currently required to install c++ compiler.  
     47This come be done by downloading VCForPython27 from:   
    4848{{{ 
    49 git clone https://github.com/SasView/tinycc.git tinycc 
    50 cd tinycc 
    51 python setup.py build install 
     49https://www.microsoft.com/en-us/download/details.aspx?id=44266 
    5250}}} 
     51and following installation instructions 
    5352 
    5453Eventually you need to set SAS_COMPILER enviormental variable 
    5554{{{ 
    56 set SAS_COMPILER=tinycc 
     55set SAS_COMPILER=msvc 
    5756}}} 
    5857