From 307305aeb566e76cc297d1fc5ed8885b0d7a4f64 Mon Sep 17 00:00:00 2001 From: xoviat Date: Thu, 9 Nov 2017 15:10:02 -0600 Subject: [PATCH] [appeyor] use flang from conda-forge This flang will be updated in the future. We leave cmake because it's not yet released with fortran support --- appveyor.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 4eaae5e..41ec9a6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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%" -- 2.7.4