Skip to content

Commit

Permalink
Update fetching policy for TBB library
Browse files Browse the repository at this point in the history
Oneapi has changed its pathes for tbb
  • Loading branch information
Altina-oz committed May 23, 2024
1 parent 8b9e339 commit 7cc591d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/t/tbb/fetch.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function _find_package_on_windows(package, opt)
-- find includes and links
local result = {links = {}, linkdirs = {}, includedirs = {}}
for _, lib in ipairs({"tbb", "tbbmalloc", "tbbmalloc_proxy"}) do
local linkinfo = find_library(lib, paths, {suffixes = path.join("lib", rdir, "vc14")})
local linkinfo = find_library(lib, paths, {suffixes = {"lib",path.join("lib", rdir, "vc14")}})
if linkinfo then
table.insert(result.linkdirs, linkinfo.linkdir)
table.insert(result.links, lib)
Expand Down

0 comments on commit 7cc591d

Please sign in to comment.