summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2024-09-12 09:19:14 +0800
committerGitHub <[email protected]>2024-09-12 09:19:14 +0800
commitfa48b0f9caa3472252485d7c2514c4456935d2b3 (patch)
tree4a20eddf3223ea56447a5e88c39e2b98b0875a3f
parent9e70298e25cde32fdde0cae65f4977a096eabfa7 (diff)
parent921793ce047d9ae3ec4ca429f0981c05c026c397 (diff)
Merge pull request #5598 from xmake-io/wasm
improve tools.cmake for wasm
-rw-r--r--xmake/modules/package/tools/cmake.lua15
1 files changed, 7 insertions, 8 deletions
diff --git a/xmake/modules/package/tools/cmake.lua b/xmake/modules/package/tools/cmake.lua
index 91a5e0559..f47f69482 100644
--- a/xmake/modules/package/tools/cmake.lua
+++ b/xmake/modules/package/tools/cmake.lua
@@ -593,6 +593,7 @@ end
-- get configs for wasm
function _get_configs_for_wasm(package, configs, opt)
opt = opt or {}
+ local envs = {}
local emsdk = find_emsdk()
assert(emsdk and emsdk.emscripten, "emscripten not found!")
local emscripten_cmakefile = find_file("Emscripten.cmake", path.join(emsdk.emscripten, "cmake/Modules/Platform"))
@@ -612,15 +613,13 @@ function _get_configs_for_wasm(package, configs, opt)
end
end
- local envs = {}
- local deps_installdir = {}
- for _, dep in ipairs(package:librarydeps({private = true})) do
- if not dep:is_system() then
- table.insert(deps_installdir, dep:installdir())
- end
- end
+ -- avoid find and add system include/library path
+ -- @see https://github.com/xmake-io/xmake/issues/5577
-- https://github.com/emscripten-core/emscripten/issues/13310
- envs.CMAKE_FIND_ROOT_PATH = path.joinenv(deps_installdir)
+ envs.CMAKE_FIND_ROOT_PATH_MODE_PACKAGE = "BOTH"
+ envs.CMAKE_FIND_ROOT_PATH_MODE_LIBRARY = "BOTH"
+ envs.CMAKE_FIND_ROOT_PATH_MODE_INCLUDE = "BOTH"
+ envs.CMAKE_FIND_ROOT_PATH_MODE_PROGRAM = "NEVER"
_get_configs_for_generic(package, configs, opt)
_insert_configs_from_envs(configs, envs, opt)
end