summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2024-01-21 22:21:01 +0800
committerruki <[email protected]>2024-01-25 12:09:58 +0800
commitbda43e3e865e2336db2bdf2b66af9beb235da1df (patch)
treefc4b111af8ea9ceaaca2a43ef6baee53ebcb4e4b
parent6059675c1ed54a7a77fb695b1ad3aef934640235 (diff)
limit gcc runtimes
-rw-r--r--xmake/toolchains/gcc/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/toolchains/gcc/xmake.lua b/xmake/toolchains/gcc/xmake.lua
index b21f3592e..9b01a80f5 100644
--- a/xmake/toolchains/gcc/xmake.lua
+++ b/xmake/toolchains/gcc/xmake.lua
@@ -28,7 +28,7 @@ toolchain("gcc" .. suffix)
set_kind("standalone")
set_homepage("https://gcc.gnu.org/")
set_description("GNU Compiler Collection" .. (version and (" (" .. version .. ")") or ""))
- set_runtimes("c++_static", "c++_shared", "stdc++_static", "stdc++_shared")
+ set_runtimes("stdc++_static", "stdc++_shared")
set_toolset("cc", "gcc" .. suffix)
set_toolset("cxx", "gcc" .. suffix, "g++" .. suffix)