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


Ignore:
Timestamp:
Nov 7, 2017 12:42:33 PM (6 years ago)
Author:
wojciech
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/DevGuide/CondaDevSetup

    v14 v15  
    4444 
    4545== Step 5 (Windows only) - Install compiler == 
    46 Some 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.  
    47 This come be done by downloading VCForPython27 from:   
     46Some sasview modules requires C compiler. One can choose between different compilers, e.g. gcc, msvc, tinycc.  
     47Below are instructions how to install tinycc from SasView repository: 
    4848{{{ 
    49 https://www.microsoft.com/en-us/download/details.aspx?id=44266 
     49git clone https://github.com/SasView/tinycc.git tinycc 
     50cd tinycc 
     51python setup.py build install 
    5052}}} 
    51 and following installation instructions 
    5253 
    5354Eventually you need to set SAS_COMPILER enviormental variable 
    5455{{{ 
    55 set SAS_COMPILER=msvc 
     56set SAS_COMPILER=tinycc 
    5657}}} 
    5758 
    5859== Step 6 - run !SasView == 
    59 You should be ready to go now go to sasview directory and run 
     60You should be ready to run sasview.  
     61Go to sasview directory and run 
    6062 
    6163{{{