summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2024-03-17 19:24:17 +0800
committerruki <[email protected]>2024-03-17 19:24:17 +0800
commitef76c91d0517361173246f6ee62b3b6c3ba1e29e (patch)
tree5e9b78db13a6bc08ac8ad070980fe2e7376569f6
parent9bf5a9a16757f49569cfc7138cf96c5530c20b0b (diff)
update changelog
-rw-r--r--CHANGELOG.md8
-rw-r--r--xmake/includes/check/xmake.lua2
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f3f40bb47..0d863db04 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
## master (unreleased)
+### New features
+
+* [#4843](https://github.com/xmake-io/xmake/issues/4843): Endianness/Byte-order detection on build machine
+
### Changes
* [#4798](https://github.com/xmake-io/xmake/issues/4798): Improve wasi sdk detect
@@ -1757,6 +1761,10 @@
## master (开发中)
+### 新特性
+
+* [#4843](https://github.com/xmake-io/xmake/issues/4843): 添加 check_bigendian 接口实现大小端探测
+
### 改进
* [#4798](https://github.com/xmake-io/xmake/issues/4798): 改进 wasi sdk 检测
diff --git a/xmake/includes/check/xmake.lua b/xmake/includes/check/xmake.lua
index b9fd19b73..5a99487d0 100644
--- a/xmake/includes/check/xmake.lua
+++ b/xmake/includes/check/xmake.lua
@@ -18,7 +18,6 @@
-- @file xmake.lua
--
-includes("@builtin/check/check_bigendian.lua")
includes("@builtin/check/check_cflags.lua")
includes("@builtin/check/check_cfuncs.lua")
includes("@builtin/check/check_cincludes.lua")
@@ -34,3 +33,4 @@ includes("@builtin/check/check_links.lua")
includes("@builtin/check/check_macros.lua")
includes("@builtin/check/check_syslinks.lua")
includes("@builtin/check/check_sizeof.lua")
+includes("@builtin/check/check_bigendian.lua")