Changes between Version 13 and Version 14 of DevNotes/DevGuide/CondaDevSetup
- Timestamp:
- Nov 7, 2017 7:10:40 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevNotes/DevGuide/CondaDevSetup
v13 v14 43 43 }}} 44 44 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 == 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: 48 48 {{{ 49 git clone https://github.com/SasView/tinycc.git tinycc 50 cd tinycc 51 python setup.py build install 49 https://www.microsoft.com/en-us/download/details.aspx?id=44266 52 50 }}} 51 and following installation instructions 53 52 54 53 Eventually you need to set SAS_COMPILER enviormental variable 55 54 {{{ 56 set SAS_COMPILER= tinycc55 set SAS_COMPILER=msvc 57 56 }}} 58 57