Browse Source

Merge pull request #1353 from xoviat/patch-1

[appveyor] use flang from conda-forge
tags/v0.3.0
Martin Kroeker GitHub 8 years ago
parent
commit
8e75f7dcb4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      appveyor.yml

+ 5
- 2
appveyor.yml View File

@@ -37,9 +37,12 @@ environment:
install:
- if [%COMPILER%]==[clang-cl] call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- if [%COMPILER%]==[clang-cl] conda config --add channels conda-forge --force
- if [%COMPILER%]==[clang-cl] conda install --yes --quiet clangdev

- if [%WITH_FORTRAN%]==[yes] conda install --yes --quiet flang
- if [%WITH_FORTRAN%]==[yes] conda config --add channels isuruf/label/flang --force
- if [%COMPILER%]==[clang-cl] conda install --yes --quiet clangdev ninja cmake
- if [%WITH_FORTRAN%]==[yes] conda install --yes --quiet flangdev clangdev cmake
- if [%COMPILER%]==[clang-cl] conda install --yes --quiet ninja cmake
- if [%COMPILER%]==[clang-cl] call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
- if [%COMPILER%]==[clang-cl] set "LIB=%CONDA_INSTALL_LOCN%\Library\lib;%LIB%"
- if [%COMPILER%]==[clang-cl] set "CPATH=%CONDA_INSTALL_LOCN%\Library\include;%CPATH%"


Loading…
Cancel
Save