Browse Source

hexl: add package (#5713)

* hexl: add package

* fix cmake try_run

* fix pkgconfig search name
star9029 10 months ago
parent
commit
af75a391bf

+ 52 - 0
packages/h/hexl/patches/1.2.5/cmake-find-easyloggingpp.patch

@@ -0,0 +1,52 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index d1b5e5a..5d20e57 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -170,13 +170,11 @@ endif()
+ 
+ if (HEXL_DEBUG)
+   list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake/third-party/easylogging")
+-  find_package(EASYLOGGINGPP MODULE)
++  include(FindPkgConfig)
++  pkg_search_module("EASYLOGGINGPP" REQUIRED IMPORTED_TARGET "easyloggingpp")
+   if (EASYLOGGINGPP_FOUND)
+     message(STATUS "easyloggingpp: pre-installed easyloggingpp found")
+-    get_target_property(
+-      EASYLOGGINGPP_INCLUDE_DIR
+-      easyloggingpp
+-      INTERFACE_INCLUDE_DIRECTORIES)
++    set(easylogging "PkgConfig::EASYLOGGINGPP")
+   else()
+     message(STATUS "easyloggingpp: pre-installed easyloggingpp NOT found, building from source")
+     add_subdirectory(cmake/third-party/easylogging)
+diff --git a/hexl/CMakeLists.txt b/hexl/CMakeLists.txt
+index e9fc5ba..07cb064 100644
+--- a/hexl/CMakeLists.txt
++++ b/hexl/CMakeLists.txt
+@@ -122,11 +122,7 @@ install(DIRECTORY ${HEXL_INC_ROOT_DIR}/
+ if (HEXL_SHARED_LIB)
+     target_link_libraries(hexl PRIVATE cpu_features)
+     if (HEXL_DEBUG)
+-        target_link_libraries(hexl PUBLIC easyloggingpp)
+-        # Manually add logging include directory
+-        target_include_directories(hexl
+-            PUBLIC $<BUILD_INTERFACE:$<TARGET_PROPERTY:easyloggingpp,INCLUDE_DIRECTORIES>>
+-        )
++        target_link_libraries(hexl PUBLIC PkgConfig::EASYLOGGINGPP)
+     endif()
+ else ()
+     # For static library, if the dependencies are not found on the system,
+@@ -134,12 +130,8 @@ else ()
+ 
+     # Export logging only if in debug mode
+     if (HEXL_DEBUG)
+-        # Manually add logging include directory
+-        target_include_directories(hexl
+-            PUBLIC $<BUILD_INTERFACE:$<TARGET_PROPERTY:easyloggingpp,INCLUDE_DIRECTORIES>>
+-        )
+         if (EASYLOGGINGPP_FOUND)
+-            target_link_libraries(hexl PRIVATE easyloggingpp)
++            target_link_libraries(hexl PRIVATE PkgConfig::EASYLOGGINGPP)
+         else()
+             hexl_create_archive(hexl easyloggingpp)
+         endif()

+ 76 - 0
packages/h/hexl/xmake.lua

@@ -0,0 +1,76 @@
+package("hexl")
+    set_homepage("https://intel.github.io/hexl")
+    set_description("Intel:registered: Homomorphic Encryption Acceleration Library accelerates modular arithmetic operations used in homomorphic encryption")
+    set_license("Apache-2.0")
+
+    add_urls("https://github.com/intel/hexl/archive/refs/tags/$(version).tar.gz",
+             "https://github.com/intel/hexl.git")
+
+    add_versions("v1.2.5", "3692e6e6183dbc49253e51e86c3e52e7affcac925f57db0949dbb4d34b558a9a")
+
+    add_configs("experimental", {description = "Enable experimental features", default = false, type = "boolean"})
+
+    if is_plat("linux", "bsd") then
+        add_syslinks("pthread", "m")
+    end
+
+    add_deps("cmake")
+    add_deps("cpu-features")
+
+    if on_check then
+        on_check(function (package)
+            if not package:is_arch("x86_64", "x64") then
+                raise("package(hexl) only support x86_64 arch")
+            end
+        end)
+    end
+
+    on_load(function (package)
+        if package:is_debug() then
+            package:add("deps", "easyloggingpp")
+            package:add("deps", (is_subhost("windows") and "pkgconf") or "pkg-config")
+            package:add("patches", "1.2.5", "patches/1.2.5/cmake-find-easyloggingpp.patch", "7b239bebc13cd9548334b4dfcc84f1a11895c37e08b414d87e5ce81c944fb239")
+        end
+    end)
+
+    on_install("!wasm", function (package)
+        os.rmdir("cmake/third-party")
+        io.replace("CMakeLists.txt", "set(CMAKE_POSITION_INDEPENDENT_CODE ON)", "", {plain = true})
+        io.replace("hexl/CMakeLists.txt", "set_target_properties(hexl PROPERTIES POSITION_INDEPENDENT_CODE ON)", "", {plain = true})
+        if package:is_cross() then
+            io.replace("hexl/CMakeLists.txt", "-march=native", "", {plain = true})
+        end
+        io.replace("cmake/hexl/hexl-util.cmake", "if(HEXL_DEBUG AND UNIX)", "if(0)", {plain = true})
+        io.replace("cmake/hexl/hexl-util.cmake", "if (CAN_COMPILE AND CAN_RUN STREQUAL 0)", "if(CAN_COMPILE)", {plain = true})
+        io.replace("cmake/hexl/hexl-util.cmake", "try_run(CAN_RUN CAN_COMPILE", "try_compile(CAN_COMPILE", {plain = true})
+
+        local configs = {"-DHEXL_BENCHMARK=OFF", "-DHEXL_TESTING=OFF"}
+        table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
+        table.insert(configs, "-DHEXL_SHARED_LIB=" .. (package:config("shared") and "ON" or "OFF"))
+        if package:is_plat("windows") then
+            table.insert(configs, "-DCMAKE_COMPILE_PDB_OUTPUT_DIRECTORY=''")
+            if package:config("shared") then
+                table.insert(configs, "-DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON")
+            end
+        end
+        table.insert(configs, "-DHEXL_EXPERIMENTAL=" .. (package:config("experimental") and "ON" or "OFF"))
+        import("package.tools.cmake").install(package, configs)
+
+        if package:is_plat("windows") and package:is_debug() then
+            local dir = package:installdir(package:config("shared") and "bin" or "lib")
+            os.vcp(path.join(package:buildir(), "**.pdb"), dir)
+        end
+    end)
+
+    on_test(function (package)
+        assert(package:check_cxxsnippets({test = [[
+            void test() {
+                uint64_t modulus = 10;
+                uint64_t op1[]{1, 2, 3, 4, 5, 6, 7, 8};
+                uint64_t op2[]{1, 3, 5, 7, 2, 4, 6, 8};
+                uint64_t exp_out[]{2, 5, 8, 1, 7, 0, 3, 6};
+
+                intel::hexl::EltwiseAddMod(op1, op1, op2, std::size(op1), modulus);
+            }
+        ]]}, {configs = {languages = "c++17"}, includes = {"hexl/hexl.hpp"}}))
+    end)