diff options
| author | ruki <[email protected]> | 2025-10-07 00:31:10 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-10-07 00:31:10 +0800 |
| commit | 69caeb34da2be2d03a86752b144c75881fcabf8f (patch) | |
| tree | 25d1efdc2d44d485782936e0e8023fc69e7436ac /xmake/core/sandbox/modules | |
| parent | 75a5ae1bfbd0570819c9cab6e623f2f26db2e8a2 (diff) | |
use hash64 instead of hash32
Diffstat (limited to 'xmake/core/sandbox/modules')
| -rw-r--r-- | xmake/core/sandbox/modules/import/core/sandbox/module.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/sandbox/modules/import/core/sandbox/module.lua b/xmake/core/sandbox/modules/import/core/sandbox/module.lua index 3a50e862b..dd7dac16e 100644 --- a/xmake/core/sandbox/modules/import/core/sandbox/module.lua +++ b/xmake/core/sandbox/modules/import/core/sandbox/module.lua @@ -203,7 +203,7 @@ function core_sandbox_module._native_moduleinfo(module_fullpath, modulekind) local projectdir = path.normalize(path.absolute(module_fullpath)) local programdir = path.normalize(os.programdir()) local modulename = path.basename(module_fullpath) - local modulehash = hash.strhash32(projectdir) + local modulehash = hash.strhash64(projectdir) local builddir local is_global = false local modulepath |
