xmake.lua 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package("mimalloc")
  2. set_homepage("https://github.com/microsoft/mimalloc")
  3. set_description("mimalloc (pronounced 'me-malloc') is a general purpose allocator with excellent performance characteristics.")
  4. set_license("MIT")
  5. set_urls("https://github.com/microsoft/mimalloc/archive/v$(version).zip")
  6. add_versions("2.1.2", "86281c918921c1007945a8a31e5ad6ae9af77e510abfec20d000dd05d15123c7")
  7. add_versions("2.0.7", "ddb32937aabddedd0d3a57bf68158d4e53ecf9e051618df3331a67182b8b0508")
  8. add_versions("2.0.6", "23e7443d0b4d7aa945779ea8a806e4e109c0ed62d740953d3656cddea7e04cf8")
  9. add_versions("2.0.5", "e8d4e031123e82081325a5131ac57d954f5123b6a13653a6d984cbc3b8488bd9")
  10. add_versions("2.0.3", "8e5f0b74fdafab09e8853415700a9ade4d62d5f56cd43f54adf02580ceda86c1")
  11. add_versions("2.0.2", "6ccba822e251b8d10f8a63d5d7767bc0cbfae689756a4047cdf3d1e4a9fd33d0")
  12. add_versions("2.0.1", "59c1fe79933e0ac9837a9ca4d954e4887dccd80a84281a6f849681b89a8b8876")
  13. add_versions("1.7.7", "d51a5b8f3bc6800a0b2fc46830ce67b4d31b12f4e4550ff80cf394d5a88fead8")
  14. add_versions("1.7.6", "bae56f8ebdcd43da83b52610d7f1c1602ea8d3798d906825defa5c40ad2eb560")
  15. add_versions("1.7.3", "8319eca4a114dce5f897a4cb7d945bce22d915b4b262adb861cd7ac68fa3e848")
  16. add_versions("1.7.2", "2c432e44803d9f4f017323be705f194db5d1452f9a60e38896605e7cfe8b332f")
  17. add_versions("1.7.1", "dc3219066b4fd50c7f23d60c13fa15ae269a2b10b7dd45b046d5c52c9addb477")
  18. add_versions("1.7.0", "13f3c82bca3a95233c5e29adb5675ab2b772f0ade23184d822079578c9d6c698")
  19. add_versions("1.6.7", "5a12aac020650876615a2ce3dd8adc8b208cdcee4d9e6bcfc33b3fbe307f0dbf")
  20. add_configs("secure", {description = "Use a secured version of mimalloc", default = false, type = "boolean"})
  21. add_configs("rltgenrandom", {description = "Use a RtlGenRandom instead of BCrypt", default = false, type = "boolean"})
  22. add_deps("cmake")
  23. if is_plat("windows") then
  24. add_syslinks("advapi32", "bcrypt")
  25. elseif is_plat("linux") then
  26. add_syslinks("pthread")
  27. elseif is_plat("android") then
  28. add_syslinks("atomic")
  29. end
  30. on_install("macosx", "windows", "linux", "android", "mingw", function (package)
  31. local configs = {"-DMI_OVERRIDE=OFF"}
  32. table.insert(configs, "-DMI_BUILD_STATIC=" .. (package:config("shared") and "OFF" or "ON"))
  33. table.insert(configs, "-DMI_BUILD_SHARED=" .. (package:config("shared") and "ON" or "OFF"))
  34. table.insert(configs, "-DMI_SECURE=" .. (package:config("secure") and "ON" or "OFF"))
  35. table.insert(configs, "-DMI_BUILD_TESTS=OFF")
  36. table.insert(configs, "-DMI_BUILD_OBJECT=OFF")
  37. --x64:mimalloc-redirect.lib/dll x86:mimalloc-redirect32.lib/dll
  38. if package:version():le("2.0.1") and package:config("shared") and package:is_plat("windows") and package:is_arch("x86") then
  39. io.replace("CMakeLists.txt", "-redirect.", "-redirect32.", {plain = true})
  40. end
  41. local cxflags
  42. if package:config("rltgenrandom") then
  43. if xmake:version():ge("2.5.1") then
  44. cxflags = "-DMI_USE_RTLGENRANDOM"
  45. else
  46. -- it will be deprecated after xmake/v2.5.1
  47. package:configs().cxflags = "-DMI_USE_RTLGENRANDOM"
  48. end
  49. end
  50. import("package.tools.cmake").build(package, configs, {buildir = "build", cxflags = cxflags})
  51. if package:is_plat("windows") then
  52. os.trycp("build/**.dll", package:installdir("bin"))
  53. os.trycp("build/**.lib", package:installdir("lib"))
  54. elseif package:is_plat("mingw") then
  55. os.trycp("build/**.dll", package:installdir("bin"))
  56. os.trycp("build/**.a", package:installdir("lib"))
  57. else
  58. os.trycp("build/*.so", package:installdir("bin"))
  59. os.trycp("build/*.so", package:installdir("lib"))
  60. os.trycp("build/*.a", package:installdir("lib"))
  61. end
  62. os.cp("include", package:installdir())
  63. end)
  64. on_test(function (package)
  65. assert(package:has_cfuncs("mi_malloc", {includes = "mimalloc.h"}))
  66. end)