Skip to content

[SYCL] Address renaming tbb.dll -> tbb12.dll #3654

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 5, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sycl/tools/install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ echo ### 4. Create symbolink links to TBB files in %OCL_RT_DIR%tbb
echo ###
if "%1" == "" (
echo No TBB libraries path is specified
echo Create symbolic link or copy tbb.dll and tbbmalloc.tbb to %OCL_RT_DIR%tbb\ after installation
echo Create symbolic link or copy tbb12.dll and tbbmalloc.tbb to %OCL_RT_DIR%tbb\ after installation
) else (
IF EXIST %OCL_RT_DIR%tbb (
rmdir %OCL_RT_DIR%tbb
Expand All @@ -133,9 +133,9 @@ echo on
echo !!! Cannot create symbolic link for tbbmalloc.dll
set INSTALL_ERRORS=1
)
mklink %OCL_RT_DIR%tbb\tbb.dll %1\tbb.dll
mklink %OCL_RT_DIR%tbb\tbb12.dll %1\tbb12.dll
IF ERRORLEVEL 1 (
echo !!! Cannot create symbolic link for tbb.dll
echo !!! Cannot create symbolic link for tbb12.dll
set INSTALL_ERRORS=1
)
echo off
Expand Down