Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions .azure-pipelines/azure-pipelines-osx.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .azure-pipelines/azure-pipelines-win.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions .ci_support/osx_arm64_target_platformosx-arm64.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MACOSX_DEPLOYMENT_TARGET:
- '11.0'
c_compiler:
- clang
c_compiler_version:
- '11'
channel_sources:
- conda-forge/label/rust_dev,conda-forge,https://conda-web.anaconda.org/conda-forge
channel_targets:
- conda-forge main
fortran_compiler:
- gfortran
fortran_compiler_version:
- '11'
macos_machine:
- arm64-apple-darwin20.0.0
target_platform:
- osx-arm64
zip_keys:
- - c_compiler_version
- fortran_compiler_version
File renamed without changes.
8 changes: 4 additions & 4 deletions .drone.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/CODEOWNERS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

51 changes: 29 additions & 22 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions conda-forge.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
compiler_stack: comp7

provider:
linux_ppc64le: default
linux_aarch64: default
build_platform:
osx_arm64: osx_64
conda_forge_output_validation: true
10 changes: 8 additions & 2 deletions recipe/bld.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mkdir build
cd build

REM Trick to avoid CMake/sh.exe error
:: Trick to avoid CMake/sh.exe error
ren "C:\Program Files\Git\usr\bin\sh.exe" _sh.exe

set "CC=gcc.exe"
Expand All @@ -20,9 +20,15 @@ cmake -G "MinGW Makefiles" ^

mingw32-make -j%CPU_COUNT%
mingw32-make install
if %ERRORLEVEL% NEQ 0 exit 1

:: testing with shared libraries does not work - skip them.
:: This is because: to test that the program exits if wrong parameters are given,
:: the testsuite overrides the symbol xerbla (xerbla logs the error and exits) with
:: its own version that reports to the test program in case of an error.
:: This does not work with dylibs on osx and dlls on windows.
ctest --output-on-failure -E "x*cblat*"
if errorlevel 1 exit 1
if %ERRORLEVEL% NEQ 0 exit 1

for %%i in (blas cblas lapack lapacke) do (
dumpbin /exports "%LIBRARY_PREFIX%/bin/lib%%i.dll" > exports%%i.txt
Expand Down
Loading