Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: xmake-io/xmake-repo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a538df323d4e108ee97e977f8c4e494ef577711f
Choose a base ref
..
head repository: xmake-io/xmake-repo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7751c2c4dae6ac491578cfe959b32e5b1911f5b6
Choose a head ref
Showing with 3 additions and 1 deletion.
  1. +3 −1 packages/f/ffts/xmake.lua
4 changes: 3 additions & 1 deletion packages/f/ffts/xmake.lua
Original file line number Diff line number Diff line change
@@ -12,7 +12,9 @@ package("ffts")

if on_check then
on_check(function (package)
assert(package:has_tool("cc", "clang", "clang-cl"), "package(ffts) unsupported clang toolchain")
if package:has_tool("cc", "clang", "clang_cl") then
raise("package(ffts) unsupported clang toolchain")
end
end)
end