diff options
| author | ruki <[email protected]> | 2015-12-22 10:47:06 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-12-22 10:47:06 +0800 |
| commit | b378a1f331cda1f9520b0a3d86feabb498021cb4 (patch) | |
| tree | d934946b03468d584b48e4161df848a5a78673be /core/src | |
| parent | e9ba9a93d79ab8163d70efbe5b78101595588971 (diff) | |
support windows x64 x86_amd64 amd64 arch
Diffstat (limited to 'core/src')
| -rwxr-xr-x | core/src/xmake/machine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/xmake/machine.c b/core/src/xmake/machine.c index 7e5cae462..e914297c7 100755 --- a/core/src/xmake/machine.c +++ b/core/src/xmake/machine.c @@ -270,9 +270,9 @@ xm_machine_ref_t xm_machine_init() // init architecture #if defined(TB_ARCH_x86) || defined(TB_CONFIG_OS_WINDOWS) - lua_pushstring(impl->lua, "i386"); + lua_pushstring(impl->lua, "x86"); #elif defined(TB_ARCH_x64) - lua_pushstring(impl->lua, "x86_64"); + lua_pushstring(impl->lua, "x64"); #else lua_pushstring(impl->lua, TB_ARCH_STRING); #endif |
