diff options
| -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 |
