Forráskód Böngészése

Add cpuinfo (#1694)

* Add cpuinfo

* Remove on_load

* Disable shared build

* Disable shared only on windows

* Update xmake.lua

* Update xmake.lua

* Update xmake.lua

Co-authored-by: ruki <[email protected]>
A2va 2 éve
szülő
commit
8b69fea4ed
1 módosított fájl, 37 hozzáadás és 0 törlés
  1. 37 0
      packages/c/cpuinfo/xmake.lua

+ 37 - 0
packages/c/cpuinfo/xmake.lua

@@ -0,0 +1,37 @@
+package("cpuinfo")
+    set_homepage("https://github.com/pytorch/cpuinfo")
+    set_description("CPU INFOrmation library (x86/x86-64/ARM/ARM64, Linux/Windows/Android/macOS/iOS)")
+    set_license("BSD 2-Clause")
+
+    add_urls("https://github.com/pytorch/cpuinfo.git")
+    add_versions("2022.09.15", "de2fa78ebb431db98489e78603e4f77c1f6c5c57")
+
+    add_deps("cmake")
+
+    if is_plat("windows") then
+        add_configs("shared",     {description = "Build shared library.", default = false, type = "boolean", readonly = true})
+        add_configs("vs_runtime", {description = "Set vs compiler runtime.", default = "MT", readonly = true})
+    end
+
+    add_links("cpuinfo", "clog")
+
+    on_install("windows", "linux", "macosx", "bsd", "android", function (package)
+        local configs = {"-DCPUINFO_BUILD_TOOLS=OFF",
+                         "-DCPUINFO_BUILD_UNIT_TESTS=OFF",
+                         "-DCPUINFO_BUILD_MOCK_TESTS=OFF",
+                         "-DCPUINFO_BUILD_BENCHMARKS=OFF",
+                         "-DCPUINFO_BUILD_PKG_CONFIG=OFF"}
+        table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
+        table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
+        import("package.tools.cmake").install(package, configs)
+    end)
+
+    on_test(function (package)
+         assert(package:check_cxxsnippets({test = [[
+            #include <iostream>
+            void test(int args, char** argv) {
+                cpuinfo_initialize();
+                std::cout << "Running on %s CPU " << cpuinfo_get_package(0)->name;
+            }
+        ]]}, {configs = {languages = "c++11"}, includes = "cpuinfo.h"}))
+    end)