aboutsummaryrefslogtreecommitdiff
path: root/ports/openblas/fix-pkg-config.patch
diff options
context:
space:
mode:
authorIlya Arzhannikov <iarzhannikov@artec-group.com>2021-07-26 02:26:55 +0200
committerGitHub <noreply@github.com>2021-07-25 17:26:55 -0700
commitce91faf83e55a386ce6d767fc7d39a4574add9af (patch)
tree72d897b071e153d103e9eb1b8e6150977528ab00 /ports/openblas/fix-pkg-config.patch
parentf894a2f39a22eed720059055c634be329c86eac2 (diff)
downloadvcpkg-ce91faf83e55a386ce6d767fc7d39a4574add9af.tar.gz
vcpkg-ce91faf83e55a386ce6d767fc7d39a4574add9af.zip
[openblas] update to 0.3.15 version and add dynamic arch feature (#15238)
* [openblas] dynamic arch feature * remove debug output * Update ports/openblas/CONTROL Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * update version to 0.3.13 * osx build * fix CONTROL, add FEATURES keyword to vcpkg_check_features * x-add-version * bump openblas version to 0.3.14 * ./vcpkg x-add-version openblas * apply format.diff from ci * ./vcpkg x-add-version openblas --overwrite-version * Update versions/o-/openblas.json Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * update port to version 0.3.15 * ./vcpkg x-add-version openblas * vcpkg_check_linkage * ./vcpkg x-add-version openblas --overwrite-version * ./vcpkg x-add-version openblas --overwrite-version * Update versions/o-/openblas.json Co-authored-by: Ilya Arzhannikov <iarzhannikov@artec3d.com> Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com> Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Diffstat (limited to 'ports/openblas/fix-pkg-config.patch')
-rw-r--r--ports/openblas/fix-pkg-config.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/ports/openblas/fix-pkg-config.patch b/ports/openblas/fix-pkg-config.patch
deleted file mode 100644
index 9ed84d1bb..000000000
--- a/ports/openblas/fix-pkg-config.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index c324e224..4b82d767 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -389,11 +389,9 @@ if(NOT NO_LAPACKE)
- install (FILES ${CMAKE_BINARY_DIR}/lapacke_mangling.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/openblas${SUFFIX64})
- endif()
-
--include(FindPkgConfig QUIET)
--if(PKG_CONFIG_FOUND)
-- configure_file(${PROJECT_SOURCE_DIR}/cmake/openblas.pc.in ${PROJECT_BINARY_DIR}/openblas${SUFFIX64}.pc @ONLY)
-- install (FILES ${PROJECT_BINARY_DIR}/openblas${SUFFIX64}.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig/)
--endif()
-+# Install pkg-config files
-+configure_file(${PROJECT_SOURCE_DIR}/cmake/openblas.pc.in ${PROJECT_BINARY_DIR}/openblas${SUFFIX64}.pc @ONLY)
-+install (FILES ${PROJECT_BINARY_DIR}/openblas${SUFFIX64}.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig/)
-
-
- # GNUInstallDirs "DATADIR" wrong here; CMake search path wants "share".