diff options
| author | ruki <[email protected]> | 2024-09-17 21:21:12 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-09-17 21:21:12 +0800 |
| commit | d78cfadb369f46b0c6b04dfdea4454909a144442 (patch) | |
| tree | 702f72410222bfc4a15f4614df5f5b5911514b46 | |
| parent | 8704d6bc2902e9d41b3918bb06b3d9e4da411ec9 (diff) | |
Update gcc.lua
| -rw-r--r-- | xmake/modules/core/tools/gcc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/core/tools/gcc.lua b/xmake/modules/core/tools/gcc.lua index 9376f3bc6..97b826b68 100644 --- a/xmake/modules/core/tools/gcc.lua +++ b/xmake/modules/core/tools/gcc.lua @@ -381,7 +381,7 @@ function nf_linkgroup(self, linkgroup, opt) table.insert(prefix_flags, "-Wl,--start-group") table.insert(suffix_flags, 1, "-Wl,--end-group") end - tabel.join2(flags, prefix_flags, linkflags, suffix_flags) + table.join2(flags, prefix_flags, linkflags, suffix_flags) end if #flags == 0 then flags = linkflags |
