summaryrefslogtreecommitdiff
path: root/xmake/toolchains
diff options
context:
space:
mode:
authorruki <[email protected]>2021-09-02 23:38:26 +0800
committerruki <[email protected]>2021-09-02 23:38:26 +0800
commit684ba799f95d3f8832a9e220ce2743aa2ecb505f (patch)
tree6593726481bbd4f4292e6858858f26979ca2995d /xmake/toolchains
parent1306c34442e6089f05ef54b0772d4fb629c25117 (diff)
improve fpc link
Diffstat (limited to 'xmake/toolchains')
-rw-r--r--xmake/toolchains/fpc/xmake.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/toolchains/fpc/xmake.lua b/xmake/toolchains/fpc/xmake.lua
index 5fab445af..82c7f6dc8 100644
--- a/xmake/toolchains/fpc/xmake.lua
+++ b/xmake/toolchains/fpc/xmake.lua
@@ -33,6 +33,6 @@ toolchain("fpc")
-- on load
on_load(function (toolchain)
- toolchain:set("pcshflags", "")
- toolchain:set("pcldflags", "")
+ toolchain:set("pcshflags", "-Sd")
+ toolchain:set("pcldflags", "-Sd")
end)