diff options
| -rw-r--r-- | xmake/core/sandbox/modules/os.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xmake/core/sandbox/modules/os.lua b/xmake/core/sandbox/modules/os.lua index b935f47fb..85ee61a64 100644 --- a/xmake/core/sandbox/modules/os.lua +++ b/xmake/core/sandbox/modules/os.lua @@ -39,6 +39,10 @@ sandbox_os.host = os.host sandbox_os.arch = os.arch sandbox_os.subhost = os.subhost sandbox_os.subarch = os.subarch +sandbox_os.is_host = os.is_host +sandbox_os.is_arch = os.is_arch +sandbox_os.is_subhost = os.is_subhost +sandbox_os.is_subarch = os.is_subarch sandbox_os.syserror = os.syserror sandbox_os.strerror = os.strerror sandbox_os.exit = os.exit |
