aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-05-26 14:17:14 -0700
committerGitHub <noreply@github.com>2017-05-26 14:17:14 -0700
commit11d4a5c47edb75c8aaaa7d86bc2d351af8b32e28 (patch)
tree9c6f3ebd13406d569d238f969f7c509363786b2d
parent1913f6602f785e902d8185f322a50748fffbeb67 (diff)
parent633d52348b249299e68ec4328ea9a25f1c8640eb (diff)
downloadvcpkg-11d4a5c47edb75c8aaaa7d86bc2d351af8b32e28.tar.gz
vcpkg-11d4a5c47edb75c8aaaa7d86bc2d351af8b32e28.zip
Merge pull request #1125 from STEllAR-GROUP/master
Adding support for HPX
-rw-r--r--ports/hpx/CONTROL5
-rw-r--r--ports/hpx/portfile.cmake108
2 files changed, 113 insertions, 0 deletions
diff --git a/ports/hpx/CONTROL b/ports/hpx/CONTROL
new file mode 100644
index 000000000..c1433102a
--- /dev/null
+++ b/ports/hpx/CONTROL
@@ -0,0 +1,5 @@
+Source: hpx
+Version: 1.0.0-3
+Build-Depends: boost, hwloc
+Description: The C++ Standards Library for Concurrency and Parallelism
+ HPX is a C++ Standards Library for Concurrency and Parallelism. It implements all of the corresponding facilities as defined by the C++ Standard. Additionally, in HPX we implement functionalities proposed as part of the ongoing C++ standardization process. We also extend the C++ Standard APIs to the distributed case.
diff --git a/ports/hpx/portfile.cmake b/ports/hpx/portfile.cmake
new file mode 100644
index 000000000..3c51bb13b
--- /dev/null
+++ b/ports/hpx/portfile.cmake
@@ -0,0 +1,108 @@
+include(vcpkg_common_functions)
+
+if (VCPKG_LIBRARY_LINKAGE STREQUAL static)
+ message(STATUS "Warning: Static building of HPX not supported yet. Building dynamic.")
+ set(VCPKG_LIBRARY_LINKAGE dynamic)
+endif()
+
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/hpx_1.0.0)
+
+vcpkg_download_distfile(ARCHIVE
+ URLS "http://stellar-group.org/files/hpx_1.0.0.tar.gz"
+ FILENAME "hpx_1.0.0.tar.gz"
+ SHA512 42c155654f118bff34b48d929b1732fd56126b8fd3e7657b5bd2f84275288ddf538572ed1152883c4aed5e9683de53b9b1f1c3613e5092e7bd1a5e165bed606d
+)
+vcpkg_extract_source_archive(${ARCHIVE})
+
+# apply hotfix to enable building with vcpkg
+vcpkg_download_distfile(DIFF
+ URLS "http://stellar-group.org/files/build-system-changes-to-make-HPX-compile-when-built-with-vcpkg.diff"
+ FILENAME "build-system-changes-to-make-HPX-compile-when-built-with-vcpkg.diff"
+ SHA512 ceceb84b54bf564b7b9258063454084207538a2bd212f7f65503c6638914eb3c093076e4303369639ef9b34812a2c8ed363c08bbdf5a39cc5d49f720a376af75
+)
+vcpkg_apply_patches(SOURCE_PATH ${SOURCE_PATH} PATCHES ${DIFF})
+
+# apply hotfix to fix issues with building 32bit version
+vcpkg_download_distfile(DIFF
+ URLS "http://stellar-group.org/files/Fixing-32bit-MSVC-compilation.diff"
+ FILENAME "Fixing-32bit-MSVC-compilation.diff"
+ SHA512 31c904d317b4c24eddd819e4856f8326ff3850a5a196c7648c46a11dbb85f35e972e077957b3c4aec67c8b043816fe1cebc92cfe28ed815f682537dfc3421b8b
+)
+vcpkg_apply_patches(SOURCE_PATH ${SOURCE_PATH} PATCHES ${DIFF})
+
+# apply hotfix to fix issues when building with UNICODE enabled
+vcpkg_download_distfile(DIFF
+ URLS "http://stellar-group.org/files/Making-sure-UNICODE-on-Windows-does-not-break-by-default.diff"
+ FILENAME "Making-sure-UNICODE-on-Windows-does-not-break-by-default.diff"
+ SHA512 8fcdb36307702d64b9d2b26920374a6c5a29a50d125305dc95926c4cbc91215cb0c72ede83b06d0fc007fe7b2283845e08351bd45f11f3677f0d3db4ac8f9424
+)
+vcpkg_apply_patches(SOURCE_PATH ${SOURCE_PATH} PATCHES ${DIFF})
+
+
+SET(BOOST_PATH "${CURRENT_INSTALLED_DIR}/share/boost")
+SET(HWLOC_PATH "${CURRENT_INSTALLED_DIR}/share/hwloc")
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ OPTIONS
+ -DBOOST_ROOT=${BOOST_PATH}
+ -DHWLOC_ROOT=${HWLOC_ROOT}
+ -DHPX_WITH_VCPKG=ON
+ -DHPX_WITH_HWLOC=ON
+ -DHPX_WITH_TESTS=OFF
+ -DHPX_WITH_EXAMPLES=OFF
+ -DHPX_WITH_TOOLS=OFF
+ -DHPX_WITH_RUNTIME=OFF
+)
+
+vcpkg_install_cmake()
+
+# post build cleanup
+file(RENAME ${CURRENT_PACKAGES_DIR}/share/hpx-1.0.0 ${CURRENT_PACKAGES_DIR}/share/hpx)
+
+file(INSTALL
+ ${SOURCE_PATH}/LICENSE_1_0.txt
+ DESTINATION ${CURRENT_PACKAGES_DIR}/share/hpx RENAME copyright)
+
+file(GLOB __hpx_cmakes ${CURRENT_PACKAGES_DIR}/lib/cmake/HPX/*.*)
+foreach(__hpx_cmake ${__hpx_cmakes})
+ file(COPY ${__hpx_cmake} DESTINATION ${CURRENT_PACKAGES_DIR}/share/hpx/cmake)
+ file(REMOVE ${__hpx_cmake})
+endforeach()
+
+file(GLOB __hpx_dlls ${CURRENT_PACKAGES_DIR}/lib/*.dll)
+foreach(__hpx_dll ${__hpx_dlls})
+ file(COPY ${__hpx_dll} DESTINATION ${CURRENT_PACKAGES_DIR}/bin)
+ file(REMOVE ${__hpx_dll})
+endforeach()
+
+file(GLOB __hpx_dlls ${CURRENT_PACKAGES_DIR}/lib/hpx/*.dll)
+foreach(__hpx_dll ${__hpx_dlls})
+ file(COPY ${__hpx_dll} DESTINATION ${CURRENT_PACKAGES_DIR}/bin/hpx)
+ file(REMOVE ${__hpx_dll})
+endforeach()
+
+file(GLOB __hpx_dlls ${CURRENT_PACKAGES_DIR}/debug/lib/*.dll)
+foreach(__hpx_dll ${__hpx_dlls})
+ file(COPY ${__hpx_dll} DESTINATION ${CURRENT_PACKAGES_DIR}/debug/bin)
+ file(REMOVE ${__hpx_dll})
+endforeach()
+
+file(GLOB __hpx_dlls ${CURRENT_PACKAGES_DIR}/debug/lib/hpx/*.dll)
+foreach(__hpx_dll ${__hpx_dlls})
+ file(COPY ${__hpx_dll} DESTINATION ${CURRENT_PACKAGES_DIR}/debug/bin/hpx)
+ file(REMOVE ${__hpx_dll})
+endforeach()
+
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/bazel)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/cmake)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/pkgconfig)
+
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/lib/bazel)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/lib/cmake)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig)
+
+vcpkg_copy_pdbs()
+