Skip to content

Commit

Permalink
fix to find tinycc
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Apr 11, 2024
1 parent b698509 commit 5bbe73d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmake/toolchains/tinycc/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ toolchain("tinycc")
table.insert(paths, path.join(installdir, "bin"))
end
end
local tcc = find_tool("tcc", {paths = paths})
local tcc = find_tool("tcc", {paths = paths, force = true})
if tcc then
toolchain:config_set("tcc", tcc.program)
if os.isfile(tcc.program) then
Expand Down

0 comments on commit 5bbe73d

Please sign in to comment.