diff options
| author | Sean Warren <s.warren@garvan.org.au> | 2019-05-19 17:23:11 +1000 |
|---|---|---|
| committer | Phil Christensen <philc@microsoft.com> | 2019-05-19 00:23:11 -0700 |
| commit | 030e74940cc40db2415700e87e3b2c8aeeee8108 (patch) | |
| tree | cdb3777de272fee9d8b35d3b68c283f248f1ff23 | |
| parent | 84e19f1ce21ba3173647d15c7f413683389c6dba (diff) | |
| download | vcpkg-030e74940cc40db2415700e87e3b2c8aeeee8108.tar.gz vcpkg-030e74940cc40db2415700e87e3b2c8aeeee8108.zip | |
[openblas] Enable static build on windows (#6519)
The latest version of openblas supports static builds on windows
| -rw-r--r-- | ports/openblas/CONTROL | 2 | ||||
| -rw-r--r-- | ports/openblas/portfile.cmake | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/ports/openblas/CONTROL b/ports/openblas/CONTROL index d485b4126..cabd86f8b 100644 --- a/ports/openblas/CONTROL +++ b/ports/openblas/CONTROL @@ -1,3 +1,3 @@ Source: openblas -Version: 0.3.6 +Version: 0.3.6-1 Description: OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. diff --git a/ports/openblas/portfile.cmake b/ports/openblas/portfile.cmake index caf901ccf..7510fba6c 100644 --- a/ports/openblas/portfile.cmake +++ b/ports/openblas/portfile.cmake @@ -16,11 +16,6 @@ if(NOT VCPKG_TARGET_ARCHITECTURE STREQUAL "x64") message(FATAL_ERROR "openblas can only be built for x64 currently") endif() -if(NOT VCPKG_CMAKE_SYSTEM_NAME OR VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") - vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY) - set(CMAKE_CROSSCOMPILING OFF) -endif() - vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO xianyi/OpenBLAS |
