2024-10-18 13:23:47 +08:00
|
|
|
vcpkg_download_distfile(ARM64_WINDOWS_UWP_PATCH
|
|
|
|
URLS "https://patch-diff.githubusercontent.com/raw/OpenMathLib/OpenBLAS/pull/4926.diff?full_index=1"
|
|
|
|
FILENAME "openblas-fix-arm64-windows-uwp.patch"
|
|
|
|
SHA512 808d375628499641f1134b4751c9861384b719dae14cf6bd4d9d4b09c9bfd9f8b13b2663e9fa9d09867b5b40817c26387ac659d2f6459d40a46455b2f540d018
|
|
|
|
)
|
|
|
|
|
2017-09-07 09:25:42 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
2024-03-15 03:18:49 +08:00
|
|
|
REPO OpenMathLib/OpenBLAS
|
2023-09-26 14:38:28 +08:00
|
|
|
REF "v${VERSION}"
|
2024-10-18 13:23:47 +08:00
|
|
|
SHA512 358301c8a60bedf920c07a110c772feb639e52412bd783789741fd2fd0686aac97e6b17ebcdf01ce48a2a15841058f82df0fee551af952f6e70b58140c055133
|
2017-09-07 09:25:42 +08:00
|
|
|
HEAD_REF develop
|
2019-05-03 13:57:43 +08:00
|
|
|
PATCHES
|
2019-03-26 05:32:28 +08:00
|
|
|
uwp.patch
|
2019-08-31 00:10:30 +08:00
|
|
|
fix-redefinition-function.patch
|
2021-11-19 13:28:02 +08:00
|
|
|
install-tools.patch
|
2024-06-18 06:49:45 +08:00
|
|
|
gcc14.patch
|
2024-10-18 13:23:47 +08:00
|
|
|
${ARM64_WINDOWS_UWP_PATCH}
|
2017-04-12 10:45:07 +08:00
|
|
|
)
|
|
|
|
|
2017-08-08 05:25:26 +08:00
|
|
|
find_program(GIT NAMES git git.cmd)
|
|
|
|
|
|
|
|
# sed and awk are installed with git but in a different directory
|
2021-11-19 13:28:02 +08:00
|
|
|
get_filename_component(GIT_EXE_PATH "${GIT}" DIRECTORY)
|
2017-08-08 05:25:26 +08:00
|
|
|
set(SED_EXE_PATH "${GIT_EXE_PATH}/../usr/bin")
|
|
|
|
|
2024-03-19 06:10:59 +08:00
|
|
|
# openblas requires perl to generate .def for exports
|
2017-04-12 10:45:07 +08:00
|
|
|
vcpkg_find_acquire_program(PERL)
|
2021-11-19 13:28:02 +08:00
|
|
|
get_filename_component(PERL_EXE_PATH "${PERL}" DIRECTORY)
|
2020-08-13 01:28:41 +08:00
|
|
|
set(PATH_BACKUP "$ENV{PATH}")
|
|
|
|
vcpkg_add_to_path("${PERL_EXE_PATH}")
|
|
|
|
vcpkg_add_to_path("${SED_EXE_PATH}")
|
2017-04-12 10:45:07 +08:00
|
|
|
|
2021-06-11 07:16:36 +08:00
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
|
|
FEATURES
|
2023-06-22 13:20:01 +08:00
|
|
|
threads USE_THREAD
|
|
|
|
simplethread USE_SIMPLE_THREADED_LEVEL3
|
|
|
|
"dynamic-arch" DYNAMIC_ARCH
|
2021-06-11 07:16:36 +08:00
|
|
|
)
|
|
|
|
|
[many ports] improvements for linux/wsl (#6730)
* [many ports] improve compatibility with WSL and mixed case filesystems
* [treehopper] express dependency on libusb, which was not working on non-win32 platforms and is still broken there
* [libharu] add compatibility with non-win32 platforms
* [geogram] fix openblas on linux
[clapack] better integration with linux environment
[visit-struct] put cmake config file in the expected folder
[geogram] remove trailing underscore to enable compatibility with OpenBLAS
* [openblas] playing with underscore, without success
* [openblas/lapack] fix library integration
* [clapack] improve target handling in cmake module
* [openblas] promote self-generated config to default cmake module, otherwise internal ones thinks wrongly that openblas can also solve lapack libs
* [clapack,openblas] improve libraries integration
* [many ports] fix cmake unnecessary target paths, wrong config paths, empty default dependencies, unnecessary [core] tags
* [suitesparse] improve integration with new lapack/openblas mechanism
* [suitesparse] add no underscore postfix also for linux
* [ceres] fix integration with newer openblas/lapack configs
* [aws-c-event-stream] fix regression
* [systemc] fix regression
* [libwebp,geogram] trigger rebuild
* [libwebp,pthread4w] fix regressions
* [glbinding] fix cmake module installation
* [globjects] disentangle unnecessary dependency from qt5
* [jasper] remove broken and unnecessary patches
* [libwebp] fix regression
* [many ports] avoid using BUILD_SHARED_LIBS which is uninitialized in port files
* [clapack] correctly find dlls
* [clapack] use a generic blas as dependency
* [fizz,g2o] restore expected version
* fix mistake
* [many ports] remove WIN32, APPLE and UNIX (again, they keep creeping in) from ports since they are broken and usually break non-win32 ports
* [libressl,openssl] do not try to build one if the other is already installed
* [itk] update ref and patch to avoid regression
* [libressl,openssl] implement full strategy to fix CI
* [libwebp] disable components that are broken on macOS
* [ogre] enable macOS build
* [freeimage,jxrlib,ogre,openexr,protobuf] port patches from #5169
* [ogre] add missing install command
* [ffmpeg] enable wrapper for cmake module
* [ffmpeg] add avresample module finder
* [ffmpeg] improve module detection and exported symbols
* [ffmpeg] add variables to cache
* [thrift] remove unnecessary build option
* [allegro5] fix shared/static inversion
* [protobuf] cleanup
* [libressl] cleanup
* [moos-core] cleanup
* commented features must not be separated from other features, otherwise vcpkg complains
* [itk] fix regression
* [shogun,itk] fix regressions
* [ogre] fix regression
* [opusfile] add compatibility with non-win32
* [itk] fix regression
* [sndfile,libsndfile] remove duplicate, redirect sndfile to libsndfile
* add missing dependencies
* [ismrmrd] fix regression
* [ffmpeg] trigger rebuild
* [clapack,openblas,libogg] fix regressions on macOS
* [libtins] fix regression
* force rebuild windows regressions, unable to reproduce locally
* [mosquitto] enable non-win32 builds
* [json-dto] force rebuild, unable to reproduce regression locally
* [many ports] uniform naming and path length requests
* fix regression
* fix regression
* [ffmpeg] fixes for downstream projects
* clean up - thanks to reviewers
* trigger rebuild of regressions on macOS
* trigger rebuild of regressions on macOS - part2
* Add core back
* Use VCPKG_CONCURRENCY
* Add core back to suitesparse
* Add core back to curl
* Add core back to magnum
* Add core back to magnum
* Add core back to magnum
* Add core back to cgal
2019-06-21 10:11:54 +08:00
|
|
|
set(COMMON_OPTIONS -DBUILD_WITHOUT_LAPACK=ON)
|
2019-05-22 07:56:37 +08:00
|
|
|
|
2021-07-26 08:26:55 +08:00
|
|
|
if(VCPKG_TARGET_IS_OSX)
|
2024-02-27 17:06:19 +08:00
|
|
|
list(APPEND COMMON_OPTIONS -DONLY_CBLAS=1)
|
2021-07-26 08:26:55 +08:00
|
|
|
if("dynamic-arch" IN_LIST FEATURES)
|
2022-05-06 06:42:20 +08:00
|
|
|
set(conf_opts GENERATOR "Unix Makefiles")
|
2021-07-26 08:26:55 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2024-02-27 17:06:19 +08:00
|
|
|
if(VCPKG_TARGET_IS_ANDROID)
|
|
|
|
list(APPEND COMMON_OPTIONS -DONLY_CBLAS=1)
|
|
|
|
endif()
|
|
|
|
|
2021-11-19 13:28:02 +08:00
|
|
|
set(OPENBLAS_EXTRA_OPTIONS)
|
2024-03-19 06:10:59 +08:00
|
|
|
# For UWP version, must build non-UWP first for helper binaries
|
2023-06-22 13:20:01 +08:00
|
|
|
if(VCPKG_TARGET_IS_UWP)
|
|
|
|
list(APPEND OPENBLAS_EXTRA_OPTIONS "-DBLASHELPER_BINARY_DIR=${CURRENT_HOST_INSTALLED_DIR}/tools/${PORT}")
|
2021-11-19 13:28:02 +08:00
|
|
|
elseif(NOT (VCPKG_TARGET_IS_WINDOWS AND NOT VCPKG_TARGET_IS_MINGW))
|
2021-07-23 13:05:06 +08:00
|
|
|
string(APPEND VCPKG_C_FLAGS " -DNEEDBUNDERSCORE") # Required to get common BLASFUNC to append extra _
|
|
|
|
string(APPEND VCPKG_CXX_FLAGS " -DNEEDBUNDERSCORE")
|
2021-11-19 13:28:02 +08:00
|
|
|
list(APPEND OPENBLAS_EXTRA_OPTIONS
|
|
|
|
-DNOFORTRAN=ON
|
2024-03-19 06:10:59 +08:00
|
|
|
-DBU=_ # Required for all BLAS functions to append extra _ using NAME
|
2021-11-19 13:28:02 +08:00
|
|
|
)
|
2017-08-08 05:25:26 +08:00
|
|
|
endif()
|
|
|
|
|
2022-08-26 05:36:41 +08:00
|
|
|
if (VCPKG_TARGET_IS_WINDOWS AND VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64")
|
|
|
|
list(APPEND OPENBLAS_EXTRA_OPTIONS -DCORE=GENERIC)
|
|
|
|
endif()
|
|
|
|
|
2024-10-18 13:23:47 +08:00
|
|
|
# For emscripten only the riscv64 kernel with riscv64_generic target is supported
|
|
|
|
if(VCPKG_TARGET_IS_EMSCRIPTEN)
|
|
|
|
list(APPEND OPENBLAS_EXTRA_OPTIONS
|
|
|
|
-DEMSCRIPTEN_SYSTEM_PROCESSOR=riscv64
|
|
|
|
-DTARGET=RISCV64_GENERIC)
|
|
|
|
endif()
|
|
|
|
|
2021-11-19 13:28:02 +08:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2022-05-06 06:42:20 +08:00
|
|
|
${conf_opts}
|
2021-11-19 13:28:02 +08:00
|
|
|
OPTIONS
|
|
|
|
${FEATURE_OPTIONS}
|
|
|
|
${COMMON_OPTIONS}
|
|
|
|
${OPENBLAS_EXTRA_OPTIONS}
|
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
2023-09-26 14:38:28 +08:00
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/OpenBLAS)
|
2021-11-19 13:28:02 +08:00
|
|
|
|
|
|
|
if (EXISTS "${CURRENT_PACKAGES_DIR}/bin/getarch${VCPKG_HOST_EXECUTABLE_SUFFIX}")
|
|
|
|
vcpkg_copy_tools(TOOL_NAMES getarch AUTO_CLEAN)
|
|
|
|
endif()
|
|
|
|
if (EXISTS "${CURRENT_PACKAGES_DIR}/bin/getarch_2nd${VCPKG_HOST_EXECUTABLE_SUFFIX}")
|
|
|
|
vcpkg_copy_tools(TOOL_NAMES getarch_2nd AUTO_CLEAN)
|
|
|
|
endif()
|
2017-04-12 10:45:07 +08:00
|
|
|
|
2020-08-13 01:28:41 +08:00
|
|
|
set(ENV{PATH} "${PATH_BACKUP}")
|
|
|
|
|
|
|
|
set(pcfile "${CURRENT_PACKAGES_DIR}/lib/pkgconfig/openblas.pc")
|
|
|
|
if(EXISTS "${pcfile}")
|
|
|
|
file(READ "${pcfile}" _contents)
|
|
|
|
set(_contents "prefix=${CURRENT_INSTALLED_DIR}\n${_contents}")
|
|
|
|
file(WRITE "${pcfile}" "${_contents}")
|
|
|
|
#file(CREATE_LINK "${pcfile}" "${CURRENT_PACKAGES_DIR}/lib/pkgconfig/blas.pc" COPY_ON_ERROR)
|
|
|
|
endif()
|
|
|
|
set(pcfile "${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig/openblas.pc")
|
|
|
|
if(EXISTS "${pcfile}")
|
|
|
|
file(READ "${pcfile}" _contents)
|
|
|
|
set(_contents "prefix=${CURRENT_INSTALLED_DIR}/debug\n${_contents}")
|
|
|
|
file(WRITE "${pcfile}" "${_contents}")
|
|
|
|
#file(CREATE_LINK "${pcfile}" "${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig/blas.pc" COPY_ON_ERROR)
|
|
|
|
endif()
|
|
|
|
vcpkg_fixup_pkgconfig()
|
2024-03-19 06:10:59 +08:00
|
|
|
# Maybe we need also to write a wrapper inside share/blas to search implicitly for openblas,
|
|
|
|
# whenever we feel it's ready for its own -config.cmake file.
|
2019-07-19 07:13:10 +08:00
|
|
|
|
2024-03-19 06:10:59 +08:00
|
|
|
# openblas does not have a config file, so I manually made this.
|
|
|
|
# But I think in most cases, libraries will not include these files, they define their own used function prototypes.
|
|
|
|
# This is only to quite vcpkg.
|
2021-11-19 13:28:02 +08:00
|
|
|
file(COPY "${CMAKE_CURRENT_LIST_DIR}/openblas_common.h" DESTINATION "${CURRENT_PACKAGES_DIR}/include")
|
2019-07-19 07:13:10 +08:00
|
|
|
|
2021-11-19 13:28:02 +08:00
|
|
|
vcpkg_replace_string(
|
|
|
|
"${SOURCE_PATH}/cblas.h"
|
|
|
|
"#include \"common.h\""
|
|
|
|
"#include \"openblas_common.h\""
|
|
|
|
)
|
2017-08-08 05:25:26 +08:00
|
|
|
|
2021-11-19 13:28:02 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share")
|
2020-08-28 13:13:05 +08:00
|
|
|
|
2023-05-12 01:04:04 +08:00
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|