summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2020-10-01 23:14:08 +0800
committerruki <[email protected]>2020-10-01 23:14:08 +0800
commitf08654fba0a52248d3ae7e5764907bc2ae1a36b8 (patch)
tree768befb764e6fd9dd02006e7a2dfd9e042a39156
parent8858e6ebb90cf18c95a0b7ac0db30e8f9c3e88f7 (diff)
disable workaround for 47bits lua light pointer
-rw-r--r--core/src/xmake/prefix.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/xmake/prefix.h b/core/src/xmake/prefix.h
index 63d03ebd9..e21ada561 100644
--- a/core/src/xmake/prefix.h
+++ b/core/src/xmake/prefix.h
@@ -40,7 +40,8 @@
* private interfaces
*/
-#if TB_CPU_BIT64
+// this issue has been fixed, @see https://github.com/LuaJIT/LuaJIT/commit/e9af1abec542e6f9851ff2368e7f196b6382a44c
+#if 0//TB_CPU_BIT64
/* we use this interface instead of lua_pushlightuserdata() to fix bad light userdata pointer bug
*
* @see https://github.com/xmake-io/xmake/issues/914