From 998317d309934cd7129f8c818ea6e5f07534ebc8 Mon Sep 17 00:00:00 2001 From: Devin Matthews Date: Tue, 2 Oct 2018 14:43:24 -0500 Subject: [PATCH] Remove pthreads from appveyor build. --- .appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index feb2e6983..f1a36d8a0 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -10,7 +10,7 @@ install: - call %CONDA_INSTALL_LOCN%\Scripts\activate.bat - conda update --yes --quiet conda - conda config --add channels conda-forge -- conda install --yes clangdev posix m2-make pthreads-win32 +- conda install --yes clangdev posix m2-make - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 - set "LIB=%CONDA_INSTALL_LOCN%\Library\lib;%LIB%" - set "CPATH=%CONDA_INSTALL_LOCN%\Library\include;%CPATH%" @@ -22,10 +22,10 @@ build_script: - set RANLIB=echo - set AR=llvm-ar - set AS=llvm-as -- set LIBPTHREAD=-lpthreads +- set LIBPTHREAD= - set "PATH=%PATH%;C:\projects\blis\lib\%CONFIG%" - set "CFLAGS=-Wno-macro-redefined" -- bash -lc "source activate && cd /c/projects/blis && ./configure %CONFIGURE_OPTS% --enable-cblas --enable-threading=pthreads --enable-arg-max-hack --prefix=/c/blis %CONFIG%" +- bash -lc "source activate && cd /c/projects/blis && ./configure %CONFIGURE_OPTS% --enable-cblas --disable-threading --enable-arg-max-hack --prefix=/c/blis %CONFIG%" - bash -lc "source activate && cd /c/projects/blis && make -j4 V=1" - bash -lc "source activate && cd /c/projects/blis && make install" - ps: Compress-Archive -Path C:\blis -DestinationPath C:\blis.zip