xmake.lua 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. package("protobuf-cpp")
  2. set_homepage("https://developers.google.com/protocol-buffers/")
  3. set_description("Google's data interchange format for cpp")
  4. set_license("BSD-3-Clause")
  5. add_urls("https://github.com/protocolbuffers/protobuf.git")
  6. add_urls("https://github.com/protocolbuffers/protobuf/releases/download/v$(version)", {version = function (version)
  7. if version:le("3.19.4") then
  8. return version .. "/protobuf-cpp-" .. version .. ".zip"
  9. else
  10. return version .. "/protobuf-" .. version .. ".zip"
  11. end
  12. end})
  13. -- TODO: Use x.y.z version? https://protobuf.dev/support/version-support
  14. add_versions("32.1", "2d25be4d5bf3bf28a97de553ae76c49f2a6fa3c21b04d3ccd5b3e0abc9262d00")
  15. add_versions("32.0", "62b6b80ab91a5379c03533bd6d59b6932b4385f0b0dd5299990bbe5e2cc6c428")
  16. add_versions("31.1", "554e847e46c705bfc44fb2d0ae5bf78f34395fcbfd86ba747338b570eef26771")
  17. add_versions("31.0", "3fea4fad0fd2d89e0e79937bc4b3083d483d7e5bc5fec2b8a4158916cd9478dd")
  18. add_versions("30.2", "6544e5ceec7f29d00397193360435ca8b3c4e843de3cf5698a99d36b72d65342")
  19. add_versions("29.3", "e9b9ac1910b1041065839850603caf36e29d3d3d230ddf52bd13778dd31b9046")
  20. add_versions("29.2", "60c1ab4befe9d0a975c2344b5511bf6b44f91ec3e1426c878f56bf30a0589c43")
  21. add_versions("28.1", "0ac35978514f3e868181ea60237e695d892d4748ac03fb926a26ac7e2698aa29")
  22. add_versions("28.0", "979027233837dceaf927402e789261e46d4ff87ce45b3e38be8b15c4a1f696a3")
  23. add_versions("27.3", "a49147217f69e8d19aab0cc5c0059d6201261f5cb62145f8ab4ac8b94e7ffa86")
  24. add_versions("27.2", "7b4554f730a41f5c595cef3502038a69b8954c30d8ec9c62a167d5e1ebd8c210")
  25. add_versions("27.0", "3e1148db090ff21226c1888ef39fa7bc7790042be21ff4289fd21ce1735f3455")
  26. add_versions("26.1", "e15c272392df84ae95797759c685a9225fe5e88838bab3e0650c29239bdfccdd")
  27. add_versions("3.8.0", "91ea92a8c37825bd502d96af9054064694899c5c7ecea21b8d11b1b5e7e993b5")
  28. add_versions("3.11.2", "f5cd6f514b80ea3c324b2c83da829b1424b9fd8fe36d468b6e44cd8f3da0b0ff")
  29. add_versions("3.12.0", "da826a3c48a9cae879928202d6fe06afb15aaee129e9035d6510cc776ddfa925")
  30. add_versions("3.12.3", "74da289e0d0c24b2cb097f30fdc09fa30754175fd5ebb34fae4032c6d95d4ce3")
  31. add_versions("3.13.0", "f7b99f47822b0363175a6751ab59ccaa4ee980bf1198f11a4c3cef162698dde3")
  32. add_versions("3.14.0", "87d6e96166cf5cafc16f2bcfa91c0b54f48bab38538285bee1b9331d992569fa")
  33. add_versions("3.15.5", "cdd7d3925240af541a95a4361ab100b703bee3a9df0d7e9e05c069cf2c76a039")
  34. add_versions("3.15.8", "093e0dca5277b377c36a48a3633325dca3d92d68ac17d5700a1f7e1c3eca2793")
  35. add_versions("3.17.3", "fe65f4bfbd6cbb8c23de052f218cbe4ebfeb72c630847e0cca63eb27616c952a")
  36. add_versions("3.19.4", "a11a262a395f999f9dca83e195cc15b6c23b6d5e74133f8e3250ad0950485da1")
  37. add_patches("3.11.2", "patches/3.11.2/ndk-link-log.diff", "5564ae57562a2d6262e0837afd9645a6be2d4b52a52b7212fa6452f11f50af4a")
  38. add_patches("3.17.3", "patches/3.17.3/field_access_listener.patch", "ac9bdf49611b01e563fe74b2aaf1398214129454c3e18f1198245549eb281e85")
  39. add_patches("3.19.4", "patches/3.19.4/vs_runtime.patch", "8e73e585d29f3b9dca3c279df0b11b3ee7651728c07f51381a69e5899b93c367")
  40. -- https://github.com/msys2/MINGW-packages/blob/e77de8e92025175ffa0a217c3444249aa6f8f4a9/mingw-w64-protobuf/0004-fix-build-with-gcc-15.patch#L7
  41. add_patches(">=31.0<32.0", "patches/31.0/gcc15.patch", "6475e824fabf7835f77e0410830c80b23e4c7a71fa5d7f4867ee7235942b167f")
  42. add_configs("rtti", {description = "Enable runtime type information", default = true, type = "boolean"})
  43. add_configs("zlib", {description = "Enable zlib", default = false, type = "boolean"})
  44. add_configs("lite", {description = "Build lite version", default = true, type = "boolean", readonly = true})
  45. add_configs("upb", {description = "Build upb", default = not is_plat("android"), type = "boolean"})
  46. add_configs("tools", {description = "Build libprotoc and protoc compiler", default = not is_plat("android"), type = "boolean"})
  47. if is_plat("mingw") and is_subhost("msys") then
  48. add_extsources("pacman::protobuf")
  49. elseif is_plat("linux") then
  50. add_extsources("pacman::protobuf")
  51. elseif is_plat("macosx") then
  52. add_extsources("brew::protobuf")
  53. end
  54. add_deps("cmake")
  55. add_components("protobuf", "protoc", "utf8_range")
  56. on_load(function (package)
  57. -- Fix MSVC 2019 arm64 error LNK2019: unresolved external symbol __popcnt referenced in function _upb_log2_table_size
  58. if package:version() and package:version():eq("31.0") and package:is_plat("windows") then
  59. local msvc = package:toolchain("msvc")
  60. local vs = msvc:config("vs")
  61. if vs and tonumber(vs) < 2022 and package:is_arch("arm64") then
  62. package:add("patches", "31.0", path.join(os.scriptdir(), "patches", "31.0", "msvc2019-arm64.patch"), "3b3fa6e7936df5f10da1bb0303060736a40d55e55055f7bc3b376d7a697c093d")
  63. end
  64. end
  65. if package:is_plat("android") and is_host("windows") then
  66. package:add("deps", "ninja")
  67. package:set("policy", "package.cmake_generator.ninja", true)
  68. end
  69. if package:is_plat("linux", "bsd", "mingw") then
  70. package:add("syslinks", "m", "pthread")
  71. end
  72. if package:is_plat("linux") then
  73. if package:is_binary() then
  74. package:add("extsources", "apt::protobuf-compiler")
  75. elseif package:is_library() then
  76. package:add("extsources", "apt::libprotobuf-dev", "apt::libprotoc-dev")
  77. end
  78. end
  79. if not package:is_cross() then
  80. package:addenv("PATH", "bin")
  81. end
  82. if package:config("zlib") then
  83. package:add("deps", "zlib")
  84. end
  85. if package:version():ge("22.0") then
  86. if package:version():lt("30.0") then
  87. package:add("deps", "abseil <=20250127.0")
  88. else
  89. package:add("deps", "abseil")
  90. end
  91. end
  92. if package:is_plat("windows") and package:config("shared") then
  93. package:add("defines", "PROTOBUF_USE_DLLS")
  94. end
  95. if package:config("upb") then
  96. package:add("components", "upb")
  97. end
  98. if package:config("lite") then
  99. package:add("components", "protobuf-lite")
  100. end
  101. end)
  102. -- ref: https://github.com/conan-io/conan-center-index/blob/19c9de61cce5a5089ce42b0cf15a88ade7763275/recipes/protobuf/all/conanfile.py
  103. on_component("utf8_range", function (package, component)
  104. component:add("extsources", "pkgconfig::utf8_range")
  105. if package:is_plat("windows") then
  106. component:add("links", "libutf8_range", "libutf8_validity")
  107. end
  108. component:add("links", "utf8_validity", "utf8_range")
  109. end)
  110. on_component("protobuf", function (package, component)
  111. component:add("extsources", "pkgconfig::protobuf")
  112. component:add("deps", "utf8_range")
  113. if package:is_plat("windows") then
  114. component:add("links", "libprotobuf")
  115. else
  116. component:add("links", "protobuf")
  117. end
  118. end)
  119. on_component("protobuf-lite", function (package, component)
  120. component:add("extsources", "pkgconfig::protobuf-lite")
  121. if package:is_plat("windows") then
  122. component:add("links", "libprotobuf-lite", "utf8_validity")
  123. else
  124. component:add("links", "protobuf-lite", "utf8_validity")
  125. end
  126. end)
  127. on_component("protoc", function (package, component)
  128. component:add("deps", "protobuf")
  129. if package:is_plat("windows") then
  130. component:add("links", "libprotoc")
  131. else
  132. component:add("links", "protoc")
  133. end
  134. end)
  135. on_component("upb", function (package, component)
  136. if package:is_plat("windows") then
  137. component:add("links", "libupb", "utf8_range")
  138. else
  139. component:add("links", "upb", "utf8_range")
  140. end
  141. end)
  142. on_install(function (package)
  143. if package:is_plat("windows", "mingw") then
  144. io.replace("src/google/protobuf/port_def.inc", "#define PROTOBUF_DESCRIPTOR_WEAK_MESSAGES_ALLOWED", "", {plain = true})
  145. end
  146. local version = package:version()
  147. if version:le("3.19.4") then
  148. os.cd("cmake")
  149. end
  150. io.replace("CMakeLists.txt", "set(CMAKE_MSVC_RUNTIME_LIBRARY MultiThreaded$<$<CONFIG:Debug>:Debug>)", "", {plain = true})
  151. io.replace("CMakeLists.txt", "set(CMAKE_MSVC_RUNTIME_LIBRARY MultiThreaded$<$<CONFIG:Debug>:Debug>DLL)", "", {plain = true})
  152. io.replace("CMakeLists.txt", "set(CMAKE_PDB_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)", "", {plain = true})
  153. if version:ge("26.1") then
  154. io.replace("cmake/abseil-cpp.cmake", "BUILD_SHARED_LIBS AND MSVC", "FALSE", {plain = true})
  155. end
  156. local configs = {
  157. "-DCMAKE_POLICY_DEFAULT_CMP0057=NEW",
  158. "-Dprotobuf_BUILD_TESTS=OFF",
  159. "-Dprotobuf_LOCAL_DEPENDENCIES_ONLY=ON",
  160. "-Dprotobuf_DEBUG_POSTFIX=''",
  161. }
  162. table.insert(configs, "-Dprotobuf_BUILD_PROTOC_BINARIES=" .. (package:config("tools") and "ON" or "OFF"))
  163. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
  164. table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
  165. table.insert(configs, "-Dprotobuf_DISABLE_RTTI=" .. (package:config("rtti") and "OFF" or "ON"))
  166. if package:is_plat("windows") then
  167. table.insert(configs, "-Dprotobuf_MSVC_STATIC_RUNTIME=" .. (package:has_runtime("MT", "MTd") and "ON" or "OFF"))
  168. end
  169. if package:dep("abseil") then
  170. local std = package:dep("abseil"):config("cxx_standard")
  171. table.insert(configs, "-DCMAKE_CXX_STANDARD=" .. std)
  172. package:data_set("cxx_standard", std)
  173. end
  174. table.insert(configs, "-Dprotobuf_WITH_ZLIB=" .. (package:config("zlib") and "ON" or "OFF"))
  175. table.insert(configs, "-Dprotobuf_BUILD_LIBUPB=" .. (package:config("upb") and "ON" or "OFF"))
  176. local opt = {}
  177. opt.buildir = "build"
  178. if version:ge("22.0") then
  179. opt.packagedeps = "abseil"
  180. table.insert(configs, "-Dprotobuf_ABSL_PROVIDER=package")
  181. end
  182. import("package.tools.cmake").install(package, configs, opt)
  183. if package:is_cross() then
  184. os.tryrm(package:installdir("bin/*.exe"))
  185. else
  186. os.trycp("build/Release/protoc.exe", package:installdir("bin"))
  187. end
  188. end)
  189. on_test(function (package)
  190. if not package:is_cross() and
  191. -- Missing libgcc_s_xxx.dll, Maybe msys2 bug
  192. not (is_subhost("msys") and package:is_plat("mingw", "msys") and package:is_arch("i386")) then
  193. io.writefile("test.proto", [[
  194. syntax = "proto3";
  195. package test;
  196. message TestCase {
  197. string name = 4;
  198. }
  199. message Test {
  200. repeated TestCase case = 1;
  201. }
  202. ]])
  203. os.vrun("protoc test.proto --cpp_out=.")
  204. end
  205. local std = package:data("cxx_standard")
  206. local languages = "c++" .. (std and std or "17")
  207. if package:is_library() then
  208. assert(package:check_cxxsnippets({test = [[
  209. #include <google/protobuf/timestamp.pb.h>
  210. #include <google/protobuf/util/time_util.h>
  211. void test() {
  212. google::protobuf::Timestamp ts;
  213. google::protobuf::util::TimeUtil::FromString("1972-01-01T10:00:20.021Z", &ts);
  214. }
  215. ]]}, {configs = {languages = languages}}))
  216. end
  217. end)